From c6defe5da601c8e1e49ae9a01986199214af228e Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 24 Mar 2026 13:04:06 +0000 Subject: [PATCH] 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..272dcd7b3 100644 --- a/services/alb/oas_commit +++ b/services/alb/oas_commit @@ -1 +1 @@ -0e64886dd0847341800d7191ed193b75413be998 +7387ad1600ca8bb2a3f15a5df04cd5831d75852f 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",