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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
- Set fields `description` to optional in for `Key`, `KeyRing` and `WrappingKey`
- `logs`: [v0.2.0](services/logs/CHANGELOG.md#v020)
- **Feature:** Switch from `v1beta` version to `v1` version of the API.
- `sfs`: [v0.2.0](services/sfs/CHANGELOG.md#v020)
- **Feature:** Switch from `v1beta` API version to `v1` version.
- **Breaking change:** Remove `ListSnapshotSchedules` method
- **Breaking change:** Remove field `SnapshotScheduleName` from `CreateResourcePoolPayload` and `UpdateResourcePoolPayload` model
- **Breaking change:** Remove field `SnapshotSchedule` from `CreateResourcePoolResponseResourcePool`, `GetResourcePoolResponseResourcePool`, `UpdateResourcePoolResponseResourcePoolGetStateRetType` and `ResourcePool` model


## Release (2026-01-27)
- `serverbackup`: [v1.1.1](services/serverbackup/CHANGELOG.md#v111)
Expand Down
6 changes: 6 additions & 0 deletions services/sfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
## v0.2.0
- **Feature:** Switch from `v1beta` API version to `v1` version.
- **Breaking change:** Remove `ListSnapshotSchedules` method
- **Breaking change:** Remove field `SnapshotScheduleName` from `CreateResourcePoolPayload` and `UpdateResourcePoolPayload` model
- **Breaking change:** Remove field `SnapshotSchedule` from `CreateResourcePoolResponseResourcePool`, `GetResourcePoolResponseResourcePool`, `UpdateResourcePoolResponseResourcePoolGetStateRetType` and `ResourcePool` model

## v0.1.0
- **New**: STACKIT File Storage (SFS) service
1 change: 1 addition & 0 deletions services/sfs/oas_commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9916269dab33d42aa2f1a5f30c80b954b6c1221f
2 changes: 1 addition & 1 deletion services/sfs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-sfs"

[tool.poetry]
name = "stackit-sfs"
version = "v0.1.0"
version = "v0.2.0"
authors = [
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
]
Expand Down
8 changes: 1 addition & 7 deletions services/sfs/src/stackit/sfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

API used to create and manage NFS Shares.

The version of the OpenAPI document: 1beta.0.0
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -48,7 +48,6 @@
"ListResourcePoolsResponse",
"ListShareExportPoliciesResponse",
"ListSharesResponse",
"ListSnapshotSchedulesResponse",
"PerformanceClass",
"ResourcePool",
"ResourcePoolPerformanceClass",
Expand All @@ -57,7 +56,6 @@
"Share",
"ShareExportPolicy",
"ShareExportPolicyRule",
"SnapshotSchedule",
"Status",
"UpdateResourcePoolPayload",
"UpdateResourcePoolResponse",
Expand Down Expand Up @@ -141,9 +139,6 @@
from stackit.sfs.models.list_shares_response import (
ListSharesResponse as ListSharesResponse,
)
from stackit.sfs.models.list_snapshot_schedules_response import (
ListSnapshotSchedulesResponse as ListSnapshotSchedulesResponse,
)
from stackit.sfs.models.performance_class import PerformanceClass as PerformanceClass
from stackit.sfs.models.resource_pool import ResourcePool as ResourcePool
from stackit.sfs.models.resource_pool_performance_class import (
Expand All @@ -162,7 +157,6 @@
from stackit.sfs.models.share_export_policy_rule import (
ShareExportPolicyRule as ShareExportPolicyRule,
)
from stackit.sfs.models.snapshot_schedule import SnapshotSchedule as SnapshotSchedule
from stackit.sfs.models.status import Status as Status
from stackit.sfs.models.update_resource_pool_payload import (
UpdateResourcePoolPayload as UpdateResourcePoolPayload,
Expand Down
Loading