Skip to content

startRefreshAzureNativeSubscriptionsJob

Start a job to refresh Azure Native subscription for the given subscription IDs. When started, this job will update the Rubrik platform with any changes that have been done on Azure for the respective subscription.

Arguments

Argument Type Description
input (required) StartRefreshAzureNativeSubscriptionsJobInput! Input for the job to refresh Azure Native subscriptions.

Returns

BatchAsyncJobStatus!

Sample

mutation StartRefreshAzureNativeSubscriptionsJob($input: StartRefreshAzureNativeSubscriptionsJobInput!) {
  startRefreshAzureNativeSubscriptionsJob(input: $input)
}
{
  "input": {
    "azureSubscriptionRubrikIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "startRefreshAzureNativeSubscriptionsJob": {
      "errors": [
        {
          "error": "example-string",
          "rubrikObjectId": "example-string"
        }
      ],
      "jobIds": [
        {
          "jobId": "example-string",
          "rubrikObjectId": "example-string"
        }
      ]
    }
  }
}