Skip to content

Commit 45253c3

Browse files
authored
feat(secret_manager): remove useless is_ephemeral field (#965)
1 parent 647ca0f commit 45253c3

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

packages/clients/src/api/secret/v1alpha1/marshalling.gen.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ export const unmarshalSecret = (data: unknown) => {
5555
ephemeralAction: data.ephemeral_action,
5656
expiresAt: unmarshalDate(data.expires_at),
5757
id: data.id,
58-
isEphemeral: data.is_ephemeral,
5958
isManaged: data.is_managed,
6059
isProtected: data.is_protected,
6160
name: data.name,

packages/clients/src/api/secret/v1alpha1/types.gen.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,6 @@ export interface Secret {
157157
* enum for description of values.
158158
*/
159159
ephemeralAction: SecretEphemeralAction
160-
/** Returns `true` for secrets that are ephemeral. */
161-
isEphemeral: boolean
162160
/** Region of the secret. */
163161
region: Region
164162
}

0 commit comments

Comments
 (0)