From 4d1acc5e9bb2c016c032e21af2592710ec5ab777 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Fri, 10 Apr 2026 08:06:58 +0000 Subject: [PATCH 1/2] Generate loadbalancer --- services/loadbalancer/oas_commit | 2 +- .../src/stackit/loadbalancer/api/default_api.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/services/loadbalancer/oas_commit b/services/loadbalancer/oas_commit index cca6a5e9..36076afe 100644 --- a/services/loadbalancer/oas_commit +++ b/services/loadbalancer/oas_commit @@ -1 +1 @@ -95de5cba3201a683657cb472d5fa30aa768f19cc +87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8 diff --git a/services/loadbalancer/src/stackit/loadbalancer/api/default_api.py b/services/loadbalancer/src/stackit/loadbalancer/api/default_api.py index ad214686..02447983 100644 --- a/services/loadbalancer/src/stackit/loadbalancer/api/default_api.py +++ b/services/loadbalancer/src/stackit/loadbalancer/api/default_api.py @@ -135,6 +135,7 @@ def create_credentials( "400": None, "401": "str", "403": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -211,6 +212,7 @@ def create_credentials_with_http_info( "400": None, "401": "str", "403": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -287,6 +289,7 @@ def create_credentials_without_preload_content( "400": None, "401": "str", "403": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -427,6 +430,7 @@ def create_load_balancer( "401": "str", "403": None, "409": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -504,6 +508,7 @@ def create_load_balancer_with_http_info( "401": "str", "403": None, "409": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) @@ -581,6 +586,7 @@ def create_load_balancer_without_preload_content( "401": "str", "403": None, "409": None, + "429": None, "500": None, } response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout) From 432bafbde76007093ecd2f08ec3ee3476ab0056b Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Fri, 10 Apr 2026 11:26:00 +0200 Subject: [PATCH 2/2] changelogs --- CHANGELOG.md | 2 ++ services/loadbalancer/CHANGELOG.md | 3 +++ services/loadbalancer/pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 518cf6f3..d2321b3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## Release (2026-MM-DD) - `alb`: [v0.9.3](services/alb/CHANGELOG.md#v093) - Add HTTP 429 status code to some API client methods +- `loadbalancer`: [v0.9.3](services/loadbalancer/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/loadbalancer/CHANGELOG.md b/services/loadbalancer/CHANGELOG.md index 85f35bb2..96588826 100644 --- a/services/loadbalancer/CHANGELOG.md +++ b/services/loadbalancer/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` in `GetQuotaResponse` model to 1000000 - **Improvement:** Update docs of `get_quota` method diff --git a/services/loadbalancer/pyproject.toml b/services/loadbalancer/pyproject.toml index 3c504c62..fa238f85 100644 --- a/services/loadbalancer/pyproject.toml +++ b/services/loadbalancer/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stackit-loadbalancer" -version = "v0.9.2" +version = "v0.9.3" description = "Load Balancer API" authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }] requires-python = ">=3.9,<4.0"