Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 40 additions & 8 deletions packages/clients/src/api/secret/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,11 @@ export type GetSecretVersionRequest = {
secretId: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
}
Expand All @@ -449,7 +453,11 @@ export type GetSecretVersionByNameRequest = {
secretName: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
/**
Expand All @@ -469,7 +477,11 @@ export type UpdateSecretVersionRequest = {
secretId: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
/** Description of the version. */
Expand Down Expand Up @@ -519,7 +531,11 @@ export type EnableSecretVersionRequest = {
secretId: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
}
Expand All @@ -534,7 +550,11 @@ export type DisableSecretVersionRequest = {
secretId: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
}
Expand All @@ -549,7 +569,11 @@ export type AccessSecretVersionRequest = {
secretId: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
}
Expand All @@ -564,7 +588,11 @@ export type AccessSecretVersionByNameRequest = {
secretName: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
/**
Expand All @@ -584,7 +612,11 @@ export type DestroySecretVersionRequest = {
secretId: string
/**
* Version number. The first version of the secret is numbered 1, and all
* subsequent revisions augment by 1. Value can be a number or "latest".
* subsequent revisions augment by 1. Value can be either:
*
* - A number (the revision number)
* - "latest" (the latest revision)
* - "latest_enabled" (the latest enabled revision).
*/
revision: string
}
Expand Down