Skip to content

ncdVmImageUrl

NAS Cloud Direct virtual machine image download URL.

Arguments

Argument Type Description
input (required) VmImageUrlInput! Input for getting NAS Cloud Direct virtual machine image download URL.

Returns

NcdVmImageUrl!

Sample

query NcdVmImageUrl($input: VmImageUrlInput!) {
  ncdVmImageUrl(input: $input) {
    downloadUrl
    sha256
    size
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "hypervisorType": "HYPERV_HYPERVISOR_TYPE"
  }
}
{
  "data": {
    "ncdVmImageUrl": {
      "downloadUrl": "example-string",
      "sha256": "example-string",
      "size": 0
    }
  }
}