Skip to content

Commit

Permalink
docs(k8s): update documentation (scaleway#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot authored Jan 2, 2025
1 parent e832d05 commit d9f041b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scaleway-async/scaleway_async/k8s/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,14 @@ def __str__(self) -> str:
class ListNodesRequestOrderBy(str, Enum, metaclass=StrEnumMeta):
CREATED_AT_ASC = "created_at_asc"
CREATED_AT_DESC = "created_at_desc"
UPDATED_AT_ASC = "updated_at_asc"
UPDATED_AT_DESC = "updated_at_desc"
NAME_ASC = "name_asc"
NAME_DESC = "name_desc"
STATUS_ASC = "status_asc"
STATUS_DESC = "status_desc"
VERSION_ASC = "version_asc"
VERSION_DESC = "version_desc"

def __str__(self) -> str:
return str(self.value)
Expand Down
8 changes: 8 additions & 0 deletions scaleway/scaleway/k8s/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,14 @@ def __str__(self) -> str:
class ListNodesRequestOrderBy(str, Enum, metaclass=StrEnumMeta):
CREATED_AT_ASC = "created_at_asc"
CREATED_AT_DESC = "created_at_desc"
UPDATED_AT_ASC = "updated_at_asc"
UPDATED_AT_DESC = "updated_at_desc"
NAME_ASC = "name_asc"
NAME_DESC = "name_desc"
STATUS_ASC = "status_asc"
STATUS_DESC = "status_desc"
VERSION_ASC = "version_asc"
VERSION_DESC = "version_desc"

def __str__(self) -> str:
return str(self.value)
Expand Down

0 comments on commit d9f041b

Please sign in to comment.