Skip to content

vSphereDatastoreConnection

No description available.

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

VsphereDatastoreConnection!

Sample

query {
  vSphereDatastoreConnection(first: 10) {
    nodes {
      authorizedOperations
      backingDeviceName
      capacity
      cdmPendingObjectPauseAssignment
      datastoreType
      freeSpace
      id
      isArchived
      isLocal
      isStandaloneDatastore
      name
      numWorkloadDescendants
      objectType
      replicatedObjectCount
      slaAssignment
      slaPauseStatus
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "vSphereDatastoreConnection": {
      "nodes": [
        [
          {
            "authorizedOperations": [
              "ACCESS_CDM_CLUSTER"
            ],
            "backingDeviceName": "example-string",
            "capacity": 0,
            "cdmPendingObjectPauseAssignment": "NO_PENDING_PAUSE_ASSIGNMENT",
            "datastoreType": "example-string",
            "freeSpace": 0
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}