Skip to content

Generator: Update SDK /services/resourcemanager #1245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Release (2025-XX-YY)
- `resourcemanager`: [v0.5.0](services/resourcemanager/CHANGELOG.md#v050-2025-06-04)
- **Feature:** Delete Organization labels using the new method `DeleteOrganizationLabels`
- **Feature:** Delete Project labels using the new method `DeleteProjectLabels`
- **Feature:** List folders using the new method `ListFolders`
- **Feature:** Partial Update Organization using the new method `PartialUpdateOrganization`

## Release (2025-06-03)

- `loadbalancer`: [v0.2.4](services/loadbalancer/CHANGELOG.md#v024-2025-06-02)
Expand Down
6 changes: 6 additions & 0 deletions services/resourcemanager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.5.0 (2025-06-04)
- **Feature:** Delete Organization labels using the new method `DeleteOrganizationLabels`
- **Feature:** Delete Project labels using the new method `DeleteProjectLabels`
- **Feature:** List folders using the new method `ListFolders`
- **Feature:** Partial Update Organization using the new method `PartialUpdateOrganization`

## v0.4.0 (2025-05-14)
- **Breaking change:** Fields `ContainerParentId` and `ParentId` are no longer required in `ParentListInner`

Expand Down
2 changes: 1 addition & 1 deletion services/resourcemanager/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-resourcemanager"

[tool.poetry]
name = "stackit-resourcemanager"
version = "v0.4.0"
version = "v0.5.0"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
)
from stackit.resourcemanager.models.get_project_response import GetProjectResponse
from stackit.resourcemanager.models.lifecycle_state import LifecycleState
from stackit.resourcemanager.models.list_folders_response import ListFoldersResponse
from stackit.resourcemanager.models.list_folders_response_items_inner import (
ListFoldersResponseItemsInner,
)
from stackit.resourcemanager.models.list_organizations_response import (
ListOrganizationsResponse,
)
Expand All @@ -56,6 +60,9 @@
from stackit.resourcemanager.models.partial_update_folder_payload import (
PartialUpdateFolderPayload,
)
from stackit.resourcemanager.models.partial_update_organization_payload import (
PartialUpdateOrganizationPayload,
)
from stackit.resourcemanager.models.partial_update_project_payload import (
PartialUpdateProjectPayload,
)
Expand Down
Loading
Loading