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
57 changes: 51 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,54 @@
## Release (2025-XX-XX)
- `stackitmarketplace`: [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-13)
- **Breaking Change:** Added organization id to `VendorSubscription`
- `ske`: [v0.22.4](services/ske/CHANGELOG.md#v0224-2025-05-13)
- **Feature:** Added `ClusterError`

## Release (2025-xx-xx)
- `alb`: [v0.3.0](services/alb/CHANGELOG.md#v030-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `cdn`: [v1.1.0](services/cdn/CHANGELOG.md#v110-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `dns`: [v0.14.0](services/dns/CHANGELOG.md#v0140-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `git`: [v0.4.0](services/git/CHANGELOG.md#v040-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `kms`: [v0.1.0](services/kms/CHANGELOG.md#v010-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `lbapplication`: [v0.4.0](services/lbapplication/CHANGELOG.md#v040-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `loadbalancer`: [v1.1.0](services/loadbalancer/CHANGELOG.md#v110-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `logme`: [v0.23.0](services/logme/CHANGELOG.md#v0230-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `mariadb`: [v0.23.0](services/mariadb/CHANGELOG.md#v0230-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `modelserving`: [v0.3.0](services/modelserving/CHANGELOG.md#v030-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `mongodbflex`: [v1.1.0](services/mongodbflex/CHANGELOG.md#v110-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `observability`: [v0.6.0](services/observability/CHANGELOG.md#v060-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `opensearch`: [v0.22.0](services/opensearch/CHANGELOG.md#v0220-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `rabbitmq`: [v0.23.0](services/rabbitmq/CHANGELOG.md#v0230-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `redis`: [v0.23.0](services/redis/CHANGELOG.md#v0230-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `resourcemanager`: [v0.14.0](services/resourcemanager/CHANGELOG.md#v0140-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `runcommand`: [v1.1.0](services/runcommand/CHANGELOG.md#v110-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `serverbackup`: [v1.1.0](services/serverbackup/CHANGELOG.md#v110-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `serviceaccount`: [v0.7.0](services/serviceaccount/CHANGELOG.md#v070-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `serviceenablement`: [v1.1.0](services/serviceenablement/CHANGELOG.md#v110-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `ske`:
- [v0.23.0](services/ske/CHANGELOG.md#v0230-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- [v0.22.4](services/ske/CHANGELOG.md#v0224-2025-05-13)
- **Feature:** Added `ClusterError`
- `stackitmarketplace`:
- [v1.2.0](services/stackitmarketplace/CHANGELOG.md#v120-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-13)
- **Breaking Change:** Added organization id to `VendorSubscription`

## Release (2025-05-09)
- `resourcemanager`:
Expand Down
4 changes: 2 additions & 2 deletions examples/loadbalancer/loadbalancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ func main() {
Networks: &[]loadbalancer.Network{
{
NetworkId: utils.Ptr("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"),
Role: utils.Ptr("1"),
Role: utils.Ptr(loadbalancer.NETWORKROLE_LISTENERS_AND_TARGETS),
},
},
Listeners: &[]loadbalancer.Listener{
{
DisplayName: utils.Ptr("example-listener"),
Port: utils.Ptr(int64(1)),
Protocol: utils.Ptr("1"),
Protocol: utils.Ptr(loadbalancer.LISTENERPROTOCOL_TCP),
TargetPool: utils.Ptr("example-target-pool"),
},
},
Expand Down
3 changes: 3 additions & 0 deletions services/alb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.3.0 (2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes

## v0.2.3 (2025-05-09)
- **Feature:** Update user-agent header

Expand Down
115 changes: 111 additions & 4 deletions services/alb/model_create_load_balancer_payload.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

111 changes: 107 additions & 4 deletions services/alb/model_listener.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading