Skip to content

Commit 4f94dae

Browse files
authored
feat(account): add network contract type (#1260)
1 parent 00630ad commit 4f94dae

File tree

2 files changed

+2
-0
lines changed
  • scaleway-async/scaleway_async/account/v3
  • scaleway/scaleway/account/v3

2 files changed

+2
-0
lines changed

scaleway-async/scaleway_async/account/v3/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class ContractType(str, Enum, metaclass=StrEnumMeta):
2323
INSTANCE = "instance"
2424
CONTAINER = "container"
2525
BAREMETAL = "baremetal"
26+
NETWORK = "network"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

scaleway/scaleway/account/v3/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class ContractType(str, Enum, metaclass=StrEnumMeta):
2323
INSTANCE = "instance"
2424
CONTAINER = "container"
2525
BAREMETAL = "baremetal"
26+
NETWORK = "network"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

0 commit comments

Comments
 (0)