Skip to content

Commit f9958e8

Browse files
authored
feat(secret_manager): add region to folders (#973)
1 parent 2871a6b commit f9958e8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export const unmarshalFolder = (data: unknown) => {
3939
name: data.name,
4040
path: data.path,
4141
projectId: data.project_id,
42+
region: data.region,
4243
} as Folder
4344
}
4445

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ export interface Folder {
6767
path: string
6868
/** Date and time of the folder's creation. */
6969
createdAt?: Date
70+
/** Region of the folder. */
71+
region: Region
7072
}
7173

7274
/** List folders response. */

0 commit comments

Comments
 (0)