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
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export const unmarshalSecret = (data: unknown): Secret => {
tags: data.tags,
type: data.type,
updatedAt: unmarshalDate(data.updated_at),
usedBy: data.used_by,
versionCount: data.version_count,
} as Secret
}
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/secret/v1beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ export interface Secret {
* default, the policy is applied to all the secret's versions.
*/
ephemeralPolicy?: EphemeralPolicy
/** List of Scaleway resources that can access and manage the secret. */
usedBy: Product[]
/** Region of the secret. */
region: Region
}
Expand Down