Skip to content

startDisableAzureNativeSubscriptionProtectionJob

Start a job to disable protection for a specified Azure subscription.

Arguments

Argument Type Description
input (required) StartDisableAzureNativeSubscriptionProtectionJobInput! Input for the job to start disabling protection from the Azure Native Subscription.

Returns

AsyncJobStatus!

Sample

mutation StartDisableAzureNativeSubscriptionProtectionJob($input: StartDisableAzureNativeSubscriptionProtectionJobInput!) {
  startDisableAzureNativeSubscriptionProtectionJob(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "azureNativeProtectionFeature": "AZ_CLOUD_DISCOVERY",
    "azureSubscriptionRubrikId": "00000000-0000-0000-0000-000000000000",
    "shouldDeleteNativeSnapshots": true
  }
}
{
  "data": {
    "startDisableAzureNativeSubscriptionProtectionJob": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}