Skip to content

updatePureStorageProtectionGroup

Update a Pure Storage protection group Supported in v9.6+ Update the snapshot consistency mandate of a Pure Storage protection group.

Arguments

Argument Type Description
input (required) UpdatePureStorageProtectionGroupInput! Input for UpdatePureStorageProtectionGroup.

Returns

UpdatePureStorageProtectionGroupReply!

Sample

mutation UpdatePureStorageProtectionGroup($input: UpdatePureStorageProtectionGroupInput!) {
  updatePureStorageProtectionGroup(input: $input)
}
{
  "input": {
    "id": "example-string",
    "updateProperties": {}
  }
}
{
  "data": {
    "updatePureStorageProtectionGroup": {
      "output": {
        "id": "example-string",
        "name": "example-string",
        "primaryClusterId": "example-string",
        "snapshotConsistencyMandate": "PURE_STORAGE_PROTECTION_GROUP_SUMMARY_SNAPSHOT_CONSISTENCY_MANDATE_APP_CONSISTENT"
      }
    }
  }
}