Skip to content

exportManagedVolumeSnapshot

Create a request to export a snapshot Supported in v5.0+ Export a managed volume snapshot as a share.

Arguments

Argument Type Description
input (required) ExportManagedVolumeSnapshotInput! Input for the mutation to export a Managed Volume snapshot.

Returns

AsyncRequestStatus!

Sample

mutation ExportManagedVolumeSnapshot($input: ExportManagedVolumeSnapshotInput!) {
  exportManagedVolumeSnapshot(input: $input) {
    endTime
    id
    nodeId
    progress
    result
    startTime
    status
  }
}
{
  "input": {
    "id": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "exportManagedVolumeSnapshot": {
      "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"
        }
      ]
    }
  }
}