File tree Expand file tree Collapse file tree 4 files changed +24
-2
lines changed
scaleway-async/scaleway_async/edge_services/v1beta1
scaleway/scaleway/edge_services/v1beta1 Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -307,6 +307,12 @@ def unmarshal_DNSStage(data: Any) -> DNSStage:
307307 else :
308308 args ["id" ] = None
309309
310+ field = data .get ("default_fqdn" , None )
311+ if field is not None :
312+ args ["default_fqdn" ] = field
313+ else :
314+ args ["default_fqdn" ] = None
315+
310316 field = data .get ("fqdns" , None )
311317 if field is not None :
312318 args ["fqdns" ] = field
Original file line number Diff line number Diff line change @@ -441,9 +441,14 @@ class DNSStage:
441441 ID of the DNS stage.
442442 """
443443
444+ default_fqdn : str
445+ """
446+ Default Fully Qualified Domain Name attached to the stage.
447+ """
448+
444449 fqdns : list [str ]
445450 """
446- List of Fully Qualified Domain Names attached to the stage.
451+ List of additional (custom) Fully Qualified Domain Names attached to the stage.
447452 """
448453
449454 type_ : DNSStageType
Original file line number Diff line number Diff line change @@ -307,6 +307,12 @@ def unmarshal_DNSStage(data: Any) -> DNSStage:
307307 else :
308308 args ["id" ] = None
309309
310+ field = data .get ("default_fqdn" , None )
311+ if field is not None :
312+ args ["default_fqdn" ] = field
313+ else :
314+ args ["default_fqdn" ] = None
315+
310316 field = data .get ("fqdns" , None )
311317 if field is not None :
312318 args ["fqdns" ] = field
Original file line number Diff line number Diff line change @@ -441,9 +441,14 @@ class DNSStage:
441441 ID of the DNS stage.
442442 """
443443
444+ default_fqdn : str
445+ """
446+ Default Fully Qualified Domain Name attached to the stage.
447+ """
448+
444449 fqdns : list [str ]
445450 """
446- List of Fully Qualified Domain Names attached to the stage.
451+ List of additional (custom) Fully Qualified Domain Names attached to the stage.
447452 """
448453
449454 type_ : DNSStageType
You can’t perform that action at this time.
0 commit comments