Skip to content

Commit 10555ea

Browse files
authored
Merge branch 'main' into v1.5701.0
2 parents 93ac782 + 12d9c64 commit 10555ea

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

packages/clients/src/api/container/v1beta1/marshalling.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ export const unmarshalNamespace = (data: unknown): Namespace => {
210210
}
211211

212212
return {
213+
createdAt: unmarshalDate(data.created_at),
213214
description: data.description,
214215
environmentVariables: data.environment_variables,
215216
errorMessage: data.error_message,
@@ -226,6 +227,7 @@ export const unmarshalNamespace = (data: unknown): Namespace => {
226227
),
227228
status: data.status,
228229
tags: data.tags,
230+
updatedAt: unmarshalDate(data.updated_at),
229231
} as Namespace
230232
}
231233

packages/clients/src/api/container/v1beta1/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,10 @@ export interface Namespace {
351351
region: Region
352352
/** [ALPHA] List of tags applied to the Serverless Container Namespace. */
353353
tags: string[]
354+
/** Creation date of the namespace. */
355+
createdAt?: Date
356+
/** Last update date of the namespace. */
357+
updatedAt?: Date
354358
}
355359

356360
export interface Token {

packages/clients/src/api/function/v1beta1/marshalling.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ export const unmarshalNamespace = (data: unknown): Namespace => {
140140
}
141141

142142
return {
143+
createdAt: unmarshalDate(data.created_at),
143144
description: data.description,
144145
environmentVariables: data.environment_variables,
145146
errorMessage: data.error_message,
@@ -156,6 +157,7 @@ export const unmarshalNamespace = (data: unknown): Namespace => {
156157
),
157158
status: data.status,
158159
tags: data.tags,
160+
updatedAt: unmarshalDate(data.updated_at),
159161
} as Namespace
160162
}
161163

packages/clients/src/api/function/v1beta1/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,10 @@ export interface Namespace {
335335
region: Region
336336
/** [ALPHA] List of tags applied to the Serverless Function Namespace. */
337337
tags: string[]
338+
/** Creation date of the namespace. */
339+
createdAt?: Date
340+
/** Last update date of the namespace. */
341+
updatedAt?: Date
338342
}
339343

340344
export interface Token {

0 commit comments

Comments
 (0)