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": "junos",
"name": "bfefdido-t",
"version": "1.0.3"
},
{
"ned_id": "cisco-ios",
"name": "yna-aekg",
"version": "9.7.7"
},
{
"ned_id": "cisco-iosxr",
"name": "cdss-jo",
"version": "7.3.9"
},
{
"ned_id": "cisco-ios",
"name": "pxrr-mioekhahvld",
"version": "2.9.6"
},
{
"ned_id": "junos",
"name": "b-zcfw",
"version": "0.4.7"
}
]
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"
]
}
}