Skip to content

vCenterHotAddProxyVmsV2

Retrieve HotAdd proxy virtual machines.

Arguments

Argument Type Description
first Int Returns the first n elements from the list.
after String Returns the elements in the list that occur after the specified cursor.
filter [VcenterProxyVmsFilterInput!] Filter for vCenter hotadd proxy virtual machine.
clusterUuids (required) [UUID!]! List of cluster IDs.

Returns

VsphereProxyVmInfoConnection!

Sample

query VCenterHotAddProxyVmsV2($clusterUuids: [UUID!]!) {
  vCenterHotAddProxyVmsV2(
    clusterUuids: $clusterUuids
    first: 10
  ) {
    nodes {
      clusterUuid
      computeClusterName
      id
      name
      status
      usedPortCount
      vcenterName
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{
  "clusterUuids": [
    "00000000-0000-0000-0000-000000000000"
  ]
}
{
  "data": {
    "vCenterHotAddProxyVmsV2": {
      "nodes": [
        [
          {
            "clusterUuid": "00000000-0000-0000-0000-000000000000",
            "computeClusterName": "example-string",
            "id": "example-string",
            "name": "example-string",
            "status": "EXPIRED",
            "usedPortCount": 0
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}