From 3329a916eda98f3c4d5c93ba0029837be7c93738 Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Thu, 16 Jul 2026 08:26:06 +0000 Subject: [PATCH] feat(environmental_footprint): add serverless products to EFP user API --- .../scaleway_async/environmental_footprint/v1alpha1/types.py | 4 ++++ scaleway/scaleway/environmental_footprint/v1alpha1/types.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/scaleway-async/scaleway_async/environmental_footprint/v1alpha1/types.py b/scaleway-async/scaleway_async/environmental_footprint/v1alpha1/types.py index 844387ce6..f9fa6e7f9 100644 --- a/scaleway-async/scaleway_async/environmental_footprint/v1alpha1/types.py +++ b/scaleway-async/scaleway_async/environmental_footprint/v1alpha1/types.py @@ -31,6 +31,9 @@ class ProductCategory(str, Enum, metaclass=StrEnumMeta): MANAGED_REDIS = "managed_redis" MANAGED_INFERENCE = "managed_inference" GENERATIVE_APIS = "generative_apis" + SERVERLESS_FUNCTIONS = "serverless_functions" + SERVERLESS_CONTAINERS = "serverless_containers" + SERVERLESS_JOBS = "serverless_jobs" def __str__(self) -> str: return str(self.value) @@ -54,6 +57,7 @@ class ServiceCategory(str, Enum, metaclass=StrEnumMeta): CONTAINERS = "containers" DATABASES = "databases" AI = "ai" + SERVERLESS = "serverless" def __str__(self) -> str: return str(self.value) diff --git a/scaleway/scaleway/environmental_footprint/v1alpha1/types.py b/scaleway/scaleway/environmental_footprint/v1alpha1/types.py index 844387ce6..f9fa6e7f9 100644 --- a/scaleway/scaleway/environmental_footprint/v1alpha1/types.py +++ b/scaleway/scaleway/environmental_footprint/v1alpha1/types.py @@ -31,6 +31,9 @@ class ProductCategory(str, Enum, metaclass=StrEnumMeta): MANAGED_REDIS = "managed_redis" MANAGED_INFERENCE = "managed_inference" GENERATIVE_APIS = "generative_apis" + SERVERLESS_FUNCTIONS = "serverless_functions" + SERVERLESS_CONTAINERS = "serverless_containers" + SERVERLESS_JOBS = "serverless_jobs" def __str__(self) -> str: return str(self.value) @@ -54,6 +57,7 @@ class ServiceCategory(str, Enum, metaclass=StrEnumMeta): CONTAINERS = "containers" DATABASES = "databases" AI = "ai" + SERVERLESS = "serverless" def __str__(self) -> str: return str(self.value)