Skip to content

Commit cba8db0

Browse files
Generate alb
1 parent b7bc6f6 commit cba8db0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

services/alb/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
b0b8472dbda9d5f57844ecdb747888008b0814f1

services/alb/src/stackit/alb/api/default_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1730,7 +1730,7 @@ def get_quota(
17301730
) -> GetQuotaResponse:
17311731
"""Get the quota of Application Load Balancers in a project.
17321732
1733-
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.
1733+
Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request.
17341734
17351735
:param project_id: (required)
17361736
:type project_id: str
@@ -1798,7 +1798,7 @@ def get_quota_with_http_info(
17981798
) -> ApiResponse[GetQuotaResponse]:
17991799
"""Get the quota of Application Load Balancers in a project.
18001800
1801-
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.
1801+
Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request.
18021802
18031803
:param project_id: (required)
18041804
:type project_id: str
@@ -1866,7 +1866,7 @@ def get_quota_without_preload_content(
18661866
) -> RESTResponseType:
18671867
"""Get the quota of Application Load Balancers in a project.
18681868
1869-
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.
1869+
Retrieves the configured Application Load Balancer quota for the project. Limit can be changed via service request.
18701870
18711871
:param project_id: (required)
18721872
:type project_id: str

services/alb/src/stackit/alb/models/get_quota_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ class GetQuotaResponse(BaseModel):
2828
GetQuotaResponse
2929
""" # noqa: E501
3030

31-
max_credentials: Optional[Annotated[int, Field(le=999, strict=True, ge=-1)]] = Field(
31+
max_credentials: Optional[Annotated[int, Field(le=1000000, strict=True, ge=-1)]] = Field(
3232
default=None,
3333
description="The maximum number of observability credentials that can be stored in this project.",
3434
alias="maxCredentials",
3535
)
36-
max_load_balancers: Optional[Annotated[int, Field(le=999, strict=True, ge=-1)]] = Field(
36+
max_load_balancers: Optional[Annotated[int, Field(le=1000000, strict=True, ge=-1)]] = Field(
3737
default=None,
3838
description="The maximum number of load balancing servers in this project.",
3939
alias="maxLoadBalancers",

0 commit comments

Comments
 (0)