Skip to content
Merged
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,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
- `certificates`: [v1.3.1](services/certificates/CHANGELOG.md#v131)
- 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)
Expand Down
3 changes: 3 additions & 0 deletions services/certificates/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.3.1
- Add HTTP 429 status code to some API client methods

## v1.3.0
- **Feature:** Add new method `GetQuota` to get the quota for TLS certificates in a project

Expand Down
2 changes: 1 addition & 1 deletion services/certificates/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
95de5cba3201a683657cb472d5fa30aa768f19cc
87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8
2 changes: 1 addition & 1 deletion services/certificates/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-certificates"
version = "v1.3.0"
version = "v1.3.1"
description = "Load Balancer Certificates API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.9,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ def create_certificate(
"400": None,
"401": "Status",
"403": None,
"429": None,
"500": None,
}
response_data = self.api_client.call_api(*_param, _request_timeout=_request_timeout)
Expand Down Expand Up @@ -178,6 +179,7 @@ def create_certificate_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)
Expand Down Expand Up @@ -250,6 +252,7 @@ def create_certificate_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)
Expand Down
Loading