Skip to content

Commit a455ce0

Browse files
authored
feat(tem): add domain autoconfiguring status (#653)
1 parent b64276e commit a455ce0

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

scaleway-async/scaleway_async/tem/v1alpha1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
DOMAIN_TRANSIENT_STATUSES: List[DomainStatus] = [
1111
DomainStatus.PENDING,
12+
DomainStatus.AUTOCONFIGURING,
1213
]
1314
"""
1415
Lists transient statutes of the enum :class:`DomainStatus <DomainStatus>`.

scaleway-async/scaleway_async/tem/v1alpha1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class DomainStatus(str, Enum, metaclass=StrEnumMeta):
4444
LOCKED = "locked"
4545
REVOKED = "revoked"
4646
PENDING = "pending"
47+
AUTOCONFIGURING = "autoconfiguring"
4748

4849
def __str__(self) -> str:
4950
return str(self.value)

scaleway/scaleway/tem/v1alpha1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
DOMAIN_TRANSIENT_STATUSES: List[DomainStatus] = [
1111
DomainStatus.PENDING,
12+
DomainStatus.AUTOCONFIGURING,
1213
]
1314
"""
1415
Lists transient statutes of the enum :class:`DomainStatus <DomainStatus>`.

scaleway/scaleway/tem/v1alpha1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class DomainStatus(str, Enum, metaclass=StrEnumMeta):
4444
LOCKED = "locked"
4545
REVOKED = "revoked"
4646
PENDING = "pending"
47+
AUTOCONFIGURING = "autoconfiguring"
4748

4849
def __str__(self) -> str:
4950
return str(self.value)

0 commit comments

Comments
 (0)