From 992fa2df0e386eee6b9c2ddd98c2128416ff40da Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 21 Jul 2026 08:18:46 +0000 Subject: [PATCH] Generate objectstorage --- services/objectstorage/oas_commit | 2 +- .../src/stackit/objectstorage/__init__.py | 11 ++++++----- .../src/stackit/objectstorage/api/default_api.py | 10 +++++----- .../src/stackit/objectstorage/api_client.py | 11 ++++++----- .../src/stackit/objectstorage/api_response.py | 1 + .../src/stackit/objectstorage/configuration.py | 11 ++++++----- .../src/stackit/objectstorage/exceptions.py | 10 +++++----- .../src/stackit/objectstorage/models/__init__.py | 10 +++++----- .../src/stackit/objectstorage/models/access_key.py | 10 +++++----- .../src/stackit/objectstorage/models/bucket.py | 10 +++++----- .../objectstorage/models/compliance_lock_response.py | 10 +++++----- .../objectstorage/models/create_access_key_payload.py | 10 +++++----- .../models/create_access_key_response.py | 10 +++++----- .../objectstorage/models/create_bucket_response.py | 10 +++++----- .../models/create_credentials_group_payload.py | 10 +++++----- .../models/create_credentials_group_response.py | 10 +++++----- .../stackit/objectstorage/models/credentials_group.py | 10 +++++----- .../models/credentials_group_extended.py | 10 +++++----- .../models/default_retention_response.py | 10 +++++----- .../models/delete_access_key_response.py | 10 +++++----- .../objectstorage/models/delete_bucket_response.py | 10 +++++----- .../models/delete_credentials_group_response.py | 10 +++++----- .../models/delete_default_retention_response.py | 10 +++++----- .../stackit/objectstorage/models/detailed_error.py | 10 +++++----- .../src/stackit/objectstorage/models/error_message.py | 10 +++++----- .../objectstorage/models/get_bucket_response.py | 10 +++++----- .../models/get_credentials_group_response.py | 10 +++++----- .../objectstorage/models/http_validation_error.py | 10 +++++----- .../objectstorage/models/list_access_keys_response.py | 10 +++++----- .../objectstorage/models/list_buckets_response.py | 10 +++++----- .../models/list_credentials_groups_response.py | 10 +++++----- .../stackit/objectstorage/models/location_inner.py | 11 ++++++----- .../src/stackit/objectstorage/models/project_scope.py | 10 +++++----- .../stackit/objectstorage/models/project_status.py | 10 +++++----- .../stackit/objectstorage/models/retention_mode.py | 10 +++++----- .../models/set_default_retention_payload.py | 10 +++++----- .../stackit/objectstorage/models/validation_error.py | 10 +++++----- .../objectstorage/src/stackit/objectstorage/rest.py | 11 ++++++----- 38 files changed, 187 insertions(+), 181 deletions(-) diff --git a/services/objectstorage/oas_commit b/services/objectstorage/oas_commit index a978700c7..0f8ce352b 100644 --- a/services/objectstorage/oas_commit +++ b/services/objectstorage/oas_commit @@ -1 +1 @@ -467fe4d305e48699c34835e45fd1c7b486be01d2 +876a48fb56473c7c844baa697906d461c0675f47 diff --git a/services/objectstorage/src/stackit/objectstorage/__init__.py b/services/objectstorage/src/stackit/objectstorage/__init__.py index 5ea1abb19..46ae69aeb 100644 --- a/services/objectstorage/src/stackit/objectstorage/__init__.py +++ b/services/objectstorage/src/stackit/objectstorage/__init__.py @@ -3,16 +3,17 @@ # flake8: noqa """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/api/default_api.py b/services/objectstorage/src/stackit/objectstorage/api/default_api.py index 0d64897cd..02f2051be 100644 --- a/services/objectstorage/src/stackit/objectstorage/api/default_api.py +++ b/services/objectstorage/src/stackit/objectstorage/api/default_api.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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, Dict, List, Optional, Tuple, Union diff --git a/services/objectstorage/src/stackit/objectstorage/api_client.py b/services/objectstorage/src/stackit/objectstorage/api_client.py index e37dc2d90..a0eea488c 100644 --- a/services/objectstorage/src/stackit/objectstorage/api_client.py +++ b/services/objectstorage/src/stackit/objectstorage/api_client.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/api_response.py b/services/objectstorage/src/stackit/objectstorage/api_response.py index ca801da0b..b3ba14a1d 100644 --- a/services/objectstorage/src/stackit/objectstorage/api_response.py +++ b/services/objectstorage/src/stackit/objectstorage/api_response.py @@ -6,6 +6,7 @@ from pydantic import BaseModel, Field, StrictBytes, StrictInt + T = TypeVar("T") diff --git a/services/objectstorage/src/stackit/objectstorage/configuration.py b/services/objectstorage/src/stackit/objectstorage/configuration.py index 91c081c77..2b47b61e5 100644 --- a/services/objectstorage/src/stackit/objectstorage/configuration.py +++ b/services/objectstorage/src/stackit/objectstorage/configuration.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/exceptions.py b/services/objectstorage/src/stackit/objectstorage/exceptions.py index 4ae20b72d..fd8d93d91 100644 --- a/services/objectstorage/src/stackit/objectstorage/exceptions.py +++ b/services/objectstorage/src/stackit/objectstorage/exceptions.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/__init__.py b/services/objectstorage/src/stackit/objectstorage/models/__init__.py index b28985e2b..1308cda5c 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/__init__.py +++ b/services/objectstorage/src/stackit/objectstorage/models/__init__.py @@ -2,14 +2,14 @@ # flake8: noqa """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/access_key.py b/services/objectstorage/src/stackit/objectstorage/models/access_key.py index b8b43ebec..69780a9f6 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/access_key.py +++ b/services/objectstorage/src/stackit/objectstorage/models/access_key.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/bucket.py b/services/objectstorage/src/stackit/objectstorage/models/bucket.py index 73e0905f1..23d5c58c0 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/bucket.py +++ b/services/objectstorage/src/stackit/objectstorage/models/bucket.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/compliance_lock_response.py b/services/objectstorage/src/stackit/objectstorage/models/compliance_lock_response.py index f82327c23..974220d93 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/compliance_lock_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/compliance_lock_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/create_access_key_payload.py b/services/objectstorage/src/stackit/objectstorage/models/create_access_key_payload.py index 1b3a15af4..5eb938d19 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/create_access_key_payload.py +++ b/services/objectstorage/src/stackit/objectstorage/models/create_access_key_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/create_access_key_response.py b/services/objectstorage/src/stackit/objectstorage/models/create_access_key_response.py index 08d0d5112..04c7690d2 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/create_access_key_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/create_access_key_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/create_bucket_response.py b/services/objectstorage/src/stackit/objectstorage/models/create_bucket_response.py index 20b98f51d..46d8ba7f0 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/create_bucket_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/create_bucket_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/create_credentials_group_payload.py b/services/objectstorage/src/stackit/objectstorage/models/create_credentials_group_payload.py index 263523b39..f15b6b923 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/create_credentials_group_payload.py +++ b/services/objectstorage/src/stackit/objectstorage/models/create_credentials_group_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/create_credentials_group_response.py b/services/objectstorage/src/stackit/objectstorage/models/create_credentials_group_response.py index 27ab6b6f6..8f5a00e2e 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/create_credentials_group_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/create_credentials_group_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/credentials_group.py b/services/objectstorage/src/stackit/objectstorage/models/credentials_group.py index 61eec6d9b..39b3fff93 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/credentials_group.py +++ b/services/objectstorage/src/stackit/objectstorage/models/credentials_group.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/credentials_group_extended.py b/services/objectstorage/src/stackit/objectstorage/models/credentials_group_extended.py index 520c86bfa..a9b4554d3 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/credentials_group_extended.py +++ b/services/objectstorage/src/stackit/objectstorage/models/credentials_group_extended.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/default_retention_response.py b/services/objectstorage/src/stackit/objectstorage/models/default_retention_response.py index de3e7d815..00a27628a 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/default_retention_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/default_retention_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/delete_access_key_response.py b/services/objectstorage/src/stackit/objectstorage/models/delete_access_key_response.py index 9c177a54f..6fd69ded5 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/delete_access_key_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/delete_access_key_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/delete_bucket_response.py b/services/objectstorage/src/stackit/objectstorage/models/delete_bucket_response.py index 58a4b833d..20c747f2e 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/delete_bucket_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/delete_bucket_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/delete_credentials_group_response.py b/services/objectstorage/src/stackit/objectstorage/models/delete_credentials_group_response.py index 0cc203a46..a42be15e7 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/delete_credentials_group_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/delete_credentials_group_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/delete_default_retention_response.py b/services/objectstorage/src/stackit/objectstorage/models/delete_default_retention_response.py index 169b25609..0565d1ca8 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/delete_default_retention_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/delete_default_retention_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/detailed_error.py b/services/objectstorage/src/stackit/objectstorage/models/detailed_error.py index 617d49e93..12ee6fc1a 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/detailed_error.py +++ b/services/objectstorage/src/stackit/objectstorage/models/detailed_error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/error_message.py b/services/objectstorage/src/stackit/objectstorage/models/error_message.py index d7461ad63..9c26038bf 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/error_message.py +++ b/services/objectstorage/src/stackit/objectstorage/models/error_message.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/get_bucket_response.py b/services/objectstorage/src/stackit/objectstorage/models/get_bucket_response.py index 7fdd33f7b..e25fa096a 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/get_bucket_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/get_bucket_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/get_credentials_group_response.py b/services/objectstorage/src/stackit/objectstorage/models/get_credentials_group_response.py index 798116a0d..6bf65fd43 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/get_credentials_group_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/get_credentials_group_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/http_validation_error.py b/services/objectstorage/src/stackit/objectstorage/models/http_validation_error.py index 13c1682f6..808ca30f5 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/http_validation_error.py +++ b/services/objectstorage/src/stackit/objectstorage/models/http_validation_error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/list_access_keys_response.py b/services/objectstorage/src/stackit/objectstorage/models/list_access_keys_response.py index 88ed8c769..7383385a0 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/list_access_keys_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/list_access_keys_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/list_buckets_response.py b/services/objectstorage/src/stackit/objectstorage/models/list_buckets_response.py index 2b002c883..0394ca0d2 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/list_buckets_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/list_buckets_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/list_credentials_groups_response.py b/services/objectstorage/src/stackit/objectstorage/models/list_credentials_groups_response.py index 26c33e8b0..d32ba0e89 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/list_credentials_groups_response.py +++ b/services/objectstorage/src/stackit/objectstorage/models/list_credentials_groups_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/location_inner.py b/services/objectstorage/src/stackit/objectstorage/models/location_inner.py index 7fb8c58c2..de9ffcd28 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/location_inner.py +++ b/services/objectstorage/src/stackit/objectstorage/models/location_inner.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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 @@ -26,6 +26,7 @@ ) from typing_extensions import Self + LOCATIONINNER_ANY_OF_SCHEMAS = ["int", "str"] diff --git a/services/objectstorage/src/stackit/objectstorage/models/project_scope.py b/services/objectstorage/src/stackit/objectstorage/models/project_scope.py index ff36926f2..bd4d7e976 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/project_scope.py +++ b/services/objectstorage/src/stackit/objectstorage/models/project_scope.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/project_status.py b/services/objectstorage/src/stackit/objectstorage/models/project_status.py index e75ea2a83..30308e410 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/project_status.py +++ b/services/objectstorage/src/stackit/objectstorage/models/project_status.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/retention_mode.py b/services/objectstorage/src/stackit/objectstorage/models/retention_mode.py index 53c8db5c8..51e53c0b3 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/retention_mode.py +++ b/services/objectstorage/src/stackit/objectstorage/models/retention_mode.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/set_default_retention_payload.py b/services/objectstorage/src/stackit/objectstorage/models/set_default_retention_payload.py index 5aaa2503e..a331ac4f2 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/set_default_retention_payload.py +++ b/services/objectstorage/src/stackit/objectstorage/models/set_default_retention_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/models/validation_error.py b/services/objectstorage/src/stackit/objectstorage/models/validation_error.py index 6bdd1d662..b698802e3 100644 --- a/services/objectstorage/src/stackit/objectstorage/models/validation_error.py +++ b/services/objectstorage/src/stackit/objectstorage/models/validation_error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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/objectstorage/src/stackit/objectstorage/rest.py b/services/objectstorage/src/stackit/objectstorage/rest.py index be79831d3..f5a0ec6bd 100644 --- a/services/objectstorage/src/stackit/objectstorage/rest.py +++ b/services/objectstorage/src/stackit/objectstorage/rest.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Object Storage API + STACKIT Object Storage API -STACKIT API to manage the Object Storage + STACKIT API to manage the Object Storage -The version of the OpenAPI document: 2.0.1 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0.1 + 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.objectstorage.exceptions import ApiException, ApiValueError + RESTResponseType = requests.Response