Skip to content

k8sProtectionSetSnapshots

Get a list of snapshots of a Kubernetes protection set workload Supported in v9.1+ Retrieves summary information for each of the snapshots of a specified Kubernetes protection set workload.

Arguments

Argument Type Description
input (required) QueryK8sSnapshotInput! Input for V1QueryK8sSnapshot.

Returns

K8sSnapshotSummaryListResponse!

Sample

query K8sProtectionSetSnapshots($input: QueryK8sSnapshotInput!) {
  k8sProtectionSetSnapshots(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "k8sProtectionSetSnapshots": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "k8SProtectionSetName": "example-string",
          "k8SResourceSetName": "example-string",
          "k8SSnapshotMetadata": "example-string"
        }
      ]
    }
  }
}