Skip to content

Commit cd6b81d

Browse files
authored
Merge branch 'main' into v1.7155.0
2 parents 63391b8 + b526f49 commit cd6b81d

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

packages_generated/edge_services/src/v1beta1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

packages_generated/edge_services/src/v1beta1/types.gen.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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
/**

packages_generated/secret/src/v1beta1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

packages_generated/secret/src/v1beta1/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

147151
export interface Secret {

0 commit comments

Comments
 (0)