Skip to content

downloadFilesNutanixSnapshot

v5.0-v8.0: Download files from a Nutanix VM backup v8.1+: Download files from a Nutanix virtual machine backup Supported in v5.0+ v5.0-v8.0: Start an asynchronous job to download multiple files and folders from a specified Nutanix VM backup. The response returns an asynchronous request ID. Get the URL for downloading the zip file including the specific files/folders by sending a GET request to 'nutanix/vm/request/{id}'. v8.1+: Start an asynchronous job to download multiple files and folders from a specified Nutanix virtual machine backup. The response returns an asynchronous request ID. Get the URL for downloading the zip file including the specific files/folders by sending a GET request to 'nutanix/vm/request/{id}'.

Arguments

Argument Type Description
input (required) DownloadFilesNutanixSnapshotInput! Input for InternalCreateNutanixDownloadFilesJob.

Returns

AsyncRequestStatus!

Sample

mutation DownloadFilesNutanixSnapshot($input: DownloadFilesNutanixSnapshotInput!) {
  downloadFilesNutanixSnapshot(input: $input) {
    endTime
    id
    nodeId
    progress
    result
    startTime
    status
  }
}
{
  "input": {
    "config": {
      "paths": [
        "example-string"
      ]
    },
    "id": "example-string"
  }
}
{
  "data": {
    "downloadFilesNutanixSnapshot": {
      "endTime": "2024-01-01T00:00:00.000Z",
      "id": "example-string",
      "nodeId": "example-string",
      "progress": 0.0,
      "result": "example-string",
      "startTime": "2024-01-01T00:00:00.000Z",
      "error": {
        "message": "example-string"
      },
      "links": [
        {
          "href": "example-string",
          "rel": "example-string"
        }
      ]
    }
  }
}