File tree Expand file tree Collapse file tree 5 files changed +10
-2
lines changed
src/stackit/certificates/api Expand file tree Collapse file tree 5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11## Release (2026-MM-DD)
22- ` alb ` : [ v0.9.3] ( services/alb/CHANGELOG.md#v093 )
33 - Add HTTP 429 status code to some API client methods
4+ - ` certificates ` : [ v1.3.1] ( services/certificates/CHANGELOG.md#v131 )
5+ - Add HTTP 429 status code to some API client methods
46- ` iaas ` : [ v1.2.2] ( services/iaas/CHANGELOG.md#v122 )
57 - ** Docs:** Extend description of ` PortRange ` class
68- ` kms ` : [ v0.9.0] ( services/kms/CHANGELOG.md#v090 )
Original file line number Diff line number Diff line change 1+ ## v1.3.1
2+ - Add HTTP 429 status code to some API client methods
3+
14## v1.3.0
25- ** Feature:** Add new method ` GetQuota ` to get the quota for TLS certificates in a project
36
Original file line number Diff line number Diff line change 1- 95de5cba3201a683657cb472d5fa30aa768f19cc
1+ 87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8
Original file line number Diff line number Diff line change 11[project ]
22name = " stackit-certificates"
3- version = " v1.3.0 "
3+ version = " v1.3.1 "
44description = " Load Balancer Certificates API"
55authors = [{ name = " STACKIT Developer Tools" , email = " developer-tools@stackit.cloud" }]
66requires-python = " >=3.9,<4.0"
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ def create_certificate(
106106 "400" : None ,
107107 "401" : "Status" ,
108108 "403" : None ,
109+ "429" : None ,
109110 "500" : None ,
110111 }
111112 response_data = self .api_client .call_api (* _param , _request_timeout = _request_timeout )
@@ -178,6 +179,7 @@ def create_certificate_with_http_info(
178179 "400" : None ,
179180 "401" : "Status" ,
180181 "403" : None ,
182+ "429" : None ,
181183 "500" : None ,
182184 }
183185 response_data = self .api_client .call_api (* _param , _request_timeout = _request_timeout )
@@ -250,6 +252,7 @@ def create_certificate_without_preload_content(
250252 "400" : None ,
251253 "401" : "Status" ,
252254 "403" : None ,
255+ "429" : None ,
253256 "500" : None ,
254257 }
255258 response_data = self .api_client .call_api (* _param , _request_timeout = _request_timeout )
You can’t perform that action at this time.
0 commit comments