nutanixVms
Paginated list of Nutanix 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. |
| sortBy | HierarchySortByField | Sort hierarchy objects according to the hierarchy field. |
| sortOrder | SortOrder | Sorts the order of results. |
| filter | [Filter!] | Hierarchy object filter. |
Returns
Sample
query {
nutanixVms(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": {
"nutanixVms": {
"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"
}
}
}
}