File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
scaleway-async/scaleway_async/k8s/v1 Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,14 @@ def __str__(self) -> str:
100
100
class ListNodesRequestOrderBy (str , Enum , metaclass = StrEnumMeta ):
101
101
CREATED_AT_ASC = "created_at_asc"
102
102
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"
103
111
104
112
def __str__ (self ) -> str :
105
113
return str (self .value )
Original file line number Diff line number Diff line change @@ -100,6 +100,14 @@ def __str__(self) -> str:
100
100
class ListNodesRequestOrderBy (str , Enum , metaclass = StrEnumMeta ):
101
101
CREATED_AT_ASC = "created_at_asc"
102
102
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"
103
111
104
112
def __str__ (self ) -> str :
105
113
return str (self .value )
You can’t perform that action at this time.
0 commit comments