Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/alb/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
7387ad1600ca8bb2a3f15a5df04cd5831d75852f
6 changes: 3 additions & 3 deletions services/alb/src/stackit/alb/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions services/alb/src/stackit/alb/models/get_quota_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading