Skip to content

Commit 057ed74

Browse files
Generator: Update SDK /services/kms (#6058)
Co-authored-by: Ruben Hoenle <Ruben.Hoenle@digits.schwarz>
1 parent 6798185 commit 057ed74

File tree

7 files changed

+48
-27
lines changed

7 files changed

+48
-27
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
- **Breaking change:** Remove enum `CRINAME_DOCKER`
1717
- **Breaking change:** Remove `RuntimeError`
1818
- **Docs:** Extend description of `AccessScope`
19+
- `kms`: [v1.6.0](services/kms/CHANGELOG.md#v160)
20+
- `v1api`: **Breaking change:** Change type of field `PublicKey` from `string` to `*string` in `WrappingKey` model struct
21+
- Deprecated SDK layer in root of the module: The field `PublicKey` in the `WrappingKey` model struct is not marked as required anymore
1922

2023
## Release (2026-03-27)
2124
- `alb`:
@@ -93,7 +96,7 @@
9396
- **Dependencies:** Bump resourcemanager from `v0.19.0` to `v0.20.1`
9497
- `intake`: [v0.7.1](services/intake/CHANGELOG.md#v071)
9598
- **Dependencies:** Bump STACKIT SDK core module from `v0.22.0` to `v0.23.0`
96-
- `kms`: [v1.5.1](services/kms/CHANGELOG.md#v151)
99+
- `kms`: [v1.5.1](services/kms/CHANGELOG.md#v151)
97100
- **Dependencies:** Bump STACKIT SDK core module from `v0.22.0` to `v0.23.0`
98101
- `loadbalancer`:
99102
- [v1.10.1](services/loadbalancer/CHANGELOG.md#v1101)

services/kms/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.6.0
2+
- `v1api`: **Breaking change:** Change type of field `PublicKey` from `string` to `*string` in `WrappingKey` model struct
3+
- Deprecated SDK layer in root of the module: The field `PublicKey` in the `WrappingKey` model struct is not marked as required anymore
4+
15
## v1.5.1
26
- **Dependencies:** Bump STACKIT SDK core module from `v0.22.0` to `v0.23.0`
37

services/kms/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.5.1
1+
v1.6.0

services/kms/model_wrapping_key.go

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

services/kms/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
779c34469d663919ed700f2c69487eb5cccf70f3

services/kms/v1api/model_wrapping_key.go

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

services/kms/v1api/wait/wait_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ func fixtureWrappingKey(state string) *kms.WrappingKey {
122122
Purpose: kms.WRAPPINGPURPOSE_WRAP_SYMMETRIC_KEY,
123123
State: state,
124124
ExpiresAt: testDate,
125-
PublicKey: testPublicKey,
125+
PublicKey: utils.Ptr(testPublicKey),
126126
}
127127
}
128128

0 commit comments

Comments
 (0)