Skip to content

vsphereVmListEsxiDatastores

List ESXi datastores Supported in v5.0+ Retrieve a list of the datastores for a specified ESXi host.

Arguments

Argument Type Description
input (required) VsphereVmListEsxiDatastoresInput! Input for InternalGetEsxiDatastores.

Returns

VsphereVmListEsxiDatastoresReply!

Sample

mutation VsphereVmListEsxiDatastores($input: VsphereVmListEsxiDatastoresInput!) {
  vsphereVmListEsxiDatastores(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "loginInfo": {
      "ip": "example-string",
      "password": "example-string",
      "username": "example-string"
    }
  }
}
{
  "data": {
    "vsphereVmListEsxiDatastores": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "name": "example-string"
        }
      ]
    }
  }
}