From 07a316cb4b17db7db0fc9d838b1c889a2a9afcfd Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Fri, 7 Nov 2025 11:32:05 +0000 Subject: [PATCH 1/2] Generate alb --- services/alb/src/stackit/alb/models/listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/alb/src/stackit/alb/models/listener.py b/services/alb/src/stackit/alb/models/listener.py index 1cd549de4..08bd1705e 100644 --- a/services/alb/src/stackit/alb/models/listener.py +++ b/services/alb/src/stackit/alb/models/listener.py @@ -45,7 +45,7 @@ class Listener(BaseModel): ) waf_config_name: Optional[Annotated[str, Field(strict=True)]] = Field( default=None, - description='Enable Web Application Firewall (WAF), referenced to a by name. See "Application Load Balancer - Web Application Firewall API" for more information.', + description='Enable Web Application Firewall (WAF), referenced by name. See "Application Load Balancer - Web Application Firewall API" for more information.', alias="wafConfigName", ) __properties: ClassVar[List[str]] = ["http", "https", "name", "port", "protocol", "wafConfigName"] From aea98e14991aef92723d72b4ed15c67c1949f28d Mon Sep 17 00:00:00 2001 From: Marcel Jacek Date: Fri, 7 Nov 2025 17:11:04 +0100 Subject: [PATCH 2/2] add changelog entries --- CHANGELOG.md | 2 ++ services/alb/CHANGELOG.md | 3 +++ services/alb/pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e46ee1a2..d9eb065fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ - New Loki model classes: `LokiLogSinkCredentials`, `LokiLogSinkCreate`, `LokiLogSinkPatch` - New Backend model classes: `HttpBackendCreate`, `BucketBackendCreate`, `BucketBackend`, `BucketBackendPatch`, `CreateDistributionPayloadBackend`, `ConfigPatchBackend`, `ConfigBackend` - Other new model classes: `BucketCredentials` +- `alb` [v0.6.1](services/alb/CHANGELOG.md#v061) + - **Docs:** Update description of field `WafConfigName` in `Listener` model ## Release (2025-10-29) - `stackitmarketplace`: [v1.15.0](services/stackitmarketplace/CHANGELOG.md#v1150) diff --git a/services/alb/CHANGELOG.md b/services/alb/CHANGELOG.md index 8d0f1e904..6b66ba459 100644 --- a/services/alb/CHANGELOG.md +++ b/services/alb/CHANGELOG.md @@ -1,3 +1,6 @@ +## v0.6.1 +- **Docs:** Update description of field `WafConfigName` in `Listener` model + ## v0.6.0 - **Feature:** Add attribute `labels` to `LoadBalancer`, `CreateLoadBalancerPayload` and `UpdateLoadBalancerPayload` model classes - **Feature:** Add attribute `waf_config_name` to `Listener` model class diff --git a/services/alb/pyproject.toml b/services/alb/pyproject.toml index 7142f5ff2..ee8a8f4f7 100644 --- a/services/alb/pyproject.toml +++ b/services/alb/pyproject.toml @@ -3,7 +3,7 @@ name = "stackit-alb" [tool.poetry] name = "stackit-alb" -version = "v0.6.0" +version = "v0.6.1" authors = [ "STACKIT Developer Tools ", ]