We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e26e5b commit c0b7c40Copy full SHA for c0b7c40
packages/clients/src/api/secret/v1beta1/marshalling.gen.ts
@@ -100,6 +100,7 @@ export const unmarshalSecret = (data: unknown): Secret => {
100
tags: data.tags,
101
type: data.type,
102
updatedAt: unmarshalDate(data.updated_at),
103
+ usedBy: data.used_by,
104
versionCount: data.version_count,
105
} as Secret
106
}
packages/clients/src/api/secret/v1beta1/types.gen.ts
@@ -151,6 +151,8 @@ export interface Secret {
151
* default, the policy is applied to all the secret's versions.
152
*/
153
ephemeralPolicy?: EphemeralPolicy
154
+ /** List of Scaleway resources that can access and manage the secret. */
155
+ usedBy: Product[]
156
/** Region of the secret. */
157
region: Region
158
0 commit comments