From 773cda826b75d712d938a0a6bd1988d3a16a2978 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 24 Mar 2026 15:12:14 +0000 Subject: [PATCH 1/2] Generate alb --- services/alb/oas_commit | 2 +- services/alb/src/stackit/alb/api/default_api.py | 6 +++--- services/alb/src/stackit/alb/models/get_quota_response.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/services/alb/oas_commit b/services/alb/oas_commit index e3713dde3..cca6a5e9a 100644 --- a/services/alb/oas_commit +++ b/services/alb/oas_commit @@ -1 +1 @@ -0e64886dd0847341800d7191ed193b75413be998 +95de5cba3201a683657cb472d5fa30aa768f19cc diff --git a/services/alb/src/stackit/alb/api/default_api.py b/services/alb/src/stackit/alb/api/default_api.py index 3ec7b8067..692daf598 100644 --- a/services/alb/src/stackit/alb/api/default_api.py +++ b/services/alb/src/stackit/alb/api/default_api.py @@ -1730,7 +1730,7 @@ def get_quota( ) -> GetQuotaResponse: """Get the quota of Application Load Balancers in a project. - Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request. There can be 3 times as many TLS certificates and observability credentials as Load Balancers. + Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request. :param project_id: (required) :type project_id: str @@ -1798,7 +1798,7 @@ def get_quota_with_http_info( ) -> ApiResponse[GetQuotaResponse]: """Get the quota of Application Load Balancers in a project. - Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request. There can be 3 times as many TLS certificates and observability credentials as Load Balancers. + Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request. :param project_id: (required) :type project_id: str @@ -1866,7 +1866,7 @@ def get_quota_without_preload_content( ) -> RESTResponseType: """Get the quota of Application Load Balancers in a project. - Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request. There can be 3 times as many TLS certificates and observability credentials as Load Balancers. + Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request. :param project_id: (required) :type project_id: str diff --git a/services/alb/src/stackit/alb/models/get_quota_response.py b/services/alb/src/stackit/alb/models/get_quota_response.py index d43f2a517..2425d07c6 100644 --- a/services/alb/src/stackit/alb/models/get_quota_response.py +++ b/services/alb/src/stackit/alb/models/get_quota_response.py @@ -28,12 +28,12 @@ class GetQuotaResponse(BaseModel): GetQuotaResponse """ # noqa: E501 - max_credentials: Optional[Annotated[int, Field(le=999, strict=True, ge=-1)]] = Field( + max_credentials: Optional[Annotated[int, Field(le=1000000, strict=True, ge=-1)]] = Field( default=None, description="The maximum number of observability credentials that can be stored in this project.", alias="maxCredentials", ) - max_load_balancers: Optional[Annotated[int, Field(le=999, strict=True, ge=-1)]] = Field( + max_load_balancers: Optional[Annotated[int, Field(le=1000000, strict=True, ge=-1)]] = Field( default=None, description="The maximum number of load balancing servers in this project.", alias="maxLoadBalancers", From c7ee7e2305d473fa8043d77063a0ad99bb76f7ab Mon Sep 17 00:00:00 2001 From: Marcel Jacek Date: Thu, 26 Mar 2026 17:38:50 +0100 Subject: [PATCH 2/2] add changelog entries --- CHANGELOG.md | 3 +++ services/alb/CHANGELOG.md | 4 ++++ services/alb/pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f108a981..86a6112b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,6 +75,9 @@ - **Bugfix:** Flagged `disk_format` as necessary for `ImageFromVolumePayload` - **Improvement:** Updated description for labels - `alb`: + - [v0.9.2](services/alb/CHANGELOG.md#v092) + - **Improvement:** Increase limit for `max_credentials` and `max_load_balancers` in `GetQuotaResponse` model to 1000000 + - **Improvement:** Update docs of `get_quota` method - [v0.9.1](services/alb/CHANGELOG.md#v091) - **Feature:** client now supports UUID and decimal types - **Bugfix:** timeouts now passed to requests library diff --git a/services/alb/CHANGELOG.md b/services/alb/CHANGELOG.md index a753ed0eb..b6138ab97 100644 --- a/services/alb/CHANGELOG.md +++ b/services/alb/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.9.2 +- **Improvement:** Increase limit for `max_credentials` and `max_load_balancers` in `GetQuotaResponse` model to 1000000 +- **Improvement:** Update docs of `get_quota` method + ## v0.9.1 - **Feature:** client now supports UUID and decimal types - **Bugfix:** timeouts now passed to requests library diff --git a/services/alb/pyproject.toml b/services/alb/pyproject.toml index 8080817e6..34a9b1768 100644 --- a/services/alb/pyproject.toml +++ b/services/alb/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stackit-alb" -version = "v0.9.1" +version = "v0.9.2" description = "Application Load Balancer API" authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }] requires-python = ">=3.9,<4.0"