Lockbox API, REST: Secret.listVersions
Retrieves the list of versions of the specified secret.
HTTP request
GET https://lockbox.api.cloud.yandex.net/lockbox/v1/secrets/{secretId}/versions
Path parameters
Parameter | Description |
---|---|
secretId | Required. ID of the secret to list versions for. The maximum string length in characters is 50. |
Query parameters
Parameter | Description |
---|---|
pageSize | The maximum number of results per page to return. If the number of available results is larger than The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"versions": [
{
"id": "string",
"secretId": "string",
"createdAt": "string",
"destroyAt": "string",
"description": "string",
"status": "string",
"payloadEntryKeys": [
"string"
],
"passwordPayloadSpecification": {
"passwordKey": "string",
"length": "string",
"includeUppercase": true,
"includeLowercase": true,
"includeDigits": true,
"includePunctuation": true,
"includedPunctuation": "string",
"excludedPunctuation": "string"
}
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
versions[] | object Current (i.e. the latest ) version of the secret. |
versions[]. id |
string ID of the version. |
versions[]. secretId |
string ID of the secret that the version belongs to. |
versions[]. createdAt |
string (date-time) Time when the version was created. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
versions[]. destroyAt |
string (date-time) Time when the version is going to be destroyed. Empty unless the status is String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
versions[]. description |
string Description of the version. |
versions[]. status |
string Status of the secret.
|
versions[]. payloadEntryKeys[] |
string Keys of the entries contained in the version payload. |
versions[]. passwordPayloadSpecification |
object |
versions[]. passwordPayloadSpecification. passwordKey |
string Required. key of the entry to store generated password value The maximum string length in characters is 256. Value must match the regular expression |
versions[]. passwordPayloadSpecification. length |
string (int64) password length; by default, a reasonable length will be decided The maximum value is 256. |
versions[]. passwordPayloadSpecification. includeUppercase |
boolean (boolean) whether at least one A..Z character is included in the password, true by default |
versions[]. passwordPayloadSpecification. includeLowercase |
boolean (boolean) whether at least one a..z character is included in the password, true by default |
versions[]. passwordPayloadSpecification. includeDigits |
boolean (boolean) whether at least one 0..9 character is included in the password, true by default |
versions[]. passwordPayloadSpecification. includePunctuation |
boolean (boolean) whether at least one punctuation character is included in the password, true by default punctuation characters by default (there are 32): !"#$%&'()*+,-./:;<=>?@[]^_`{|}~ to customize the punctuation characters, see included_punctuation and excluded_punctuation below |
versions[]. passwordPayloadSpecification. includedPunctuation |
string If include_punctuation is true, one of these two fields (not both) may be used optionally to customize the punctuation: a string of specific punctuation characters to use (at most, all the 32) The maximum string length in characters is 32. |
versions[]. passwordPayloadSpecification. excludedPunctuation |
string a string of punctuation characters to exclude from the default (at most 31, it's not allowed to exclude all the 32) The maximum string length in characters is 31. |
nextPageToken | string This token allows you to get the next page of results for list requests. If the number of results is greater than the specified pageSize, use the |