Skip to content

cloudNativeDownloadFiles

Download files from a cloud-native snapshot to a cloud download location or a virtual machine.

Arguments

Argument Type Description
input (required) CloudNativeDownloadFilesInput! Input required to download indexed cloud-native snapshot files.

Returns

DownloadFilesReply!

Sample

mutation CloudNativeDownloadFiles($input: CloudNativeDownloadFilesInput!) {
  cloudNativeDownloadFiles(input: $input) {
    taskchainId
  }
}
{
  "input": {
    "downloadType": "DOWNLOAD_TO_CLOUD",
    "filePaths": [
      "example-string"
    ],
    "fileRecoveryLocationDetails": {},
    "snapshotId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "cloudNativeDownloadFiles": {
      "taskchainId": "example-string"
    }
  }
}