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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@
- Bump STACKIT SDK core module from `v0.20.0` to `v0.20.1`
- [v0.1.0](services/logs/CHANGELOG.md#v010)
- **New:** API for logs service
- `kms`: [v1.2.0](services/kms/CHANGELOG.md#v120)
- Set fields `Description` and `ImportOnly` to required in response struct `Key`
- **Breaking change:** Constructor `NewKey` has new parameters `description` and `importOnly`
- **Breaking change:** Remove methods `HasDescription` and `GetImportOnly` in `Key` model
- Set field `Description` to required in response struct `KeyRing`
- **Breaking change:** Constructor `NewKeyRing` has new parameter `description`
- **Breaking change:** Remove method `HasDescription` in `KeyRing` model
- Set field `Disabled` to required in response struct `Version`
- **Breaking change:** Constructor `NewVersion` has new parameter `disabled`
- **Breaking change:** Remove method `HasDisabled` in `Version` model
- Set fields `Description` and `PublicKey` to required in response struct `WrappingKey`
- **Breaking change:** Constructor `NewWrappingKey` has new parameters `description` and `publicKey`
- **Breaking change:** Remove methods `HasDescription` and `HasPublicKey` in `WrappingKey` model
- `sqlserverflex`: [v1.4.0](services/sqlserverflex/CHANGELOG.md#v140)
- **Breaking change:** Add region parameter in `ListMetrics` method. Previously the method failed, because the region parameter was missing
- `mongodbflex`: [v1.5.5](services/mongodbflex/CHANGELOG.md#v155)
Expand Down
14 changes: 14 additions & 0 deletions services/kms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v1.2.0
- Set fields `Description` and `ImportOnly` to required in response struct `Key`
- **Breaking change:** Constructor `NewKey` has new parameters `description` and `importOnly`
- **Breaking change:** Remove methods `HasDescription` and `GetImportOnly` in `Key` model
- Set field `Description` to required in response struct `KeyRing`
- **Breaking change:** Constructor `NewKeyRing` has new parameter `description`
- **Breaking change:** Remove method `HasDescription` in `KeyRing` model
- Set field `Disabled` to required in response struct `Version`
- **Breaking change:** Constructor `NewVersion` has new parameter `disabled`
- **Breaking change:** Remove method `HasDisabled` in `Version` model
- Set fields `Description` and `PublicKey` to required in response struct `WrappingKey`
- **Breaking change:** Constructor `NewWrappingKey` has new parameters `description` and `publicKey`
- **Breaking change:** Remove methods `HasDescription` and `HasPublicKey` in `WrappingKey` model

## v1.1.2
- Bump STACKIT SDK core module from `v0.20.0` to `v0.20.1`

Expand Down
2 changes: 1 addition & 1 deletion services/kms/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.2
v1.2.0
46 changes: 19 additions & 27 deletions services/kms/model_key.go

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

24 changes: 10 additions & 14 deletions services/kms/model_key_ring.go

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

24 changes: 10 additions & 14 deletions services/kms/model_version.go

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

45 changes: 18 additions & 27 deletions services/kms/model_wrapping_key.go

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

Loading