managedDeviceList element

Type: managedDeviceList
Namespace: (default namespace)

List of device summary.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <managedDeviceList uri="..." total="..."> <device uri="..."> <instanceId>...</instanceId> <name>...</name> <resourceType>...</resourceType> <instanceId>...</instanceId> <hostname>...</hostname> <platform>...</platform> <ipaddr>...</ipaddr> <serial>...</serial> <osVersion>...</osVersion> <family>...</family> <type>...</type> <connStatus>...</connStatus> <configState>...</configState> </device> <device uri="..."> <!--...--> </device> <!--...more "device" elements...--> </managedDeviceList>

Example JSON

{ "uri" : "...", "total" : ..., "device" : [ { "uri" : "...", "instanceId" : "...", "hostname" : "...", "platform" : "...", "ipaddr" : "...", "serial" : "...", "osVersion" : "...", "family" : "JUNOS_EX", "type" : "XRE", "connStatus" : "UP", "configState" : "IN_SYNC", "name" : "...", "resourceType" : "..." }, ... ] }