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": "lrqahgipv-fzjl",
    "version": "7.8.5"
  },
  {
    "ned_id": "junos",
    "name": "rbniibyhhm-iiq",
    "version": "5.7.0"
  }
]
           
          
            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"
    ]
  }
}