Skip to content

Commit d9f041b

Browse files
authored
docs(k8s): update documentation (#810)
1 parent e832d05 commit d9f041b

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

scaleway-async/scaleway_async/k8s/v1/types.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ def __str__(self) -> str:
100100
class ListNodesRequestOrderBy(str, Enum, metaclass=StrEnumMeta):
101101
CREATED_AT_ASC = "created_at_asc"
102102
CREATED_AT_DESC = "created_at_desc"
103+
UPDATED_AT_ASC = "updated_at_asc"
104+
UPDATED_AT_DESC = "updated_at_desc"
105+
NAME_ASC = "name_asc"
106+
NAME_DESC = "name_desc"
107+
STATUS_ASC = "status_asc"
108+
STATUS_DESC = "status_desc"
109+
VERSION_ASC = "version_asc"
110+
VERSION_DESC = "version_desc"
103111

104112
def __str__(self) -> str:
105113
return str(self.value)

scaleway/scaleway/k8s/v1/types.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ def __str__(self) -> str:
100100
class ListNodesRequestOrderBy(str, Enum, metaclass=StrEnumMeta):
101101
CREATED_AT_ASC = "created_at_asc"
102102
CREATED_AT_DESC = "created_at_desc"
103+
UPDATED_AT_ASC = "updated_at_asc"
104+
UPDATED_AT_DESC = "updated_at_desc"
105+
NAME_ASC = "name_asc"
106+
NAME_DESC = "name_desc"
107+
STATUS_ASC = "status_asc"
108+
STATUS_DESC = "status_desc"
109+
VERSION_ASC = "version_asc"
110+
VERSION_DESC = "version_desc"
103111

104112
def __str__(self) -> str:
105113
return str(self.value)

0 commit comments

Comments
 (0)