Skip to content

Commit da1d008

Browse files
committed
fix vpc example, write root changelog
1 parent 1af6e91 commit da1d008

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
## Release (YYYY-MM-DD)
22
- `alb`: [v0.6.0](services/alb/CHANGELOG.md#v060)
33
- **Breaking change:** Remove `v2beta` API
4+
- `iaas`: [v1.3.0](services/iaas/CHANGELOG.md#v130)
5+
- new example for managing `VPCs` with the `v2alpha1api`
6+
- `v1api`
7+
- **Braking Change:** remove deprecated operations: `updateImageScopeLocal`, `updateImageScopePublic`
8+
- **Feature:** add attribute `vtpm` (new model `ServerVTPM`) to model `Server`
9+
- **Feature:** add attribute `availabilityZone` to model `Snapshot`
10+
- `v2alpha1api`
11+
- **Feature:** add operations and models to manage `VPCs`
12+
- `v2api`
13+
- **Feature:** add attribute `vpcNetworkRangeId` to models `NetworkIPv4` `NetworkIPv6`
14+
- **Feature:** add attribute `vpcId` to model `Network`,
15+
- **Feature:** add attribute `vtpm` (new model `ServerVTPM`) to model `Server`,
16+
- **Feature:** add attribute `availabilityZone` to model `Snapshot`,
417

518
## Release (2026-04-28)
619
- `alb`: [v0.5.0](services/alb/CHANGELOG.md#v050)

examples/iaas/src/main/java/cloud/stackit/sdk/iaas/examples/IaaSVPCExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public static void main(String[] args) throws IOException {
192192
region,
193193
r.vpcRoutingTable.getId(),
194194
new AddVPCStaticRoutePayload()
195-
.destination(new AddVPCStaticRoutePayloadDestination(new DestinationCIDRv4().cidrv4("0.0.0.0/0")))
195+
.destination(new AddVPCStaticRoutePayloadDestination(new DestinationCIDRv4().type("cidrv4").value("0.0.0.0/0")))
196196
.nexthop(new AddVPCStaticRoutePayloadNexthop(new NexthopInternet().type("internet")))
197197
);
198198
System.out.println("static route created: " + r.staticRoute.getId());

0 commit comments

Comments
 (0)