Skip to content

startCloudNativeSnapshotsIndexJob

Create index of cloudnative snapshots

Arguments

Argument Type Description
input (required) StartCloudNativeSnapshotsIndexJobInput! Input for create snapshots index job.

Returns

BatchAsyncJobStatus!

Sample

mutation StartCloudNativeSnapshotsIndexJob($input: StartCloudNativeSnapshotsIndexJobInput!) {
  startCloudNativeSnapshotsIndexJob(input: $input)
}
{
  "input": {
    "snapshotIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "startCloudNativeSnapshotsIndexJob": {
      "errors": [
        {
          "error": "example-string",
          "rubrikObjectId": "example-string"
        }
      ],
      "jobIds": [
        {
          "jobId": "example-string",
          "rubrikObjectId": "example-string"
        }
      ]
    }
  }
}