Skip to content

Commit fab2c83

Browse files
Generator: Update SDK /services/alb (#2520)
## v0.6.1 - **Docs:** Update description of field `WafConfigName` in `Listener` model
1 parent 6c1f343 commit fab2c83

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
- New Loki model classes: `LokiLogSinkCredentials`, `LokiLogSinkCreate`, `LokiLogSinkPatch`
2323
- New Backend model classes: `HttpBackendCreate`, `BucketBackendCreate`, `BucketBackend`, `BucketBackendPatch`, `CreateDistributionPayloadBackend`, `ConfigPatchBackend`, `ConfigBackend`
2424
- Other new model classes: `BucketCredentials`
25+
- `alb` [v0.6.1](services/alb/CHANGELOG.md#v061)
26+
- **Docs:** Update description of field `WafConfigName` in `Listener` model
2527

2628
## Release (2025-10-29)
2729
- `stackitmarketplace`: [v1.15.0](services/stackitmarketplace/CHANGELOG.md#v1150)

services/alb/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.6.1
2+
- **Docs:** Update description of field `WafConfigName` in `Listener` model
3+
14
## v0.6.0
25
- **Feature:** Add attribute `labels` to `LoadBalancer`, `CreateLoadBalancerPayload` and `UpdateLoadBalancerPayload` model classes
36
- **Feature:** Add attribute `waf_config_name` to `Listener` model class

services/alb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-alb"
33

44
[tool.poetry]
55
name = "stackit-alb"
6-
version = "v0.6.0"
6+
version = "v0.6.1"
77
authors = [
88
"STACKIT Developer Tools <[email protected]>",
99
]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Listener(BaseModel):
4545
)
4646
waf_config_name: Optional[Annotated[str, Field(strict=True)]] = Field(
4747
default=None,
48-
description='Enable Web Application Firewall (WAF), referenced to a by name. See "Application Load Balancer - Web Application Firewall API" for more information.',
48+
description='Enable Web Application Firewall (WAF), referenced by name. See "Application Load Balancer - Web Application Firewall API" for more information.',
4949
alias="wafConfigName",
5050
)
5151
__properties: ClassVar[List[str]] = ["http", "https", "name", "port", "protocol", "wafConfigName"]

0 commit comments

Comments
 (0)