Skip to content

updateVolumeGroup

Update Volume Group properties Supported in v5.3+ Patch Volume Group with specified properties.

Arguments

Argument Type Description
input (required) UpdateVolumeGroupInput! Input for V1PatchVolumeGroup.

Returns

UpdateVolumeGroupReply!

Sample

mutation UpdateVolumeGroup($input: UpdateVolumeGroupInput!) {
  updateVolumeGroup(input: $input) {
    configuredSlaDomainId
    isPaused
  }
}
{
  "input": {
    "id": "example-string",
    "patchProperties": {}
  }
}
{
  "data": {
    "updateVolumeGroup": {
      "configuredSlaDomainId": "example-string",
      "isPaused": true,
      "blackoutWindowResponseInfo": {},
      "excludedVolumes": [
        {
          "isCurrentlyPresentOnSystem": true,
          "naturalId": "example-string",
          "volumeGroupId": "example-string"
        }
      ]
    }
  }
}