File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
scaleway-async/scaleway_async/webhosting/v1
scaleway/scaleway/webhosting/v1 Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,10 @@ def unmarshal_Domain(data: Any) -> Domain:
320320 if field is not None :
321321 args ["owner" ] = field
322322
323+ field = data .get ("zone_domain_name" , None )
324+ if field is not None :
325+ args ["zone_domain_name" ] = field
326+
323327 field = data .get ("available_actions" , None )
324328 if field is not None :
325329 args ["available_actions" ] = (
Original file line number Diff line number Diff line change @@ -1133,6 +1133,11 @@ class Domain:
11331133 Zone owner of the domain.
11341134 """
11351135
1136+ zone_domain_name : str
1137+ """
1138+ Main domain for this zone.
1139+ """
1140+
11361141 available_actions : List [DomainAction ]
11371142 """
11381143 A list of actions that can be performed on the domain.
Original file line number Diff line number Diff line change @@ -320,6 +320,10 @@ def unmarshal_Domain(data: Any) -> Domain:
320320 if field is not None :
321321 args ["owner" ] = field
322322
323+ field = data .get ("zone_domain_name" , None )
324+ if field is not None :
325+ args ["zone_domain_name" ] = field
326+
323327 field = data .get ("available_actions" , None )
324328 if field is not None :
325329 args ["available_actions" ] = (
Original file line number Diff line number Diff line change @@ -1133,6 +1133,11 @@ class Domain:
11331133 Zone owner of the domain.
11341134 """
11351135
1136+ zone_domain_name : str
1137+ """
1138+ Main domain for this zone.
1139+ """
1140+
11361141 available_actions : List [DomainAction ]
11371142 """
11381143 A list of actions that can be performed on the domain.
You can’t perform that action at this time.
0 commit comments