Skip to content

queryPureStorageProtectionGroupSnapshot

Get list of snapshots of a Pure Storage protection group Supported in v9.6+ Retrieve summary information for the snapshots of a Pure Storage protection group.

Arguments

Argument Type Description
input (required) QueryPureStorageProtectionGroupSnapshotInput! Input for QueryPureStorageProtectionGroupSnapshot.

Returns

PureStorageProtectionGroupSnapshotSummaryListResponse!

Sample

query QueryPureStorageProtectionGroupSnapshot($input: QueryPureStorageProtectionGroupSnapshotInput!) {
  queryPureStorageProtectionGroupSnapshot(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "queryPureStorageProtectionGroupSnapshot": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "metadata": "example-string",
          "name": "example-string"
        }
      ]
    }
  }
}