Skip to content

startRecoverAzureNativeStorageAccountJob

Start a job to recover storage account or blobs from a storage account snapshot.

Arguments

Argument Type Description
input (required) StartRecoverAzureNativeStorageAccountJobInput! Input for the job to recover storage account or blobs from storage account snapshot.

Returns

AsyncJobStatus!

Sample

mutation StartRecoverAzureNativeStorageAccountJob($input: StartRecoverAzureNativeStorageAccountJobInput!) {
  startRecoverAzureNativeStorageAccountJob(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "shouldExportTags": true,
    "snapshotId": "00000000-0000-0000-0000-000000000000",
    "tier": "ARCHIVE"
  }
}
{
  "data": {
    "startRecoverAzureNativeStorageAccountJob": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}