Single Child Item Info
Product version: 10.11
Last modified: 31 July 2024
Returns a single child item info.
Endpoint
https://<Director_IP_address>:4443/c/router
                                            
Tenant Endpoint
For tenants of the multi-tenant product the endpoint must be:
https://<Director_IP_address>:4443/t/<tenant_UUID>/c/router
                                                    
Request Example
 curl
     curl
                                                curl --request POST \
    --url https://<Director_IP_address>:4443/c/router \
    --header "content-type: application/json" \
    --cookie @cookies.txt \
    --data '{
        "action": "InventoryManagement",
        "method": "getNodes",
        "data": [true,["VM-311"]],
        "type": "rpc",
        "tid": 1}'
Request Fields
| Field | Type | Value(s) | 
|---|---|---|
| 
 | string | 
 | 
| 
 | string | 
 | 
| 
 | array | Request parameters. See below | 
| 
 | string | 
 | 
| 
 | int | 1 | 
Data
| Field | Value | Description | 
|---|---|---|
| 
 | boolean | True if extended node info | 
| 
 | 
 | VID of the requested inventory item | 
Response Sample
 curl
     curl
                                                {
    "action": "InventoryManagement",
    "method": "getNodes",
    "tid": "1",
    "type": "rpc",
    "message": null,
    "where": null,
    "cause": null,
    "data": {
        "children": [
            {
                "powerState": "OFF",
                "hostLid": "VMWARE_VMWARE_ESX_host-58_182.20.0.16_00000000-0000-0000-0000-ac1f6b776d38",
                "hostSc": 1,
                "hostVid": "VMWARE_ESX-4",
                "hostVersion": "6.7.0",
                "lid": "VMWARE_VM_vm-1995_529dca90-18e0-5bed-d2b0-9cd9902acd7b_564d4045-9430-46d1-0013-e259b6ba8eb4",
                "isTemplate": false,
                "isWindowsPlatform": false,
                "replicationState": "UNKNOWN",
                "notSupportedReason": null,
                "warningReason": null,
                "isReplicatedFromBackupObject": false,
                "osType": "UNKNOWN",
                "ftEnabled": null,
                "ftVmVids": null,
                "extendedInfo": {
                    "hostVid": "VMWARE_ESX-4",
                    "clusterVid": null,
                    "disks": [
                        {
                            "diskIdentifier": "[HDD-Datastore] binh_centos7/binh_centos7.vmdk",
                            "allocated": 1314816,
                            "storageVid": "VMWARE_DATASTORE-14",
                            "storagePath": null,
                            "controllerType": null,
                            "canBeProcessed": true,
                            "isRoot": null,
                            "identifier": 733,
                            "vid": "VMWARE_VDISK-733",
                            "type": "VMWARE_VDISK",
                            "subType": null,
                            "name": "Hard disk 1",
                            "description": null,
                            "accessible": true,
                            "isDisabled": false,
                            "replicable": true,
                            "hvType": "VMWARE",
                            "flags": 0,
                            "children": null
                        },
                        {
                            "diskIdentifier": "[HDD-Datastore] binh_centos7/binh_centos7_1.vmdk",
                            "allocated": 0,
                            "storageVid": "VMWARE_DATASTORE-14",
                            "storagePath": null,
                            "controllerType": null,
                            "canBeProcessed": true,
                            "isRoot": null,
                            "identifier": 734,
                            "vid": "VMWARE_VDISK-734",
                            "type": "VMWARE_VDISK",
                            "subType": null,
                            "name": "Hard disk 2",
                            "description": null,
                            "accessible": true,
                            "isDisabled": false,
                            "replicable": true,
                            "hvType": "VMWARE",
                            "flags": 0,
                            "children": null
                        }
                    ],
                    "nics": [
                        {
                            "nicIdentifier": "00:0c:29:ba:8e:b4",
                            "networkVid": "VMWARE_NETWORK-41",
                            "canBeProcessed": true,
                            "identifier": 322,
                            "vid": "VMWARE_VNIC-322",
                            "type": "VMWARE_VNIC",
                            "subType": null,
                            "name": "Network adapter 1",
                            "description": null,
                            "accessible": true,
                            "isDisabled": false,
                            "replicable": true,
                            "hvType": "VMWARE",
                            "flags": 0,
                            "children": null
                        }
                    ],
                    "originalInfo": null,
                    "cpu": 1,
                    "memorySize": 512,
                    "size": 1314816,
                    "version": 13,
                    "hwUuid": "564d4045-9430-46d1-0013-e259b6ba8eb4",
                    "storageVid": "VMWARE_DATASTORE-14",
                    "virtualizationType": null,
                    "instanceType": null,
                    "vpcId": null,
                    "vpcCidrBlock": null,
                    "subnetId": null,
                    "subnetCidrBlock": null,
                    "availabilityZoneId": null,
                    "securityGroupIds": null,
                    "hasRootDisk": null
                },
                "identifier": 311,
                "vid": "VM-311",
                "type": "VM",
                "subType": "VM",
                "name": "binh_centos7",
                "description": null,
                "accessible": true,
                "isDisabled": false,
                "replicable": true,
                "hvType": "VMWARE",
                "flags": 0,
                "children": null
            }
        ],
        "totalCount": 1,
        "lastSessionTime": null
    }
}Response Fields
| Field | Value | Description | 
|---|---|---|
| 
 | string | Message if the request failed | 
| 
 | string | Reference to the method where the problem occurred | 
| 
 | string | Cause of failure | 
| 
 | array | See below | 
data.children (container level: host, cluster, folder, VM)
| Field | Value | Description | 
|---|---|---|
| 
 | string | Power state of the object | 
| 
 | string | VM specific. Host LID | 
| 
 | int | VM specific. Host socket count. Applicable to Microsoft Hyper-V | 
| 
 | string | VM specific. Host VID | 
| 
 | string | VM specific. Host version | 
| 
 | string | Item identifier for licensing purposes | 
| 
 | boolean | VM specific. true if the VM is a template | 
| 
 | boolean | VM specific. true if VM is on Windows platform | 
| 
 | string | VM specific. Replication state | 
| 
 | string | VM specific. Reason for not being supported | 
| 
 | string | VM specific. Warning reason | 
| 
 | boolean | VM specific. true if VM is replicated from a backup object | 
| 
 | string | WINDOWS, LINUX, UNKNOWN | 
| 
 | boolean | True if FaultTolerance is enabled | 
| 
 | string | Fault tolerance VM VIDs | 
| 
 |  | Extended info (if present) | 
| 
 | 
 | Object ID | 
| 
 | string | Object VID | 
| 
 | string | Object type | 
| 
 | string | Object subtype | 
| 
 | string | Display name | 
| 
 | string | Object description | 
| 
 | boolean | True if the object is accessible | 
| 
 | boolean | True if the object is disabled | 
| 
 | boolean | True if the object can be replicated | 
| 
 | string | Platform type | 
| 
 | int | For VMware ESXi hosts: 
 | 
data.children.Extend Info
| Field | Value | Description | 
|---|---|---|
| 
 | string | VM specific. Host VID | 
| 
 | string | Cluster VID | 
| 
 | array | See below | 
| 
 | array | See below | 
| 
 | string | VM original info | 
| 
 | int | VM specific. Number of CPU | 
| 
 | 
 | VM specific. Memory size | 
| 
 | 
 | VM specific. VM size | 
| 
 | 
 | Platform version | 
| 
 | string | HW UUID | 
| 
 | string | Storage VID | 
| 
 | string | AWS-specific: virtualization type | 
| 
 | string | AWS-specific: instance type | 
| 
 | string | AWS-specific: VPC ID | 
| 
 | string | AWS-specific: VPC CIDR Block | 
| 
 | string | AWS-specific: availability zone ID | 
| 
 | string | AWS-specific:security group ID | 
| 
 | boolean | AWS-specific: backup count which savepoints have a Root volume | 
children.ExtendInfo.Disk
| Field | Value | Description | 
|---|---|---|
| 
 | string | Disk identity name | 
| 
 | 
 | Size of backup repository file(s) on the filesystem | 
| 
 | string | Storage VID | 
| 
 | string | Storage path | 
| 
 | string | Disk controller type | 
| 
 | boolean | True if disk can be processed | 
| 
 | boolean | AWS-specific: true if it is root | 
| 
 | 
 | Disk identity number | 
| 
 | string | Disk VID | 
| 
 | string | Disk type | 
| 
 | string | Disk subtype | 
| 
 | string | Disk name | 
| 
 | string | Disk description | 
| 
 | boolean | True if Disk is accessible | 
| 
 | boolean | True if Disk is disabled | 
| 
 | boolean | True if the Disk can be replicated | 
| 
 | String | Hypervisor type | 
| 
 | int | For VMware ESXi hosts: 
 | 
| 
 |  | Partitions into disks (If present) | 
children.ExtendInfo.nics
| Field | Value | Description | 
|---|---|---|
| 
 | string | NIC mac address | 
| 
 | string | Network VID | 
| 
 | boolean | True if NIC is not SKIP | 
| 
 | 
 | Network identity | 
| 
 | string | NIC type | 
| 
 | string | NIC subtype | 
| 
 | string | NIC name | 
| 
 | string | NIC description | 
| 
 | boolean | True if NIC is accessible | 
| 
 | boolean | True if NIC is disabled | 
| 
 | boolean | True if the NIC can be replicated | 
| 
 | string | Platform type | 
| 
 | int | For VMware ESXi hosts: 
 |