You can use the ListAllNodes method to list active and pending nodes in the cluster.
This method has no input parameters.
This method has the following return values:
Name | Description | Type |
---|---|---|
nodes | List of objects describing active nodes in the cluster. | node |
pendingActiveNodes | List of objects describing pending active nodes for the cluster. | pendingActiveNode array |
pendingNodes | List of objects describing pending nodes for the cluster. | pendingNode array |
Requests for this method are similar to the following example:
{ "method": "ListAllNodes", "params": {}, "id" : 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": { "nodes": [ { "associatedFServiceID": 0, "associatedMasterServiceID": 1, "attributes": {}, "chassisName": "CT5TV12", "cip": "10.1.1.1", "cipi": "Bond10G", "fibreChannelTargetPortGroup": null, "mip": "10.1.1.1", "mipi": "Bond1G", "name": "NLABP0704", "nodeID": 1, "nodeSlot": "", "platformInfo": { "chassisType": "R620", "cpuModel": "Intel", "nodeMemoryGB": 72, "nodeType": "SF3010", "platformConfigVersion": "0.0.0.0" }, "sip": "10.1.1.1", "sipi": "Bond10G", "softwareVersion": "11.0", "uuid": "4C4C4544-0054", "virtualNetworks": [] } ], "pendingActiveNodes": [], "pendingNodes": [] } }