Skip to content

Commit 62a0f12

Browse files
authored
Merge branch 'main' into oas-bot-20344843143/kms
2 parents f26d0be + 83cb15a commit 62a0f12

File tree

16 files changed

+46
-25
lines changed

16 files changed

+46
-25
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## Release (2025-XX-YY)
2-
- `sfs`: [v0.1.0](services/sfs/CHANGELOG.md#v010)
3-
- **New**: STACKIT File Storage (SFS) service
2+
- `sfs`:
3+
- [v0.2.0](services/sfs/CHANGELOG.md)
4+
- **Breaking change:** Remove region configuration in `APIClient`
5+
- [v0.1.0](services/sfs/CHANGELOG.md#v010)
6+
- **New**: STACKIT File Storage (SFS) service
47
- `scf`:
58
- [v0.4.0](services/scf/CHANGELOG.md#v040)
69
- **Feature:** Add new model structs `SpaceWithIsolationSegment` and `SpaceWithIsolationSegmentAllOf`
@@ -35,6 +38,10 @@
3538
- Set fields `Description` and `PublicKey` to required in response struct `WrappingKey`
3639
- **Breaking change:** Constructor `NewWrappingKey` has new parameters `description` and `publicKey`
3740
- **Breaking change:** Remove methods `HasDescription` and `HasPublicKey` in `WrappingKey` model
41+
- `sqlserverflex`: [v1.4.0](services/sqlserverflex/CHANGELOG.md#v140)
42+
- **Breaking change:** Add region parameter in `ListMetrics` method. Previously the method failed, because the region parameter was missing
43+
- `mongodbflex`: [v1.5.5](services/mongodbflex/CHANGELOG.md#v155)
44+
- **Docs:** Extend description of `Roles` field in `CreateUserPayload`, `PartialUpdateUserPayload`, `UpdateUserPayload` and `User` model
3845

3946
## Release (2025-12-05)
4047
- `alb`:

examples/sfs/resourcepool/resourcepool.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/stackitcloud/stackit-sdk-go/core/config"
98
"github.com/stackitcloud/stackit-sdk-go/core/utils"
109
"github.com/stackitcloud/stackit-sdk-go/services/sfs"
1110
"github.com/stackitcloud/stackit-sdk-go/services/sfs/wait"
@@ -17,7 +16,7 @@ func main() {
1716
region := "eu01"
1817

1918
// Create a new API client, that uses default authentication and configuration
20-
sfsClient, err := sfs.NewAPIClient(config.WithRegion(region))
19+
sfsClient, err := sfs.NewAPIClient()
2120
if err != nil {
2221
fmt.Fprintf(os.Stderr, "[sfs API] Creating API client: %v\n", err)
2322
os.Exit(1)

examples/sfs/share/share.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/stackitcloud/stackit-sdk-go/core/config"
98
"github.com/stackitcloud/stackit-sdk-go/core/utils"
109
"github.com/stackitcloud/stackit-sdk-go/services/sfs"
1110
"github.com/stackitcloud/stackit-sdk-go/services/sfs/wait"
@@ -17,7 +16,7 @@ func main() {
1716
region := "eu01"
1817

1918
// Create a new API client, that uses default authentication and configuration
20-
sfsClient, err := sfs.NewAPIClient(config.WithRegion(region))
19+
sfsClient, err := sfs.NewAPIClient()
2120
if err != nil {
2221
fmt.Fprintf(os.Stderr, "[sfs API] Creating API client: %v\n", err)
2322
os.Exit(1)

services/mongodbflex/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.5.5
2+
- **Docs:** Extend description of `Roles` field in `CreateUserPayload`, `PartialUpdateUserPayload`, `UpdateUserPayload` and `User` model
3+
14
## v1.5.4
25
- Bump STACKIT SDK core module from `v0.20.0` to `v0.20.1`
36

services/mongodbflex/VERSION

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

services/mongodbflex/model_create_user_payload.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mongodbflex/model_partial_update_user_payload.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mongodbflex/model_update_user_payload.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/mongodbflex/model_user.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/sfs/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## v0.2.0
2+
- **Breaking change:** Remove region configuration in `APIClient`
3+
14
## v0.1.0
25
- **New**: STACKIT File Storage (SFS) service

0 commit comments

Comments
 (0)