Skip to content

Commit 0e2bfa4

Browse files
authored
feat: adjust waiters with new enums (#2188)
* Generate sdk * adjust waiters * add changelogs
1 parent 973a433 commit 0e2bfa4

File tree

195 files changed

+12859
-1121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+12859
-1121
lines changed

CHANGELOG.md

Lines changed: 51 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,54 @@
1-
## Release (2025-XX-XX)
2-
- `stackitmarketplace`: [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-13)
3-
- **Breaking Change:** Added organization id to `VendorSubscription`
4-
- `ske`: [v0.22.4](services/ske/CHANGELOG.md#v0224-2025-05-13)
5-
- **Feature:** Added `ClusterError`
6-
1+
## Release (2025-xx-xx)
2+
- `alb`: [v0.3.0](services/alb/CHANGELOG.md#v030-2025-05-14)
3+
- **Breaking change:** Introduce typed enum constants for status attributes
4+
- `cdn`: [v1.1.0](services/cdn/CHANGELOG.md#v110-2025-05-14)
5+
- **Breaking change:** Introduce typed enum constants for status attributes
6+
- `dns`: [v0.14.0](services/dns/CHANGELOG.md#v0140-2025-05-14)
7+
- **Breaking change:** Introduce typed enum constants for status attributes
8+
- `git`: [v0.4.0](services/git/CHANGELOG.md#v040-2025-05-14)
9+
- **Breaking change:** Introduce typed enum constants for status attributes
10+
- `kms`: [v0.1.0](services/kms/CHANGELOG.md#v010-2025-05-14)
11+
- **Breaking change:** Introduce typed enum constants for status attributes
12+
- `lbapplication`: [v0.4.0](services/lbapplication/CHANGELOG.md#v040-2025-05-14)
13+
- **Breaking change:** Introduce typed enum constants for status attributes
14+
- `loadbalancer`: [v1.1.0](services/loadbalancer/CHANGELOG.md#v110-2025-05-14)
15+
- **Breaking change:** Introduce typed enum constants for status attributes
16+
- `logme`: [v0.23.0](services/logme/CHANGELOG.md#v0230-2025-05-14)
17+
- **Breaking change:** Introduce typed enum constants for status attributes
18+
- `mariadb`: [v0.23.0](services/mariadb/CHANGELOG.md#v0230-2025-05-14)
19+
- **Breaking change:** Introduce typed enum constants for status attributes
20+
- `modelserving`: [v0.3.0](services/modelserving/CHANGELOG.md#v030-2025-05-14)
21+
- **Breaking change:** Introduce typed enum constants for status attributes
22+
- `mongodbflex`: [v1.1.0](services/mongodbflex/CHANGELOG.md#v110-2025-05-14)
23+
- **Breaking change:** Introduce typed enum constants for status attributes
24+
- `observability`: [v0.6.0](services/observability/CHANGELOG.md#v060-2025-05-14)
25+
- **Breaking change:** Introduce typed enum constants for status attributes
26+
- `opensearch`: [v0.22.0](services/opensearch/CHANGELOG.md#v0220-2025-05-14)
27+
- **Breaking change:** Introduce typed enum constants for status attributes
28+
- `rabbitmq`: [v0.23.0](services/rabbitmq/CHANGELOG.md#v0230-2025-05-14)
29+
- **Breaking change:** Introduce typed enum constants for status attributes
30+
- `redis`: [v0.23.0](services/redis/CHANGELOG.md#v0230-2025-05-14)
31+
- **Breaking change:** Introduce typed enum constants for status attributes
32+
- `resourcemanager`: [v0.14.0](services/resourcemanager/CHANGELOG.md#v0140-2025-05-14)
33+
- **Breaking change:** Introduce typed enum constants for status attributes
34+
- `runcommand`: [v1.1.0](services/runcommand/CHANGELOG.md#v110-2025-05-14)
35+
- **Breaking change:** Introduce typed enum constants for status attributes
36+
- `serverbackup`: [v1.1.0](services/serverbackup/CHANGELOG.md#v110-2025-05-14)
37+
- **Breaking change:** Introduce typed enum constants for status attributes
38+
- `serviceaccount`: [v0.7.0](services/serviceaccount/CHANGELOG.md#v070-2025-05-14)
39+
- **Breaking change:** Introduce typed enum constants for status attributes
40+
- `serviceenablement`: [v1.1.0](services/serviceenablement/CHANGELOG.md#v110-2025-05-14)
41+
- **Breaking change:** Introduce typed enum constants for status attributes
42+
- `ske`:
43+
- [v0.23.0](services/ske/CHANGELOG.md#v0230-2025-05-14)
44+
- **Breaking change:** Introduce typed enum constants for status attributes
45+
- [v0.22.4](services/ske/CHANGELOG.md#v0224-2025-05-13)
46+
- **Feature:** Added `ClusterError`
47+
- `stackitmarketplace`:
48+
- [v1.2.0](services/stackitmarketplace/CHANGELOG.md#v120-2025-05-14)
49+
- **Breaking change:** Introduce typed enum constants for status attributes
50+
- [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-13)
51+
- **Breaking Change:** Added organization id to `VendorSubscription`
752

853
## Release (2025-05-09)
954
- `resourcemanager`:

examples/loadbalancer/loadbalancer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ func main() {
4545
Networks: &[]loadbalancer.Network{
4646
{
4747
NetworkId: utils.Ptr("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"),
48-
Role: utils.Ptr("1"),
48+
Role: utils.Ptr(loadbalancer.NETWORKROLE_LISTENERS_AND_TARGETS),
4949
},
5050
},
5151
Listeners: &[]loadbalancer.Listener{
5252
{
5353
DisplayName: utils.Ptr("example-listener"),
5454
Port: utils.Ptr(int64(1)),
55-
Protocol: utils.Ptr("1"),
55+
Protocol: utils.Ptr(loadbalancer.LISTENERPROTOCOL_TCP),
5656
TargetPool: utils.Ptr("example-target-pool"),
5757
},
5858
},

services/alb/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.3.0 (2025-05-14)
2+
- **Breaking change:** Introduce typed enum constants for status attributes
3+
14
## v0.2.3 (2025-05-09)
25
- **Feature:** Update user-agent header
36

services/alb/model_create_load_balancer_payload.go

Lines changed: 111 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/alb/model_listener.go

Lines changed: 107 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)