Skip to content

clusterNetworkInterfaces

Get network interfaces for a Rubrik Cluster cluster Supported in v5.0+ Retrieves network interfaces(including VLANs) on bond0/bond1.

Arguments

Argument Type Description
input (required) GetNetworkInterfaceInput! Input for InternalGetNetworkInterface.

Returns

NetworkInterfaceListResponse!

Sample

query ClusterNetworkInterfaces($input: GetNetworkInterfaceInput!) {
  clusterNetworkInterfaces(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "clusterNetworkInterfaces": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "interfaceName": "example-string",
          "interfaceType": "NETWORK_INTERFACE_TYPE_DATA",
          "ipAddresses": [
            "example-string"
          ],
          "netmask": "example-string",
          "node": "example-string",
          "nodeId": "example-string"
        }
      ]
    }
  }
}