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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,24 @@
- **Feature:** New model struct `Audit`
- **Feature:** Add Audit (type Audit) field to model struct `CreateOrUpdateClusterPayload`
- `sqlserverflex`:
- [v1.15.0](services/sqlserverflex/CHANGELOG.md#v1150)
- `v3beta2api`:
- **Breaking change:** Rename methods:
- `GetFlavors` renamed to `ListFlavors`
- `GetCollations` renamed to `ListCollations`
- `GetStorages` renamed to `ListStorages`
- `GetVersions` renamed to `ListVersions`
- `ProtectInstance` renamed to `UpdateInstanceProtection`
- `UpdateInstancePartially` renamed to `PartialUpdateInstance`
- **Breaking change:** Rename structs:
- `GetFlavorsResponse` renamed to `ListFlavorsResponse`
- `GetCollationsResponse` renamed to `ListCollationsResponse`
- `GetStoragesResponse` renamed to `ListStoragesResponse`
- `GetVersionsResponse` renamed to `ListVersionsResponse`
- `UpdateInstancePartiallyPayload` renamed to `PartialUpdateInstancePayload`
- `UpdateInstancePartiallyPayloadNetwork` renamed to `PartialUpdateInstancePayloadNetwork`
- `ProtectInstanceResponse` renamed to `UpdateInstanceProtectionResponse`
- `ProtectInstancePayload` renamed to `UpdateInstanceProtectionPayload`
- [v1.14.0](services/sqlserverflex/CHANGELOG.md#v1140)
- `v3beta2api`: **New:** New package which can be used for communication with the sqlserverflex v3beta2 API
- `v1api`: **Deprecated:** `v1api` is deprecated, use instead `v2api`
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlserverflex/v3beta2/sqlserverflex_v3beta2.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func main() {
// Specify instance configuration options
version = sqlserverflex.INSTANCEVERSION__2022
// You can find a valid flavorId, by calling this API https://docs.api.stackit.cloud/documentation/mssql-flex-service/version/v3beta2#tag/Flavors
// or using sqlserverflexClient.DefaultAPI.GetFlavors(ctx, projectId, region).Execute()
// or using sqlserverflexClient.DefaultAPI.ListFlavors(ctx, projectId, region).Execute()
flavorId = "FLAVOR_ID"
)

Expand Down
19 changes: 19 additions & 0 deletions services/sqlserverflex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## v1.15.0
- `v3beta2api`:
- **Breaking change:** Rename methods:
- `GetFlavors` renamed to `ListFlavors`
- `GetCollations` renamed to `ListCollations`
- `GetStorages` renamed to `ListStorages`
- `GetVersions` renamed to `ListVersions`
- `ProtectInstance` renamed to `UpdateInstanceProtection`
- `UpdateInstancePartially` renamed to `PartialUpdateInstance`
- **Breaking change:** Rename structs:
- `GetFlavorsResponse` renamed to `ListFlavorsResponse`
- `GetCollationsResponse` renamed to `ListCollationsResponse`
- `GetStoragesResponse` renamed to `ListStoragesResponse`
- `GetVersionsResponse` renamed to `ListVersionsResponse`
- `UpdateInstancePartiallyPayload` renamed to `PartialUpdateInstancePayload`
- `UpdateInstancePartiallyPayloadNetwork` renamed to `PartialUpdateInstancePayloadNetwork`
- `ProtectInstanceResponse` renamed to `UpdateInstanceProtectionResponse`
- `ProtectInstancePayload` renamed to `UpdateInstanceProtectionPayload`

## v1.14.0
- `v3beta2api`: **New:** New package which can be used for communication with the sqlserverflex v3beta2 API
- `v1api`: **Deprecated:** `v1api` is deprecated, use instead `v2api`
Expand Down
2 changes: 1 addition & 1 deletion services/sqlserverflex/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.14.0
v1.15.0
2 changes: 1 addition & 1 deletion services/sqlserverflex/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9062b80c83aedd5f1885726c3a5c73ed7c7e9c2c
eeac709b40abdf42e3a23fe2992395cc03565a88
Loading
Loading