Skip to content

vsphereBulkOnDemandSnapshot

Trigger a bulk on demand snapshot.

Arguments

Argument Type Description
input (required) VsphereBulkOnDemandSnapshotInput! Input for V1BulkCreateOnDemandBackup.

Returns

BatchAsyncRequestStatus!

Sample

mutation VsphereBulkOnDemandSnapshot($input: VsphereBulkOnDemandSnapshotInput!) {
  vsphereBulkOnDemandSnapshot(input: $input)
}
{
  "input": {
    "config": {
      "vms": [
        "example-string"
      ]
    }
  }
}
{
  "data": {
    "vsphereBulkOnDemandSnapshot": {
      "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"
        }
      ]
    }
  }
}