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": "yfdgb-dsfvtjtcax",
"version": "5.9.9"
},
{
"ned_id": "junos",
"name": "k-hwtbpzh",
"version": "5.5.2"
},
{
"ned_id": "cisco-ios",
"name": "ykymx-ryf",
"version": "8.5.9"
},
{
"ned_id": "cisco-ios",
"name": "uwrmex-zsrzbyuued",
"version": "0.3.4"
}
]
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"
]
}
}