From 1aa7650de0e8b27420e510c4deb868f58eabca02 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Mon, 13 Apr 2026 10:53:26 +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..a1998a62 100644 --- a/services/loadbalancer/oas_commit +++ b/services/loadbalancer/oas_commit @@ -1 +1 @@ -95de5cba3201a683657cb472d5fa30aa768f19cc +c43677cf2a4a5528ede8372025f6cca5a33aeac9 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 3284e52af5e1bd8c3e04c2f8c7a12dca442ac024 Mon Sep 17 00:00:00 2001 From: Manuel Vaas Date: Tue, 14 Apr 2026 16:22:01 +0200 Subject: [PATCH 2/2] added changelog --- CHANGELOG.md | 2 ++ services/loadbalancer/CHANGELOG.md | 3 +++ services/loadbalancer/pyproject.toml | 4 ++-- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc4023fe..367d4802 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ ## Release (2026-MM-DD) +- `loadbalancer`: [v0.9.3](services/loadbalancer/CHANGELOG.md#v093) + - Add HTTP 429 status code to some API client methods - `alb`: [v0.9.3](services/alb/CHANGELOG.md#v093) - Add HTTP 429 status code to some API client methods - `certificates`: [v1.3.1](services/certificates/CHANGELOG.md#v131) diff --git a/services/loadbalancer/CHANGELOG.md b/services/loadbalancer/CHANGELOG.md index 85f35bb2..b7380eab 100644 --- a/services/loadbalancer/CHANGELOG.md +++ b/services/loadbalancer/CHANGELOG.md @@ -1,3 +1,6 @@ +## v0.9.3 +- **Feature:** 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..d2ec9d3c 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" @@ -111,7 +111,7 @@ per-file-ignores = """ # asserts are fine in tests, tests shouldn't be build optimized ./tests/*: S101, # F841: some variables get generated but may not be used, depending on the api-spec - # E501: long descriptions/string values might lead to lines that are too long + # E501: long descriptions/string values might lead to lines that are too long ./src/stackit/*/models/*: F841,E501 # F841: some variables get generated but may not be used, depending on the api-spec # E501: long descriptions/string values might lead to lines that are too long