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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Release (2026-MM-DD)

- `postgresflex`:
- [v1.12.0](services/postgresflex/CHANGELOG.md#v1120)
- **Breaking Change:** The `v3api` replaces the `v2api`.
- `v3api`: **New:** New package which can be used for communication with the postgresflex v3 API
- `v2api`: **Deprecated:** `v2api` is deprecated, use instead `v3api`
- `v3beta1api`: **Deprecated:** `v3beta1api` is deprecated, use instead `v3api`

## Release (2026-07-21)

- `alb`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"

"github.com/stackitcloud/stackit-sdk-go/core/utils"
postgresflex "github.com/stackitcloud/stackit-sdk-go/services/postgresflex/v3beta1api"
"github.com/stackitcloud/stackit-sdk-go/services/postgresflex/v3beta1api/wait"
postgresflex "github.com/stackitcloud/stackit-sdk-go/services/postgresflex/v3api"
"github.com/stackitcloud/stackit-sdk-go/services/postgresflex/v3api/wait"
)

func main() {
Expand All @@ -16,7 +16,7 @@ func main() {
region = "eu01" // Specify the region
// Specify instance configuration options
version = "VERSION"
// You can find a valid flavorId, by calling this API https://docs.api.stackit.cloud/documentation/postgres-flex-service/version/v3alpha1#tag/Flavor/operation/getFlavorsRequest
// You can find a valid flavorId, by calling this API https://docs.api.stackit.cloud/documentation/postgres-flex-service/version/v3#tag/Flavor/operation/getFlavorsRequest
// or using postgresflexClient.DefaultAPI.ListFlavors(ctx, projectId, region).Execute()
flavorId = "FLAVOR_ID"
)
Expand Down
81 changes: 0 additions & 81 deletions examples/postgresflex/v2/postgresflex.go

This file was deleted.

6 changes: 6 additions & 0 deletions services/postgresflex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.12.0
- **Breaking Change:** The `v3api` replaces the `v2api`.
- `v3api`: **New:** New package which can be used for communication with the postgresflex v3 API
- `v2api`: **Deprecated:** `v2api` is deprecated, use instead `v3api`
- `v3beta1api`: **Deprecated:** `v3beta1api` is deprecated, use instead `v3api`

## v1.11.0
- `v3beta1api`: **New:** New package which can be used for communication with the PostgreSQL Flex v3beta1 API
- `v1api`: **Deprecated:** `v1api` is deprecated, use instead `v2api`
Expand Down
2 changes: 1 addition & 1 deletion services/postgresflex/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.11.0
v1.12.0
Loading
Loading