File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
356360export interface Token {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
340344export interface Token {
You can’t perform that action at this time.
0 commit comments