File tree Expand file tree Collapse file tree 4 files changed +22
-0
lines changed
scaleway-async/scaleway_async/webhosting/v1
scaleway/scaleway/webhosting/v1 Expand file tree Collapse file tree 4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -251,6 +251,12 @@ def unmarshal_DnsRecords(data: Any) -> DnsRecords:
251251 if field is not None :
252252 args ["status" ] = field
253253
254+ field = data .get ("dns_config" , None )
255+ if field is not None :
256+ args ["dns_config" ] = (
257+ [DomainDnsAction (v ) for v in field ] if field is not None else None
258+ )
259+
254260 return DnsRecords (** args )
255261
256262
Original file line number Diff line number Diff line change @@ -1084,6 +1084,11 @@ class DnsRecords:
10841084 Status of the records.
10851085 """
10861086
1087+ dns_config : List [DomainDnsAction ]
1088+ """
1089+ Records dns auto configuration settings.
1090+ """
1091+
10871092
10881093@dataclass
10891094class Domain :
Original file line number Diff line number Diff line change @@ -251,6 +251,12 @@ def unmarshal_DnsRecords(data: Any) -> DnsRecords:
251251 if field is not None :
252252 args ["status" ] = field
253253
254+ field = data .get ("dns_config" , None )
255+ if field is not None :
256+ args ["dns_config" ] = (
257+ [DomainDnsAction (v ) for v in field ] if field is not None else None
258+ )
259+
254260 return DnsRecords (** args )
255261
256262
Original file line number Diff line number Diff line change @@ -1084,6 +1084,11 @@ class DnsRecords:
10841084 Status of the records.
10851085 """
10861086
1087+ dns_config : List [DomainDnsAction ]
1088+ """
1089+ Records dns auto configuration settings.
1090+ """
1091+
10871092
10881093@dataclass
10891094class Domain :
You can’t perform that action at this time.
0 commit comments