Skip to content

Commit 710b99b

Browse files
Generator: Update SDK /services/alb (#3573)
1 parent b7bc6f6 commit 710b99b

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575
- **Bugfix:** Flagged `disk_format` as necessary for `ImageFromVolumePayload`
7676
- **Improvement:** Updated description for labels
7777
- `alb`:
78+
- [v0.9.2](services/alb/CHANGELOG.md#v092)
79+
- **Improvement:** Increase limit for `max_credentials` and `max_load_balancers` in `GetQuotaResponse` model to 1000000
80+
- **Improvement:** Update docs of `get_quota` method
7881
- [v0.9.1](services/alb/CHANGELOG.md#v091)
7982
- **Feature:** client now supports UUID and decimal types
8083
- **Bugfix:** timeouts now passed to requests library

services/alb/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.9.2
2+
- **Improvement:** Increase limit for `max_credentials` and `max_load_balancers` in `GetQuotaResponse` model to 1000000
3+
- **Improvement:** Update docs of `get_quota` method
4+
15
## v0.9.1
26
- **Feature:** client now supports UUID and decimal types
37
- **Bugfix:** timeouts now passed to requests library

services/alb/oas_commit

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

services/alb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-alb"
3-
version = "v0.9.1"
3+
version = "v0.9.2"
44
description = "Application Load Balancer API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.9,<4.0"

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)