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 {
76
76
ImportRawDNSZoneRequestBindSource ,
77
77
ImportRawDNSZoneRequestTsigKey ,
78
78
ImportRawDNSZoneResponse ,
79
+ LinkedProduct ,
79
80
ListContactsRequestRole ,
80
81
ListContactsResponse ,
81
82
ListDNSZoneNameserversRequest ,
Original file line number Diff line number Diff line change @@ -303,6 +303,7 @@ export const unmarshalDNSZone = (data: unknown): DNSZone => {
303
303
304
304
return {
305
305
domain : data . domain ,
306
+ linkedProducts : data . linked_products ,
306
307
message : data . message ,
307
308
ns : data . ns ,
308
309
nsDefault : data . ns_default ,
@@ -582,6 +583,7 @@ export const unmarshalDomain = (data: unknown): Domain => {
582
583
)
583
584
: undefined ,
584
585
isExternal : data . is_external ,
586
+ linkedProducts : data . linked_products ,
585
587
organizationId : data . organization_id ,
586
588
ownerContact : data . owner_contact
587
589
? unmarshalContact ( data . owner_contact )
Original file line number Diff line number Diff line change @@ -133,6 +133,8 @@ export type DomainStatus =
133
133
134
134
export type HostStatus = 'unknown_status' | 'active' | 'updating' | 'deleting'
135
135
136
+ export type LinkedProduct = 'unknown_product' | 'vpc'
137
+
136
138
export type ListContactsRequestRole =
137
139
| 'unknown_role'
138
140
| 'owner'
@@ -504,6 +506,7 @@ export interface DNSZone {
504
506
message ?: string
505
507
updatedAt ?: Date
506
508
projectId : string
509
+ linkedProducts : LinkedProduct [ ]
507
510
}
508
511
509
512
export interface DomainDNSSEC {
@@ -735,6 +738,7 @@ export interface Domain {
735
738
*/
736
739
transferRegistrationStatus ?: DomainRegistrationStatusTransfer
737
740
tld ?: Tld
741
+ linkedProducts : LinkedProduct [ ]
738
742
}
739
743
740
744
export type ExportRawDNSZoneRequest = {
You can’t perform that action at this time.
0 commit comments