Skip to content

Commit

Permalink
feat(secret_manager): remove useless is_ephemeral field (scaleway#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot authored Oct 27, 2023
1 parent 647ca0f commit 45253c3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export const unmarshalSecret = (data: unknown) => {
ephemeralAction: data.ephemeral_action,
expiresAt: unmarshalDate(data.expires_at),
id: data.id,
isEphemeral: data.is_ephemeral,
isManaged: data.is_managed,
isProtected: data.is_protected,
name: data.name,
Expand Down
2 changes: 0 additions & 2 deletions packages/clients/src/api/secret/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@ export interface Secret {
* enum for description of values.
*/
ephemeralAction: SecretEphemeralAction
/** Returns `true` for secrets that are ephemeral. */
isEphemeral: boolean
/** Region of the secret. */
region: Region
}
Expand Down

0 comments on commit 45253c3

Please sign in to comment.