Skip to content

deleteTerminatedClusterOperationJobData

Delete the metadata of a Rubrik cluster operation job that is in a terminal state.

Arguments

Argument Type Description
input (required) DeleteTerminatedClusterOperationJobDataInput! Input for deleting the metadata of a failed Rubrik cluster operation job.

Returns

DeleteTerminatedClusterOperationJobDataReply!

Sample

mutation DeleteTerminatedClusterOperationJobData($input: DeleteTerminatedClusterOperationJobDataInput!) {
  deleteTerminatedClusterOperationJobData(input: $input) {
    jobProgress
    jobStatus
    jobType
    message
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "jobType": "ADD_NODE"
  }
}
{
  "data": {
    "deleteTerminatedClusterOperationJobData": {
      "jobProgress": 0,
      "jobStatus": "JOB_ACQUIRING",
      "jobType": "ADD_NODE",
      "message": "example-string"
    }
  }
}