File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
packages/clients/src/api/webhosting/v1alpha1 Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,14 @@ export const unmarshalHosting = (data: unknown): Hosting => {
66
66
dnsStatus : data . dns_status ,
67
67
domain : data . domain ,
68
68
id : data . id ,
69
+ ipv4 : data . ipv4 ,
70
+ ipv6 : data . ipv6 ,
69
71
offerEndOfLife : data . offer_end_of_life ,
70
72
offerId : data . offer_id ,
71
73
offerName : data . offer_name ,
72
74
options : unmarshalArrayOfObject ( data . options , unmarshalHostingOption ) ,
73
75
organizationId : data . organization_id ,
76
+ platformGroup : data . platform_group ,
74
77
platformHostname : data . platform_hostname ,
75
78
platformNumber : data . platform_number ,
76
79
projectId : data . project_id ,
Original file line number Diff line number Diff line change @@ -143,6 +143,12 @@ export interface Hosting {
143
143
offerEndOfLife : boolean
144
144
/** Name of the control panel. */
145
145
controlPanelName : string
146
+ /** Group of the hosting's host server/platform. */
147
+ platformGroup : string
148
+ /** IPv4 address of the hosting's host server. */
149
+ ipv4 : string
150
+ /** IPv6 address of the hosting's host server. */
151
+ ipv6 : string
146
152
/** Region where the Web Hosting plan is hosted. */
147
153
region : Region
148
154
}
You can’t perform that action at this time.
0 commit comments