Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@
- **Feature:** Add new field `Tls` to `HttpHealthCheck`
- **Breaking change:** Renamed `TargetPoolTlsConfig` to `TlsConfig`
- `loadbalancer`:
- [v0.9.2](services/loadbalancer/CHANGELOG.md#v092)
- **Improvement:** Increase limit for `max_credentials` in `GetQuotaResponse` model to 1000000
- **Improvement:** Update docs of `get_quota` method
- [v0.9.1](services/loadbalancer/CHANGELOG.md#v091)
- **Feature:** client now supports UUID and decimal types
- **Bugfix:** timeouts now passed to requests library
Expand Down
4 changes: 4 additions & 0 deletions services/loadbalancer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.9.2
- **Improvement:** Increase limit for `max_credentials` in `GetQuotaResponse` model to 1000000
- **Improvement:** Update docs of `get_quota` method

## v0.9.1
- **Feature:** client now supports UUID and decimal types
- **Bugfix:** timeouts now passed to requests library
Expand Down
2 changes: 1 addition & 1 deletion services/loadbalancer/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
95de5cba3201a683657cb472d5fa30aa768f19cc
2 changes: 1 addition & 1 deletion services/loadbalancer/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-loadbalancer"
version = "v0.9.1"
version = "v0.9.2"
description = "Load Balancer API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.9,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1746,9 +1746,9 @@ def get_quota(
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> GetQuotaResponse:
"""Get the quota of Load Balancers in a project.
"""Get the quota of Network Load Balancers in a project.

Retrieves the configured Load Balancer quota for the project. Limit can be changed via service request. There can be 3 times as many observability credentials as Load Balancers.
Retrieves the configured Network 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 @@ -1814,9 +1814,9 @@ def get_quota_with_http_info(
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> ApiResponse[GetQuotaResponse]:
"""Get the quota of Load Balancers in a project.
"""Get the quota of Network Load Balancers in a project.

Retrieves the configured Load Balancer quota for the project. Limit can be changed via service request. There can be 3 times as many observability credentials as Load Balancers.
Retrieves the configured Network 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 @@ -1882,9 +1882,9 @@ def get_quota_without_preload_content(
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> RESTResponseType:
"""Get the quota of Load Balancers in a project.
"""Get the quota of Network Load Balancers in a project.

Retrieves the configured Load Balancer quota for the project. Limit can be changed via service request. There can be 3 times as many observability credentials as Load Balancers.
Retrieves the configured Network Load Balancer quota for the project. Limit can be changed via service request.

:param project_id: (required)
:type project_id: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ 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=1000000, strict=True, ge=-1)]] = Field(
default=None,
description="The maximum number of load balancing servers in this project. Unlimited if set to -1.",
description="The maximum number of load balancing servers in this project.",
alias="maxLoadBalancers",
)
project_id: Optional[UUID] = Field(default=None, description="Project identifier", alias="projectId")
Expand Down
Loading