diff --git a/services/alb/oas_commit b/services/alb/oas_commit index e3713dde3..41877ba5b 100644 --- a/services/alb/oas_commit +++ b/services/alb/oas_commit @@ -1 +1 @@ -0e64886dd0847341800d7191ed193b75413be998 +b0b8472dbda9d5f57844ecdb747888008b0814f1 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",