Summary
Get all NEDs in NSO
Description
Get all NEDs (Network Element Driver) in NSO (Network Services Orchestrator).
Route
No Northbound API Available
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
NEDs |
array |
All NEDs (Network Element Driver) in NSO (Network Services Orchestrator). |
Copied to Clipboard
[
{
"ned_id": "cisco-ios",
"name": "wigegdxxbhy-fu",
"version": "4.3.3"
},
{
"ned_id": "cisco-ios",
"name": "wntwkbz-eorkgpscfk",
"version": "7.3.6"
},
{
"ned_id": "cisco-iosxr",
"name": "q-mx",
"version": "2.4.2"
}
]
Copied to Clipboard
{
"type": "array",
"items": {
"type": "object",
"properties": {
"ned_id": {
"type": "string",
"pattern": "[a-z]+",
"enum": [
"cisco-ios",
"cisco-iosxr",
"junos"
]
},
"name": {
"type": "string",
"pattern": "[a-z]+\\-[a-z]+"
},
"version": {
"type": "string",
"pattern": "(\\d\\.)(\\d\\.)(\\d)"
}
},
"required": [
"ned_id",
"name",
"version"
]
}
}