Skip to content

Commit 7d32caa

Browse files
authored
feat(functions): deprecate old runtimes and add new ones (#1903)
1 parent 15325dd commit 7d32caa

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

  • scaleway-async/scaleway_async/function/v1beta1
  • scaleway/scaleway/function/v1beta1

scaleway-async/scaleway_async/function/v1beta1/types.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ class FunctionRuntime(str, Enum, metaclass=StrEnumMeta):
9494
PYTHON313 = "python313"
9595
RUST185 = "rust185"
9696
PHP84 = "php84"
97+
NODE24 = "node24"
98+
NODE26 = "node26"
99+
GO125 = "go125"
100+
GO126 = "go126"
101+
PHP85 = "php85"
102+
PYTHON314 = "python314"
103+
RUST196 = "rust196"
97104

98105
def __str__(self) -> str:
99106
return str(self.value)

scaleway/scaleway/function/v1beta1/types.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ class FunctionRuntime(str, Enum, metaclass=StrEnumMeta):
9494
PYTHON313 = "python313"
9595
RUST185 = "rust185"
9696
PHP84 = "php84"
97+
NODE24 = "node24"
98+
NODE26 = "node26"
99+
GO125 = "go125"
100+
GO126 = "go126"
101+
PHP85 = "php85"
102+
PYTHON314 = "python314"
103+
RUST196 = "rust196"
97104

98105
def __str__(self) -> str:
99106
return str(self.value)

0 commit comments

Comments
 (0)