From d2d4eac4802498905bee3156f5c4d887f9814f85 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Fri, 10 Apr 2026 08:06:45 +0000 Subject: [PATCH 1/2] Generate alb --- services/alb/oas_commit | 2 +- services/alb/src/stackit/alb/api/default_api.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/services/alb/oas_commit b/services/alb/oas_commit index cca6a5e9..36076afe 100644 --- a/services/alb/oas_commit +++ b/services/alb/oas_commit @@ -1 +1 @@ -95de5cba3201a683657cb472d5fa30aa768f19cc +87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8 diff --git a/services/alb/src/stackit/alb/api/default_api.py b/services/alb/src/stackit/alb/api/default_api.py index 692daf59..b54a83df 100644 --- a/services/alb/src/stackit/alb/api/default_api.py +++ b/services/alb/src/stackit/alb/api/default_api.py @@ -117,6 +117,7 @@ def create_credentials( "400": None, "401": "Status", "403": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -193,6 +194,7 @@ def create_credentials_with_http_info( "400": None, "401": "Status", "403": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -269,6 +271,7 @@ def create_credentials_without_preload_content( "400": None, "401": "Status", "403": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -409,6 +412,7 @@ def create_load_balancer( "401": "Status", "403": None, "409": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -486,6 +490,7 @@ def create_load_balancer_with_http_info( "401": "Status", "403": None, "409": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -563,6 +568,7 @@ def create_load_balancer_without_preload_content( "401": "Status", "403": None, "409": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) From 27132cff51752852ea85c14658a679021a18263a Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Fri, 10 Apr 2026 11:18:32 +0200 Subject: [PATCH 2/2] changelogs --- CHANGELOG.md | 2 ++ services/alb/CHANGELOG.md | 3 +++ services/alb/pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 377d3fbc..518cf6f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ ## Release (2026-MM-DD) +- `alb`: [v0.9.3](services/alb/CHANGELOG.md#v093) + - Add HTTP 429 status code to some API client methods - `iaas`: [v1.2.2](services/iaas/CHANGELOG.md#v122) - **Docs:** Extend description of `PortRange` class - `kms`: [v0.9.0](services/kms/CHANGELOG.md#v090) diff --git a/services/alb/CHANGELOG.md b/services/alb/CHANGELOG.md index b6138ab9..c5af6ddc 100644 --- a/services/alb/CHANGELOG.md +++ b/services/alb/CHANGELOG.md @@ -1,3 +1,6 @@ +## v0.9.3 +- Add HTTP 429 status code to some API client methods + ## v0.9.2 - **Improvement:** Increase limit for `max_credentials` and `max_load_balancers` in `GetQuotaResponse` model to 1000000 - **Improvement:** Update docs of `get_quota` method diff --git a/services/alb/pyproject.toml b/services/alb/pyproject.toml index 34a9b176..9283e792 100644 --- a/services/alb/pyproject.toml +++ b/services/alb/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stackit-alb" -version = "v0.9.2" +version = "v0.9.3" description = "Application Load Balancer API" authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }] requires-python = ">=3.9,<4.0"