Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions packages/clients/src/api/secret/v1alpha1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ const jsonContentHeaders = {
}

/**
* Secret Manager API documentation.
* Secret Manager API.
*
* This API allows you to conveniently store, access and share sensitive data.
* Secret Manager API documentation.
* Secret Manager API. This API allows you to conveniently store, access and
* share sensitive data.
*/
export class API extends ParentAPI {
/** Lists the available regions of the API. */
Expand Down
12 changes: 6 additions & 6 deletions packages/clients/src/api/secret/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export interface AccessSecretVersionResponse {
/** The base64-encoded secret payload of the version. */
data: string
/**
* The CRC32 checksum of the data as a base-10 integer. This field is present
* only if a CRC32 was supplied during the creation of the version.
* The CRC32 checksum of the data as a base-10 integer. This field is only
* available if a CRC32 was supplied during the creation of the version.
*/
dataCrc32?: number
}
Expand Down Expand Up @@ -235,7 +235,7 @@ export type CreateSecretVersionRequest = {
disablePrevious?: boolean
/**
* Options to generate a password. Optional. If specified, a random password
* will be generated. The data and data_crc32 fields must be empty. By
* will be generated. The `data` and `data_crc32` fields must be empty. By
* default, the generator will use upper and lower case letters, and digits.
* This behavior can be tuned using the generation parameters.
*
Expand All @@ -245,9 +245,9 @@ export type CreateSecretVersionRequest = {
passwordGeneration?: PasswordGenerationParams
/**
* The CRC32 checksum of the data as a base-10 integer. Optional. If
* specified, the Secret Manager will verify the integrity of the data
* received against the given CRC32. An error is returned if the CRC32 does
* not match. Otherwise, the CRC32 will be stored and returned along with the
* specified, Secret Manager will verify the integrity of the data received
* against the given CRC32. An error is returned if the CRC32 does not match.
* Otherwise, the CRC32 will be stored and returned along with the
* SecretVersion on futur accesses.
*/
dataCrc32?: number
Expand Down