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 @@ -51,6 +51,9 @@
The return type now correctly models the actual JSON response, this operation was broken beforehand.
- **Deprecation:** Redis service has been deprecated and will be removed after 2027-08-25. Please use the Key Value Store (valkey) service instead.
- `resourcemanager`
- [v0.11.0](services/resourcemanager/CHANGELOG.md#0110)
- Updated pydoc comments of the API client methods
- **Breaking change:** Removal of unused model class `ContainerSearchResult`
- [v0.10.0](services/resourcemanager/CHANGELOG.md#0100)
- **Breaking change:** Labels are nullable now, therefore the `labels` attribute in the `PartialUpdateFolderPayload`, `PartialUpdateOrganizationPayload` and `PartialUpdateProjectPayload` model class changed from `Optional[Dict[str, StrictStr]]` to `Optional[Dict[str, Optional[StrictStr]]]`
- `secretsmanager`:
Expand Down
4 changes: 4 additions & 0 deletions services/resourcemanager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.11.0
- Updated pydoc comments of the API client methods
- **Breaking change:** Removal of unused model class `ContainerSearchResult`

## v0.10.0
- **Breaking change:** Labels are nullable now, therefore the `labels` attribute in the `PartialUpdateFolderPayload`, `PartialUpdateOrganizationPayload` and `PartialUpdateProjectPayload` model class changed from `Optional[Dict[str, StrictStr]]` to `Optional[Dict[str, Optional[StrictStr]]]`

Expand Down
2 changes: 1 addition & 1 deletion services/resourcemanager/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
79a99bf8bc8175f2f384c7636da1fae5f6a9bd60
3fc1363ce4ead752c576a30ee9cf0e1b5836ae35
2 changes: 1 addition & 1 deletion services/resourcemanager/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-resourcemanager"
version = "v0.10.0"
version = "v0.11.0"
description = "Resource Manager 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 @@ -27,7 +27,6 @@
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"ContainerSearchResult",
"CreateFolderPayload",
"CreateProjectPayload",
"ErrorResponse",
Expand Down Expand Up @@ -65,9 +64,6 @@
from stackit.resourcemanager.exceptions import OpenApiException as OpenApiException

# import models into sdk package
from stackit.resourcemanager.models.container_search_result import (
ContainerSearchResult as ContainerSearchResult,
)
from stackit.resourcemanager.models.create_folder_payload import (
CreateFolderPayload as CreateFolderPayload,
)
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
""" # noqa: E501

# import models into model package
from stackit.resourcemanager.models.container_search_result import ContainerSearchResult
from stackit.resourcemanager.models.create_folder_payload import CreateFolderPayload
from stackit.resourcemanager.models.create_project_payload import CreateProjectPayload
from stackit.resourcemanager.models.error_response import ErrorResponse
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion services/resourcemanager/uv.lock

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

Loading