You can use the ListPendingActiveNodes method to list nodes in the cluster that are in the PendingActive state, between pending and active states. Nodes in this state are being returned to the factory image.
This method has no input parameters.
This method has the following return value:
Name | Description | Type |
---|---|---|
pendingActiveNodes | List of objects detailing information about all PendingActive nodes in the system. | pendingActiveNode array |
Requests for this method are similar to the following example:
{ "method": "ListPendingActiveNodes", "params": {}, "id" : 1 }
This method returns a response similar to the following example:
{ id: null, result: { pendingActiveNodes: [ { activeNodeKey: "5rPHP3lTAO", assignedNodeID: 5, asyncHandle: 2, cip: "10.10.5.106", mip: "192.168.133.106", pendingNodeID: 1, platformInfo: { chassisType: "R620", cpuModel: "Intel(R) Xeon(R) CPU E5-2640 0 @ 2.50GHz", nodeMemoryGB: 72, nodeType: "SF3010" }, sip: "10.10.5.106", softwareVersion: "9.0.0.1077" } ] } }