Skip to content

hypervScvmms

Paginated list of HyperV SCVMMs.

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

HyperVSCVMMConnection!

Sample

query {
  hypervScvmms(first: 10) {
    nodes {
      authorizedOperations
      cdmPendingObjectPauseAssignment
      connectionStatus
      hostName
      id
      name
      numWorkloadDescendants
      objectType
      replicatedObjectCount
      runAsAccount
      shouldDeployAgent
      slaAssignment
      slaPauseStatus
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "hypervScvmms": {
      "nodes": [
        [
          {
            "authorizedOperations": [
              "ACCESS_CDM_CLUSTER"
            ],
            "cdmPendingObjectPauseAssignment": "NO_PENDING_PAUSE_ASSIGNMENT",
            "connectionStatus": "CONNECTED",
            "hostName": "example-string",
            "id": "00000000-0000-0000-0000-000000000000",
            "name": "example-string"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}