Experimental
Schema
ListSecretsResponse
Type:
object
ListSecretsResponse returns secrets 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"
}secrets
Type:
array
secrets is the current page.
Array item
Schema:
Secret
All schema constraints and annotations
{
"description": "secrets is the current page.",
"items": {
"$ref": "#/components/schemas/Secret"
},
"type": "array"
}All schema constraints and annotations
{
"description": "ListSecretsResponse returns secrets and a next-page token.",
"properties": {
"nextPageToken": {
"description": "next_page_token is empty when there are no more pages.",
"type": "string"
},
"secrets": {
"description": "secrets is the current page.",
"items": {
"$ref": "#/components/schemas/Secret"
},
"type": "array"
}
},
"title": "ListSecretsResponse",
"type": "object"
}