Skip to content

nutanixClusterNetworks

Get list of networks on this cluster Supported in v8.1+ Retrieves the list of networks by querying the Nutanix cluster. The list of networks is used for restore purposes.

Arguments

Argument Type Description
input (required) GetNutanixNetworksInput! Input for V1GetNutanixNetworks.

Returns

NutanixNetworkListResponse!

Sample

query NutanixClusterNetworks($input: GetNutanixNetworksInput!) {
  nutanixClusterNetworks(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "nutanixClusterNetworks": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "name": "example-string",
          "naturalId": "example-string"
        }
      ]
    }
  }
}