@@ -89,6 +89,7 @@ class DomainDnsAction(str, Enum, metaclass=StrEnumMeta):
8989 AUTO_CONFIG_WEB_RECORDS = "auto_config_web_records"
9090 AUTO_CONFIG_MAIL_RECORDS = "auto_config_mail_records"
9191 AUTO_CONFIG_NAMESERVERS = "auto_config_nameservers"
92+ AUTO_CONFIG_NONE = "auto_config_none"
9293
9394 def __str__ (self ) -> str :
9495 return str (self .value )
@@ -129,19 +130,6 @@ def __str__(self) -> str:
129130 return str (self .value )
130131
131132
132- class HostingSummaryStatus (str , Enum , metaclass = StrEnumMeta ):
133- UNKNOWN_STATUS = "unknown_status"
134- DELIVERING = "delivering"
135- READY = "ready"
136- DELETING = "deleting"
137- ERROR = "error"
138- LOCKED = "locked"
139- MIGRATING = "migrating"
140-
141- def __str__ (self ) -> str :
142- return str (self .value )
143-
144-
145133class ListDatabaseUsersRequestOrderBy (str , Enum , metaclass = StrEnumMeta ):
146134 USERNAME_ASC = "username_asc"
147135 USERNAME_DESC = "username_desc"
@@ -579,6 +567,11 @@ class HostingSummary:
579567 ID of the Scaleway Project the Web Hosting plan belongs to.
580568 """
581569
570+ status : HostingStatus
571+ """
572+ Status of the Web Hosting plan.
573+ """
574+
582575 domain : str
583576 """
584577 Main domain associated with the Web Hosting plan.
@@ -594,11 +587,6 @@ class HostingSummary:
594587 Name of the active offer for the Web Hosting plan.
595588 """
596589
597- hosting_status : HostingStatus
598- """
599- Status of the Web Hosting plan.
600- """
601-
602590 domain_status : DomainStatus
603591 """
604592 Main domain status of the Web Hosting plan.
@@ -619,11 +607,6 @@ class HostingSummary:
619607 Date on which the Web Hosting plan was last updated.
620608 """
621609
622- status : Optional [HostingSummaryStatus ]
623- """
624- Status of the Web Hosting plan.
625- """
626-
627610 dns_status : Optional [DnsRecordsStatus ]
628611 """
629612 DNS status of the Web Hosting plan.
0 commit comments