Skip to content

takeSaasOnDemandSnapshot

Takes on-demand snapshots for the provided workloads.

Arguments

Argument Type Description
input (required) TakeSaasOnDemandSnapshotInput! Input for the takeSaasOnDemandSnapshot mutation.

Returns

BatchAsyncJobStatus!

Sample

mutation TakeSaasOnDemandSnapshot($input: TakeSaasOnDemandSnapshotInput!) {
  takeSaasOnDemandSnapshot(input: $input)
}
{
  "input": {
    "saasAppType": "ATLASSIAN_CONFLUENCE",
    "workloadIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "takeSaasOnDemandSnapshot": {
      "errors": [
        {
          "error": "example-string",
          "rubrikObjectId": "example-string"
        }
      ],
      "jobIds": [
        {
          "jobId": "example-string",
          "rubrikObjectId": "example-string"
        }
      ]
    }
  }
}