Experimental
Schema
ListSnapshotsResponse
Type:
object
ListSnapshotsResponse returns snapshot results and a next-page token.
nextPageToken
Type:
string
next_page_token is empty when there are no more pages.
All schema constraints and annotations
{
"description": "next_page_token is empty when there are no more pages.",
"type": "string"
}snapshots
Type:
array
snapshots is the current page.
Array item
Schema:
SnapshotSummary
All schema constraints and annotations
{
"description": "snapshots is the current page.",
"items": {
"$ref": "#/components/schemas/SnapshotSummary"
},
"type": "array"
}All schema constraints and annotations
{
"description": "ListSnapshotsResponse returns snapshot results and a next-page token.",
"properties": {
"nextPageToken": {
"description": "next_page_token is empty when there are no more pages.",
"type": "string"
},
"snapshots": {
"description": "snapshots is the current page.",
"items": {
"$ref": "#/components/schemas/SnapshotSummary"
},
"type": "array"
}
},
"title": "ListSnapshotsResponse",
"type": "object"
}