diff --git a/services/sfs/oas_commit b/services/sfs/oas_commit index b11b4bcce..0f8ce352b 100644 --- a/services/sfs/oas_commit +++ b/services/sfs/oas_commit @@ -1 +1 @@ -8ccf08fdae6320251259ca695f1e7180eeb21275 +876a48fb56473c7c844baa697906d461c0675f47 diff --git a/services/sfs/src/stackit/sfs/__init__.py b/services/sfs/src/stackit/sfs/__init__.py index 0e0422d2b..2b27b6957 100644 --- a/services/sfs/src/stackit/sfs/__init__.py +++ b/services/sfs/src/stackit/sfs/__init__.py @@ -3,16 +3,17 @@ # flake8: noqa """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 + __version__ = "1.0.0" # Define package exports diff --git a/services/sfs/src/stackit/sfs/api/default_api.py b/services/sfs/src/stackit/sfs/api/default_api.py index f680af49a..6f3679726 100644 --- a/services/sfs/src/stackit/sfs/api/default_api.py +++ b/services/sfs/src/stackit/sfs/api/default_api.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import warnings diff --git a/services/sfs/src/stackit/sfs/api_client.py b/services/sfs/src/stackit/sfs/api_client.py index e63321d7c..3f5763593 100644 --- a/services/sfs/src/stackit/sfs/api_client.py +++ b/services/sfs/src/stackit/sfs/api_client.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import datetime @@ -36,6 +36,7 @@ ApiException, ) + RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]] diff --git a/services/sfs/src/stackit/sfs/api_response.py b/services/sfs/src/stackit/sfs/api_response.py index ca801da0b..b3ba14a1d 100644 --- a/services/sfs/src/stackit/sfs/api_response.py +++ b/services/sfs/src/stackit/sfs/api_response.py @@ -6,6 +6,7 @@ from pydantic import BaseModel, Field, StrictBytes, StrictInt + T = TypeVar("T") diff --git a/services/sfs/src/stackit/sfs/configuration.py b/services/sfs/src/stackit/sfs/configuration.py index 85da7c254..46782a458 100644 --- a/services/sfs/src/stackit/sfs/configuration.py +++ b/services/sfs/src/stackit/sfs/configuration.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import sys @@ -18,6 +18,7 @@ import os + ServerVariablesT = Dict[str, str] diff --git a/services/sfs/src/stackit/sfs/exceptions.py b/services/sfs/src/stackit/sfs/exceptions.py index 54fb1f630..08598cbfe 100644 --- a/services/sfs/src/stackit/sfs/exceptions.py +++ b/services/sfs/src/stackit/sfs/exceptions.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from typing import Any, Optional diff --git a/services/sfs/src/stackit/sfs/models/__init__.py b/services/sfs/src/stackit/sfs/models/__init__.py index b0843bab2..d08b82376 100644 --- a/services/sfs/src/stackit/sfs/models/__init__.py +++ b/services/sfs/src/stackit/sfs/models/__init__.py @@ -2,14 +2,14 @@ # flake8: noqa """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 # import models into model package diff --git a/services/sfs/src/stackit/sfs/models/create_resource_pool_payload.py b/services/sfs/src/stackit/sfs/models/create_resource_pool_payload.py index d8d46a732..14f3f1501 100644 --- a/services/sfs/src/stackit/sfs/models/create_resource_pool_payload.py +++ b/services/sfs/src/stackit/sfs/models/create_resource_pool_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_resource_pool_response.py b/services/sfs/src/stackit/sfs/models/create_resource_pool_response.py index ee965b540..04fa8e631 100644 --- a/services/sfs/src/stackit/sfs/models/create_resource_pool_response.py +++ b/services/sfs/src/stackit/sfs/models/create_resource_pool_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_payload.py b/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_payload.py index 01531c5bd..bb291ebce 100644 --- a/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_payload.py +++ b/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_response.py b/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_response.py index fb7c482fd..224a90e11 100644 --- a/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_response.py +++ b/services/sfs/src/stackit/sfs/models/create_resource_pool_snapshot_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_share_export_policy_payload.py b/services/sfs/src/stackit/sfs/models/create_share_export_policy_payload.py index 8b5725ce4..e6ceee2d5 100644 --- a/services/sfs/src/stackit/sfs/models/create_share_export_policy_payload.py +++ b/services/sfs/src/stackit/sfs/models/create_share_export_policy_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_share_export_policy_request_rule.py b/services/sfs/src/stackit/sfs/models/create_share_export_policy_request_rule.py index 98be9a041..7780c9f8d 100644 --- a/services/sfs/src/stackit/sfs/models/create_share_export_policy_request_rule.py +++ b/services/sfs/src/stackit/sfs/models/create_share_export_policy_request_rule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_share_export_policy_response.py b/services/sfs/src/stackit/sfs/models/create_share_export_policy_response.py index 77dcd3181..f0e8eabc5 100644 --- a/services/sfs/src/stackit/sfs/models/create_share_export_policy_response.py +++ b/services/sfs/src/stackit/sfs/models/create_share_export_policy_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_share_payload.py b/services/sfs/src/stackit/sfs/models/create_share_payload.py index 83297c88c..2ec2cb147 100644 --- a/services/sfs/src/stackit/sfs/models/create_share_payload.py +++ b/services/sfs/src/stackit/sfs/models/create_share_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/create_share_response.py b/services/sfs/src/stackit/sfs/models/create_share_response.py index 497c42d0f..cde9cf3b2 100644 --- a/services/sfs/src/stackit/sfs/models/create_share_response.py +++ b/services/sfs/src/stackit/sfs/models/create_share_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/enable_lock_response.py b/services/sfs/src/stackit/sfs/models/enable_lock_response.py index d9fa2e1b8..a5a7b5b0a 100644 --- a/services/sfs/src/stackit/sfs/models/enable_lock_response.py +++ b/services/sfs/src/stackit/sfs/models/enable_lock_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/error.py b/services/sfs/src/stackit/sfs/models/error.py index 8177bf803..19ffa9cce 100644 --- a/services/sfs/src/stackit/sfs/models/error.py +++ b/services/sfs/src/stackit/sfs/models/error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_lock_response.py b/services/sfs/src/stackit/sfs/models/get_lock_response.py index 26157f8ea..9faab3e0a 100644 --- a/services/sfs/src/stackit/sfs/models/get_lock_response.py +++ b/services/sfs/src/stackit/sfs/models/get_lock_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_resource_pool_response.py b/services/sfs/src/stackit/sfs/models/get_resource_pool_response.py index aad095357..c93de4ea3 100644 --- a/services/sfs/src/stackit/sfs/models/get_resource_pool_response.py +++ b/services/sfs/src/stackit/sfs/models/get_resource_pool_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_resource_pool_snapshot_response.py b/services/sfs/src/stackit/sfs/models/get_resource_pool_snapshot_response.py index cee4a8bdc..6b9389c11 100644 --- a/services/sfs/src/stackit/sfs/models/get_resource_pool_snapshot_response.py +++ b/services/sfs/src/stackit/sfs/models/get_resource_pool_snapshot_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_schedule_response.py b/services/sfs/src/stackit/sfs/models/get_schedule_response.py index b676c5f69..1027f8411 100644 --- a/services/sfs/src/stackit/sfs/models/get_schedule_response.py +++ b/services/sfs/src/stackit/sfs/models/get_schedule_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_share_export_policy_response.py b/services/sfs/src/stackit/sfs/models/get_share_export_policy_response.py index 422c83a99..412e5d4a1 100644 --- a/services/sfs/src/stackit/sfs/models/get_share_export_policy_response.py +++ b/services/sfs/src/stackit/sfs/models/get_share_export_policy_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_share_response.py b/services/sfs/src/stackit/sfs/models/get_share_response.py index bd99cccc5..594338f2c 100644 --- a/services/sfs/src/stackit/sfs/models/get_share_response.py +++ b/services/sfs/src/stackit/sfs/models/get_share_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/get_snapshot_policy_response.py b/services/sfs/src/stackit/sfs/models/get_snapshot_policy_response.py index 47982307c..a991086e3 100644 --- a/services/sfs/src/stackit/sfs/models/get_snapshot_policy_response.py +++ b/services/sfs/src/stackit/sfs/models/get_snapshot_policy_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/google_protobuf_any.py b/services/sfs/src/stackit/sfs/models/google_protobuf_any.py index 370b5f01c..ab842e1a5 100644 --- a/services/sfs/src/stackit/sfs/models/google_protobuf_any.py +++ b/services/sfs/src/stackit/sfs/models/google_protobuf_any.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_performance_classes_response.py b/services/sfs/src/stackit/sfs/models/list_performance_classes_response.py index 78aa75466..0eea95397 100644 --- a/services/sfs/src/stackit/sfs/models/list_performance_classes_response.py +++ b/services/sfs/src/stackit/sfs/models/list_performance_classes_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_resource_pool_snapshots_response.py b/services/sfs/src/stackit/sfs/models/list_resource_pool_snapshots_response.py index dbc0f9db9..b1f79b3c9 100644 --- a/services/sfs/src/stackit/sfs/models/list_resource_pool_snapshots_response.py +++ b/services/sfs/src/stackit/sfs/models/list_resource_pool_snapshots_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_resource_pools_response.py b/services/sfs/src/stackit/sfs/models/list_resource_pools_response.py index 7d9c9a892..ec41d50fb 100644 --- a/services/sfs/src/stackit/sfs/models/list_resource_pools_response.py +++ b/services/sfs/src/stackit/sfs/models/list_resource_pools_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_schedules_response.py b/services/sfs/src/stackit/sfs/models/list_schedules_response.py index 0fedcbde9..44540aa12 100644 --- a/services/sfs/src/stackit/sfs/models/list_schedules_response.py +++ b/services/sfs/src/stackit/sfs/models/list_schedules_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_share_export_policies_response.py b/services/sfs/src/stackit/sfs/models/list_share_export_policies_response.py index 132f4e6c6..e8d11d7b1 100644 --- a/services/sfs/src/stackit/sfs/models/list_share_export_policies_response.py +++ b/services/sfs/src/stackit/sfs/models/list_share_export_policies_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_shares_response.py b/services/sfs/src/stackit/sfs/models/list_shares_response.py index f52fb1c7a..c3a462c71 100644 --- a/services/sfs/src/stackit/sfs/models/list_shares_response.py +++ b/services/sfs/src/stackit/sfs/models/list_shares_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/list_snapshot_policies_response.py b/services/sfs/src/stackit/sfs/models/list_snapshot_policies_response.py index b61fbaab1..a4b1e8ee4 100644 --- a/services/sfs/src/stackit/sfs/models/list_snapshot_policies_response.py +++ b/services/sfs/src/stackit/sfs/models/list_snapshot_policies_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/performance_class.py b/services/sfs/src/stackit/sfs/models/performance_class.py index c2d188ee6..b08ae2401 100644 --- a/services/sfs/src/stackit/sfs/models/performance_class.py +++ b/services/sfs/src/stackit/sfs/models/performance_class.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/resource_pool.py b/services/sfs/src/stackit/sfs/models/resource_pool.py index 6fd26b5ff..f4ee10191 100644 --- a/services/sfs/src/stackit/sfs/models/resource_pool.py +++ b/services/sfs/src/stackit/sfs/models/resource_pool.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/resource_pool_performance_class.py b/services/sfs/src/stackit/sfs/models/resource_pool_performance_class.py index 2d95d3b02..aef64747c 100644 --- a/services/sfs/src/stackit/sfs/models/resource_pool_performance_class.py +++ b/services/sfs/src/stackit/sfs/models/resource_pool_performance_class.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/resource_pool_snapshot.py b/services/sfs/src/stackit/sfs/models/resource_pool_snapshot.py index e0d71443a..835e5e53d 100644 --- a/services/sfs/src/stackit/sfs/models/resource_pool_snapshot.py +++ b/services/sfs/src/stackit/sfs/models/resource_pool_snapshot.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/resource_pool_snapshot_policy.py b/services/sfs/src/stackit/sfs/models/resource_pool_snapshot_policy.py index 3c5add7f9..ed3057dc6 100644 --- a/services/sfs/src/stackit/sfs/models/resource_pool_snapshot_policy.py +++ b/services/sfs/src/stackit/sfs/models/resource_pool_snapshot_policy.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/resource_pool_space.py b/services/sfs/src/stackit/sfs/models/resource_pool_space.py index 8995d97dc..ea2fe2d68 100644 --- a/services/sfs/src/stackit/sfs/models/resource_pool_space.py +++ b/services/sfs/src/stackit/sfs/models/resource_pool_space.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/schedule.py b/services/sfs/src/stackit/sfs/models/schedule.py index 8e6f24d54..9ad345bc4 100644 --- a/services/sfs/src/stackit/sfs/models/schedule.py +++ b/services/sfs/src/stackit/sfs/models/schedule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/share.py b/services/sfs/src/stackit/sfs/models/share.py index 575ef1de5..fe92636f3 100644 --- a/services/sfs/src/stackit/sfs/models/share.py +++ b/services/sfs/src/stackit/sfs/models/share.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/share_export_policy.py b/services/sfs/src/stackit/sfs/models/share_export_policy.py index f2c98c68a..26b817a03 100644 --- a/services/sfs/src/stackit/sfs/models/share_export_policy.py +++ b/services/sfs/src/stackit/sfs/models/share_export_policy.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/share_export_policy_rule.py b/services/sfs/src/stackit/sfs/models/share_export_policy_rule.py index 36b976abe..06a95c665 100644 --- a/services/sfs/src/stackit/sfs/models/share_export_policy_rule.py +++ b/services/sfs/src/stackit/sfs/models/share_export_policy_rule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/snapshot_policy.py b/services/sfs/src/stackit/sfs/models/snapshot_policy.py index 0d5a2a1c7..fa9a133a1 100644 --- a/services/sfs/src/stackit/sfs/models/snapshot_policy.py +++ b/services/sfs/src/stackit/sfs/models/snapshot_policy.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/snapshot_policy_schedule.py b/services/sfs/src/stackit/sfs/models/snapshot_policy_schedule.py index 68bfeba0e..f8ab60a71 100644 --- a/services/sfs/src/stackit/sfs/models/snapshot_policy_schedule.py +++ b/services/sfs/src/stackit/sfs/models/snapshot_policy_schedule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/snapshot_policy_snapshot_policy_schedule.py b/services/sfs/src/stackit/sfs/models/snapshot_policy_snapshot_policy_schedule.py index 0e689eaea..3c71592c8 100644 --- a/services/sfs/src/stackit/sfs/models/snapshot_policy_snapshot_policy_schedule.py +++ b/services/sfs/src/stackit/sfs/models/snapshot_policy_snapshot_policy_schedule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/status.py b/services/sfs/src/stackit/sfs/models/status.py index a74ef7240..06b30e607 100644 --- a/services/sfs/src/stackit/sfs/models/status.py +++ b/services/sfs/src/stackit/sfs/models/status.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_resource_pool_payload.py b/services/sfs/src/stackit/sfs/models/update_resource_pool_payload.py index ed3f77dad..50a2d0210 100644 --- a/services/sfs/src/stackit/sfs/models/update_resource_pool_payload.py +++ b/services/sfs/src/stackit/sfs/models/update_resource_pool_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_resource_pool_response.py b/services/sfs/src/stackit/sfs/models/update_resource_pool_response.py index d321abbc2..bef5209fb 100644 --- a/services/sfs/src/stackit/sfs/models/update_resource_pool_response.py +++ b/services/sfs/src/stackit/sfs/models/update_resource_pool_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_payload.py b/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_payload.py index 9cc97968c..a2b80daf7 100644 --- a/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_payload.py +++ b/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_response.py b/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_response.py index b3444af88..5e3139dd4 100644 --- a/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_response.py +++ b/services/sfs/src/stackit/sfs/models/update_resource_pool_snapshot_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_share_export_policy_body_rule.py b/services/sfs/src/stackit/sfs/models/update_share_export_policy_body_rule.py index 21dfeec02..2bb12c1ca 100644 --- a/services/sfs/src/stackit/sfs/models/update_share_export_policy_body_rule.py +++ b/services/sfs/src/stackit/sfs/models/update_share_export_policy_body_rule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_share_export_policy_payload.py b/services/sfs/src/stackit/sfs/models/update_share_export_policy_payload.py index dc9ca91f7..0c509c115 100644 --- a/services/sfs/src/stackit/sfs/models/update_share_export_policy_payload.py +++ b/services/sfs/src/stackit/sfs/models/update_share_export_policy_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_share_export_policy_response.py b/services/sfs/src/stackit/sfs/models/update_share_export_policy_response.py index aa798da3c..1832e86b4 100644 --- a/services/sfs/src/stackit/sfs/models/update_share_export_policy_response.py +++ b/services/sfs/src/stackit/sfs/models/update_share_export_policy_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_share_payload.py b/services/sfs/src/stackit/sfs/models/update_share_payload.py index d580b902e..875e71edf 100644 --- a/services/sfs/src/stackit/sfs/models/update_share_payload.py +++ b/services/sfs/src/stackit/sfs/models/update_share_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/update_share_response.py b/services/sfs/src/stackit/sfs/models/update_share_response.py index eea1b3ce9..ed5e86b0e 100644 --- a/services/sfs/src/stackit/sfs/models/update_share_response.py +++ b/services/sfs/src/stackit/sfs/models/update_share_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/validation_error.py b/services/sfs/src/stackit/sfs/models/validation_error.py index 60bdb021a..6cf322a5b 100644 --- a/services/sfs/src/stackit/sfs/models/validation_error.py +++ b/services/sfs/src/stackit/sfs/models/validation_error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/models/validation_error_field.py b/services/sfs/src/stackit/sfs/models/validation_error_field.py index c9beb4cf9..908b06ff9 100644 --- a/services/sfs/src/stackit/sfs/models/validation_error_field.py +++ b/services/sfs/src/stackit/sfs/models/validation_error_field.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from __future__ import annotations diff --git a/services/sfs/src/stackit/sfs/rest.py b/services/sfs/src/stackit/sfs/rest.py index 7fe9ba7c8..db4c31ce6 100644 --- a/services/sfs/src/stackit/sfs/rest.py +++ b/services/sfs/src/stackit/sfs/rest.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT File Storage (SFS) + STACKIT File Storage (SFS) -API used to create and manage NFS Shares. + API used to create and manage NFS Shares. -The version of the OpenAPI document: 1.0.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1.0.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 import io @@ -21,6 +21,7 @@ from stackit.sfs.exceptions import ApiException, ApiValueError + RESTResponseType = requests.Response