You can use the ListPendingNodes method to list the pending storage nodes in the system. Pending nodes are storage nodes that are running and configured to join the storage cluster but have not yet been added using the AddNodes API method.
Note that ListPendingNodes does not list pending nodes that have different address types for the management IP address (MIP) and management virtual IP address (MVIP). For example, if a pending node has an IPv6 MVIP and an IPv4 MIP, ListPendingNodes will not include the node as part of the result.
This method has no input parameters.
This method has the following return value:
Name | Description | Type |
---|---|---|
pendingNodes | List of pending nodes in the cluster. | pendingNode array |
Requests for this method are similar to the following example:
{ "method": "ListPendingNodes", "params": {}, "id" : 1 }
This method returns a response similar to the following example:
{ "id": 3, "result": { "pendingNodes": [ { "assignedNodeID": 0, "cip": "10.26.65.101", "cipi": "Bond10G", "compatible": true, "mip": "172.26.65.101", "mipi": "Bond1G", "name": "VWC-EN101", "pendingNodeID": 1, "platformInfo": { "chassisType": "R620", "cpuModel": "Intel(R) Xeon(R) CPU E5-2640 0 @ 2.50GHz", "nodeMemoryGB": 72, "nodeType": "SF3010" }, "sip": "10.26.65.101", "sipi": "Bond10G", "softwareVersion": "9.0.0.1554", "uuid": "4C4C4544-0048-4410-8056-C7C04F395931" } ] } }