Skip to content
Open
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
2 changes: 1 addition & 1 deletion services/sfs/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
467fe4d305e48699c34835e45fd1c7b486be01d2
32 changes: 32 additions & 0 deletions services/sfs/src/stackit/sfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"CreateLockResponse",
"CreateResourcePoolPayload",
"CreateResourcePoolResponse",
"CreateResourcePoolSnapshotPayload",
Expand All @@ -40,22 +41,30 @@
"Error",
"GetResourcePoolResponse",
"GetResourcePoolSnapshotResponse",
"GetScheduleResponse",
"GetShareExportPolicyResponse",
"GetShareResponse",
"GetSnapshotPolicyResponse",
"GoogleProtobufAny",
"ListPerformanceClassesResponse",
"ListResourcePoolSnapshotsResponse",
"ListResourcePoolsResponse",
"ListSchedulesResponse",
"ListShareExportPoliciesResponse",
"ListSharesResponse",
"ListSnapshotPoliciesResponse",
"PerformanceClass",
"ResourcePool",
"ResourcePoolPerformanceClass",
"ResourcePoolSnapshot",
"ResourcePoolSnapshotPolicy",
"ResourcePoolSpace",
"Schedule",
"Share",
"ShareExportPolicy",
"ShareExportPolicyRule",
"SnapshotPolicy",
"SnapshotPolicySchedule",
"Status",
"UpdateResourcePoolPayload",
"UpdateResourcePoolResponse",
Expand Down Expand Up @@ -83,6 +92,9 @@
from stackit.sfs.exceptions import OpenApiException as OpenApiException

# import models into sdk package
from stackit.sfs.models.create_lock_response import (
CreateLockResponse as CreateLockResponse,
)
from stackit.sfs.models.create_resource_pool_payload import (
CreateResourcePoolPayload as CreateResourcePoolPayload,
)
Expand Down Expand Up @@ -117,10 +129,16 @@
from stackit.sfs.models.get_resource_pool_snapshot_response import (
GetResourcePoolSnapshotResponse as GetResourcePoolSnapshotResponse,
)
from stackit.sfs.models.get_schedule_response import (
GetScheduleResponse as GetScheduleResponse,
)
from stackit.sfs.models.get_share_export_policy_response import (
GetShareExportPolicyResponse as GetShareExportPolicyResponse,
)
from stackit.sfs.models.get_share_response import GetShareResponse as GetShareResponse
from stackit.sfs.models.get_snapshot_policy_response import (
GetSnapshotPolicyResponse as GetSnapshotPolicyResponse,
)
from stackit.sfs.models.google_protobuf_any import (
GoogleProtobufAny as GoogleProtobufAny,
)
Expand All @@ -133,12 +151,18 @@
from stackit.sfs.models.list_resource_pools_response import (
ListResourcePoolsResponse as ListResourcePoolsResponse,
)
from stackit.sfs.models.list_schedules_response import (
ListSchedulesResponse as ListSchedulesResponse,
)
from stackit.sfs.models.list_share_export_policies_response import (
ListShareExportPoliciesResponse as ListShareExportPoliciesResponse,
)
from stackit.sfs.models.list_shares_response import (
ListSharesResponse as ListSharesResponse,
)
from stackit.sfs.models.list_snapshot_policies_response import (
ListSnapshotPoliciesResponse as ListSnapshotPoliciesResponse,
)
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 @@ -147,16 +171,24 @@
from stackit.sfs.models.resource_pool_snapshot import (
ResourcePoolSnapshot as ResourcePoolSnapshot,
)
from stackit.sfs.models.resource_pool_snapshot_policy import (
ResourcePoolSnapshotPolicy as ResourcePoolSnapshotPolicy,
)
from stackit.sfs.models.resource_pool_space import (
ResourcePoolSpace as ResourcePoolSpace,
)
from stackit.sfs.models.schedule import Schedule as Schedule
from stackit.sfs.models.share import Share as Share
from stackit.sfs.models.share_export_policy import (
ShareExportPolicy as ShareExportPolicy,
)
from stackit.sfs.models.share_export_policy_rule import (
ShareExportPolicyRule as ShareExportPolicyRule,
)
from stackit.sfs.models.snapshot_policy import SnapshotPolicy as SnapshotPolicy
from stackit.sfs.models.snapshot_policy_schedule import (
SnapshotPolicySchedule as SnapshotPolicySchedule,
)
from stackit.sfs.models.status import Status as Status
from stackit.sfs.models.update_resource_pool_payload import (
UpdateResourcePoolPayload as UpdateResourcePoolPayload,
Expand Down
Loading
Loading