Skip to content

beginManagedVolumeSnapshot

Begin Managed Volume snapshot Supported in v7.0+ Opens the Managed Volume for writes. All data written to the Managed Volume until the next end-snapshot call will be part of this snapshot.

Arguments

Argument Type Description
input (required) BeginManagedVolumeSnapshotInput! Input for V1OpenWritesV1.

Returns

BeginManagedVolumeSnapshotReply!

Sample

mutation BeginManagedVolumeSnapshot($input: BeginManagedVolumeSnapshotInput!) {
  beginManagedVolumeSnapshot(input: $input) {
    ownerId
    rscSnapshotId
    snapshotId
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "beginManagedVolumeSnapshot": {
      "ownerId": "example-string",
      "rscSnapshotId": "example-string",
      "snapshotId": "example-string",
      "asyncRequestStatus": {
        "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"
      }
    }
  }
}