File tree 4 files changed +48
-0
lines changed
scaleway/scaleway/webhosting/v1alpha1
scaleway-async/scaleway_async/webhosting/v1alpha1
4 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,12 @@ def unmarshal_Hosting(data: Any) -> Hosting:
178
178
field = data .get ("id" , None )
179
179
args ["id" ] = field
180
180
181
+ field = data .get ("ipv4" , None )
182
+ args ["ipv4" ] = field
183
+
184
+ field = data .get ("ipv6" , None )
185
+ args ["ipv6" ] = field
186
+
181
187
field = data .get ("offer_end_of_life" , None )
182
188
args ["offer_end_of_life" ] = field
183
189
@@ -195,6 +201,9 @@ def unmarshal_Hosting(data: Any) -> Hosting:
195
201
field = data .get ("organization_id" , None )
196
202
args ["organization_id" ] = field
197
203
204
+ field = data .get ("platform_group" , None )
205
+ args ["platform_group" ] = field
206
+
198
207
field = data .get ("platform_hostname" , None )
199
208
args ["platform_hostname" ] = field
200
209
Original file line number Diff line number Diff line change @@ -280,6 +280,21 @@ class Hosting:
280
280
Name of the control panel.
281
281
"""
282
282
283
+ platform_group : str
284
+ """
285
+ Group of the hosting's host server/platform.
286
+ """
287
+
288
+ ipv4 : str
289
+ """
290
+ IPv4 address of the hosting's host server.
291
+ """
292
+
293
+ ipv6 : str
294
+ """
295
+ IPv6 address of the hosting's host server.
296
+ """
297
+
283
298
region : Region
284
299
"""
285
300
Region where the Web Hosting plan is hosted.
Original file line number Diff line number Diff line change @@ -178,6 +178,12 @@ def unmarshal_Hosting(data: Any) -> Hosting:
178
178
field = data .get ("id" , None )
179
179
args ["id" ] = field
180
180
181
+ field = data .get ("ipv4" , None )
182
+ args ["ipv4" ] = field
183
+
184
+ field = data .get ("ipv6" , None )
185
+ args ["ipv6" ] = field
186
+
181
187
field = data .get ("offer_end_of_life" , None )
182
188
args ["offer_end_of_life" ] = field
183
189
@@ -195,6 +201,9 @@ def unmarshal_Hosting(data: Any) -> Hosting:
195
201
field = data .get ("organization_id" , None )
196
202
args ["organization_id" ] = field
197
203
204
+ field = data .get ("platform_group" , None )
205
+ args ["platform_group" ] = field
206
+
198
207
field = data .get ("platform_hostname" , None )
199
208
args ["platform_hostname" ] = field
200
209
Original file line number Diff line number Diff line change @@ -280,6 +280,21 @@ class Hosting:
280
280
Name of the control panel.
281
281
"""
282
282
283
+ platform_group : str
284
+ """
285
+ Group of the hosting's host server/platform.
286
+ """
287
+
288
+ ipv4 : str
289
+ """
290
+ IPv4 address of the hosting's host server.
291
+ """
292
+
293
+ ipv6 : str
294
+ """
295
+ IPv6 address of the hosting's host server.
296
+ """
297
+
283
298
region : Region
284
299
"""
285
300
Region where the Web Hosting plan is hosted.
You can’t perform that action at this time.
0 commit comments