File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
packages/clients/src/api/domain/v2beta1 Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ export type {
7676 ImportRawDNSZoneRequestBindSource ,
7777 ImportRawDNSZoneRequestTsigKey ,
7878 ImportRawDNSZoneResponse ,
79+ LinkedProduct ,
7980 ListContactsRequestRole ,
8081 ListContactsResponse ,
8182 ListDNSZoneNameserversRequest ,
Original file line number Diff line number Diff line change @@ -303,6 +303,7 @@ export const unmarshalDNSZone = (data: unknown): DNSZone => {
303303
304304 return {
305305 domain : data . domain ,
306+ linkedProducts : data . linked_products ,
306307 message : data . message ,
307308 ns : data . ns ,
308309 nsDefault : data . ns_default ,
@@ -582,6 +583,7 @@ export const unmarshalDomain = (data: unknown): Domain => {
582583 )
583584 : undefined ,
584585 isExternal : data . is_external ,
586+ linkedProducts : data . linked_products ,
585587 organizationId : data . organization_id ,
586588 ownerContact : data . owner_contact
587589 ? unmarshalContact ( data . owner_contact )
Original file line number Diff line number Diff line change @@ -133,6 +133,8 @@ export type DomainStatus =
133133
134134export type HostStatus = 'unknown_status' | 'active' | 'updating' | 'deleting'
135135
136+ export type LinkedProduct = 'unknown_product' | 'vpc'
137+
136138export type ListContactsRequestRole =
137139 | 'unknown_role'
138140 | 'owner'
@@ -504,6 +506,7 @@ export interface DNSZone {
504506 message ?: string
505507 updatedAt ?: Date
506508 projectId : string
509+ linkedProducts : LinkedProduct [ ]
507510}
508511
509512export interface DomainDNSSEC {
@@ -735,6 +738,7 @@ export interface Domain {
735738 */
736739 transferRegistrationStatus ?: DomainRegistrationStatusTransfer
737740 tld ?: Tld
741+ linkedProducts : LinkedProduct [ ]
738742}
739743
740744export type ExportRawDNSZoneRequest = {
You can’t perform that action at this time.
0 commit comments