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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
- [v1.3.0](services/opensearch/CHANGELOG.md#v130)
- **Breaking Change/Fix:** `create_backup` operation now returns `CreateBackupResponseItem` instead of `List[CreateBackupResponseItem]`
The return type now correctly models the actual JSON response, this operation was broken beforehand.
- `postgresflex`:
- [v1.6.0](services/postgresflex/CHANGELOG.md#v160)
- **Breaking Change:** `class` attribute in `CloneInstanceOverrides` and `StorageCreate` model is now required (previously optional)
- `rabbitmq`:
- [v1.3.0](services/rabbitmq/CHANGELOG.md#v130)
- **Breaking Change/Fix:** `create_backup` operation now returns `CreateBackupResponseItem` instead of `List[CreateBackupResponseItem]`
Expand Down
3 changes: 3 additions & 0 deletions services/postgresflex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.6.0
- **Breaking Change:** `class` attribute in `CloneInstanceOverrides` and `StorageCreate` model is now required (previously optional)

## v1.5.0
- **Breaking Change:** The v3 API replaces the v2 API.

Expand Down
2 changes: 1 addition & 1 deletion services/postgresflex/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c09e232a83532c75ca1041153e3ebc7ce2d50eb6
da4701b7dbe20e984aef89711bb9ba716e19fcba
2 changes: 1 addition & 1 deletion services/postgresflex/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-postgresflex"
version = "v1.5.0"
version = "v1.6.0"
description = "STACKIT PostgreSQL Flex API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.10,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ class CloneInstanceOverrides(BaseModel):
CloneInstanceOverrides
""" # noqa: E501

var_class: Optional[StrictStr] = Field(
default=None, description="The storage class for the storage.", alias="class"
)
var_class: StrictStr = Field(description="The storage class for the storage.", alias="class")
name: Optional[Annotated[str, Field(min_length=3, strict=True, max_length=63)]] = Field(
default=None,
description="The name of the cloned instance. If not provided, the default naming behavior of appending '-clone' to the source instance name is used.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ class StorageCreate(BaseModel):
The object containing information about the storage size and class.
""" # noqa: E501

var_class: Optional[StrictStr] = Field(
default=None, description="The storage class for the storage.", alias="class"
)
var_class: StrictStr = Field(description="The storage class for the storage.", alias="class")
size: StrictInt = Field(description="The storage size in Gigabytes.")
__properties: ClassVar[List[str]] = ["class", "size"]

Expand Down
2 changes: 1 addition & 1 deletion services/postgresflex/uv.lock

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

Loading