Skip to content

uploadSnapshotOnDemand

UploadSnapshotOnDemand triggers an on-demand upload of a snapshot to a new archival location specified by the SLA Domain.

Arguments

Argument Type Description
input (required) UploadSnapshotOnDemandInput! Input containing snapshot ID, SLA ID, and priority.

Returns

UploadSnapshotOnDemandReply!

Sample

mutation UploadSnapshotOnDemand($input: UploadSnapshotOnDemandInput!) {
  uploadSnapshotOnDemand(input: $input) {
    message
    requestId
  }
}
{
  "input": {}
}
{
  "data": {
    "uploadSnapshotOnDemand": {
      "message": "example-string",
      "requestId": "example-string"
    }
  }
}