Skip to content

startDisableAzureCloudAccountJob

Start on-demand jobs to disable the feature for the given Azure Cloud Accounts. When completed, the status of cloud account feature will change to Disabled and the feature will become eligible to be deleted.

Arguments

Argument Type Description
input (required) StartDisableAzureCloudAccountJobInput! Input for starting jobs to disable a cloud account feature for a list of Azure Cloud Accounts.

Returns

BatchAsyncJobStatus!

Sample

mutation StartDisableAzureCloudAccountJob($input: StartDisableAzureCloudAccountJobInput!) {
  startDisableAzureCloudAccountJob(input: $input)
}
{
  "input": {
    "cloudAccountIds": [
      "00000000-0000-0000-0000-000000000000"
    ],
    "feature": "ALL"
  }
}
{
  "data": {
    "startDisableAzureCloudAccountJob": {
      "errors": [
        {
          "error": "example-string",
          "rubrikObjectId": "example-string"
        }
      ],
      "jobIds": [
        {
          "jobId": "example-string",
          "rubrikObjectId": "example-string"
        }
      ]
    }
  }
}