Skip to content

Commit 71b4b0b

Browse files
feat(serverless): add node22, python312, php83, go122 and rust178 runtimes (#544)
Co-authored-by: Laure-di <62625835+Laure-di@users.noreply.github.com>
1 parent d79012b commit 71b4b0b

File tree

2 files changed

+10
-0
lines changed
  • scaleway/scaleway/function/v1beta1
  • scaleway-async/scaleway_async/function/v1beta1

2 files changed

+10
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ class FunctionRuntime(str, Enum, metaclass=StrEnumMeta):
8484
GO120 = "go120"
8585
NODE20 = "node20"
8686
GO121 = "go121"
87+
NODE22 = "node22"
88+
PYTHON312 = "python312"
89+
PHP83 = "php83"
90+
GO122 = "go122"
91+
RUST178 = "rust178"
8792

8893
def __str__(self) -> str:
8994
return str(self.value)

scaleway/scaleway/function/v1beta1/types.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ class FunctionRuntime(str, Enum, metaclass=StrEnumMeta):
8484
GO120 = "go120"
8585
NODE20 = "node20"
8686
GO121 = "go121"
87+
NODE22 = "node22"
88+
PYTHON312 = "python312"
89+
PHP83 = "php83"
90+
GO122 = "go122"
91+
RUST178 = "rust178"
8792

8893
def __str__(self) -> str:
8994
return str(self.value)

0 commit comments

Comments
 (0)