File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed
edge_services/src/v1beta1 Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ export const unmarshalDNSStage = (data: unknown): DNSStage => {
180180 backendStageId : data . backend_stage_id ,
181181 cacheStageId : data . cache_stage_id ,
182182 createdAt : unmarshalDate ( data . created_at ) ,
183+ defaultFqdn : data . default_fqdn ,
183184 fqdns : data . fqdns ,
184185 id : data . id ,
185186 pipelineId : data . pipeline_id ,
Original file line number Diff line number Diff line change @@ -291,7 +291,11 @@ export interface DNSStage {
291291 */
292292 id : string
293293 /**
294- * List of Fully Qualified Domain Names attached to the stage.
294+ * Default Fully Qualified Domain Name attached to the stage.
295+ */
296+ defaultFqdn : string
297+ /**
298+ * List of additional (custom) Fully Qualified Domain Names attached to the stage.
295299 */
296300 fqdns : string [ ]
297301 /**
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ export const unmarshalSecretVersion = (data: unknown): SecretVersion => {
5858 ? unmarshalEphemeralProperties ( data . ephemeral_properties )
5959 : undefined ,
6060 latest : data . latest ,
61+ region : data . region ,
6162 revision : data . revision ,
6263 secretId : data . secret_id ,
6364 status : data . status ,
Original file line number Diff line number Diff line change @@ -142,6 +142,10 @@ export interface SecretVersion {
142142 * Returns the time at which deletion was requested.
143143 */
144144 deletionRequestedAt ?: Date
145+ /**
146+ * Region of the version.
147+ */
148+ region : ScwRegion
145149}
146150
147151export interface Secret {
You can’t perform that action at this time.
0 commit comments