Skip to content

vDiskMountableNutanixVms

A paginated list of Nutanix virtual machines with the vDisk Mount privilege.

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.
sortBy HierarchySortByField Sort hierarchy objects according to the hierarchy field.
sortOrder SortOrder Sorts the order of results.
filter [Filter!] Hierarchy object filter.

Returns

NutanixVmConnection!

Sample

query {
  vDiskMountableNutanixVms(first: 10) {
    nodes {
      authorizedOperations
      blueprintId
      blueprintName
      cdmId
      cdmLink
      cdmPendingObjectPauseAssignment
      currentHostId
      excludedDisks
      hypervisorType
      id
      isAgentRegistered
      isBlueprintChild
      isRelic
      name
      numWorkloadDescendants
      nutanixSnapshotConsistencyMandate
      nutanixVmMountCount
      objectType
      onDemandSnapshotCount
      osType
      replicatedObjectCount
      slaAssignment
      slaPauseStatus
      snapshotConsistencyMandate
      vmUuid
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "vDiskMountableNutanixVms": {
      "nodes": [
        [
          {
            "authorizedOperations": [
              "ACCESS_CDM_CLUSTER"
            ],
            "blueprintId": "example-string",
            "blueprintName": "example-string",
            "cdmId": "example-string",
            "cdmLink": "example-string",
            "cdmPendingObjectPauseAssignment": "NO_PENDING_PAUSE_ASSIGNMENT"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}