Skip to content

bulkCreateFusionComputeVmBackup

Initiate on-demand backups for multiple FusionCompute virtual machines in a single request. Fans out to the per-virtual-machine CDM REST endpoint server-side and returns one AsyncRequestStatus per input ID, in the same order. A per-virtual-machine failure (translation, RBAC inside CDM, cluster-unreachable, or per-virtual-machine timeout) appears as an entry with error populated; the request itself does not return an RPC error for per-virtual-machine failures.

Arguments

Argument Type Description
input (required) BulkCreateFusionComputeVmBackupInput! Input for bulkCreateFusionComputeVmBackup.

Returns

BatchAsyncRequestStatus!

Sample

mutation BulkCreateFusionComputeVmBackup($input: BulkCreateFusionComputeVmBackupInput!) {
  bulkCreateFusionComputeVmBackup(input: $input)
}
{
  "input": {
    "ids": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "bulkCreateFusionComputeVmBackup": {
      "responses": [
        {
          "endTime": "2024-01-01T00:00:00.000Z",
          "id": "example-string",
          "nodeId": "example-string",
          "progress": 0.0,
          "result": "example-string",
          "startTime": "2024-01-01T00:00:00.000Z"
        }
      ]
    }
  }
}