Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 3 additions & 0 deletions services/loadbalancer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion services/loadbalancer/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
95de5cba3201a683657cb472d5fa30aa768f19cc
c43677cf2a4a5528ede8372025f6cca5a33aeac9
4 changes: 2 additions & 2 deletions services/loadbalancer/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down