Skip to content

Commit 489ae1f

Browse files
authored
feat(edge_services): add default_fqdn to dns_stage (#2504)
1 parent 4e7c50c commit 489ae1f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-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
/**

0 commit comments

Comments
 (0)