From 9191156af94d37267f5c9d4edf85534b3edf80e9 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 21 Jul 2026 08:18:21 +0000 Subject: [PATCH] Generate intake --- services/intake/oas_commit | 2 +- services/intake/src/stackit/intake/__init__.py | 11 ++++++----- services/intake/src/stackit/intake/api/default_api.py | 10 +++++----- services/intake/src/stackit/intake/api_client.py | 11 ++++++----- services/intake/src/stackit/intake/api_response.py | 1 + services/intake/src/stackit/intake/configuration.py | 11 ++++++----- services/intake/src/stackit/intake/exceptions.py | 10 +++++----- services/intake/src/stackit/intake/models/__init__.py | 10 +++++----- .../intake/src/stackit/intake/models/catalog_auth.py | 10 +++++----- .../src/stackit/intake/models/catalog_auth_patch.py | 10 +++++----- .../src/stackit/intake/models/catalog_auth_type.py | 10 +++++----- .../intake/src/stackit/intake/models/client_config.py | 10 +++++----- .../stackit/intake/models/create_intake_payload.py | 10 +++++----- .../intake/models/create_intake_runner_payload.py | 10 +++++----- .../intake/models/create_intake_user_payload.py | 10 +++++----- .../intake/src/stackit/intake/models/dremio_auth.py | 10 +++++----- .../src/stackit/intake/models/dremio_auth_patch.py | 10 +++++----- .../src/stackit/intake/models/intake_catalog.py | 10 +++++----- .../src/stackit/intake/models/intake_catalog_patch.py | 10 +++++----- .../src/stackit/intake/models/intake_response.py | 10 +++++----- .../stackit/intake/models/intake_runner_response.py | 10 +++++----- .../src/stackit/intake/models/intake_user_response.py | 10 +++++----- .../intake/models/list_intake_runners_response.py | 10 +++++----- .../intake/models/list_intake_users_response.py | 10 +++++----- .../stackit/intake/models/list_intakes_response.py | 10 +++++----- .../src/stackit/intake/models/partitioning_type.py | 10 +++++----- .../stackit/intake/models/partitioning_update_type.py | 10 +++++----- .../stackit/intake/models/update_intake_payload.py | 10 +++++----- .../intake/models/update_intake_runner_payload.py | 10 +++++----- .../intake/models/update_intake_user_payload.py | 10 +++++----- .../intake/src/stackit/intake/models/user_type.py | 10 +++++----- services/intake/src/stackit/intake/rest.py | 11 ++++++----- 32 files changed, 156 insertions(+), 151 deletions(-) diff --git a/services/intake/oas_commit b/services/intake/oas_commit index 4b79dc0b4..0f8ce352b 100644 --- a/services/intake/oas_commit +++ b/services/intake/oas_commit @@ -1 +1 @@ -bda6ad3d9e8850526f25eddcb6589fcc7559c625 +876a48fb56473c7c844baa697906d461c0675f47 diff --git a/services/intake/src/stackit/intake/__init__.py b/services/intake/src/stackit/intake/__init__.py index fb2fb51e1..9acc10e8b 100644 --- a/services/intake/src/stackit/intake/__init__.py +++ b/services/intake/src/stackit/intake/__init__.py @@ -3,16 +3,17 @@ # flake8: noqa """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/api/default_api.py b/services/intake/src/stackit/intake/api/default_api.py index 36e3cdfde..9b9806bd9 100644 --- a/services/intake/src/stackit/intake/api/default_api.py +++ b/services/intake/src/stackit/intake/api/default_api.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/api_client.py b/services/intake/src/stackit/intake/api_client.py index ead1d0fef..463e7519d 100644 --- a/services/intake/src/stackit/intake/api_client.py +++ b/services/intake/src/stackit/intake/api_client.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/api_response.py b/services/intake/src/stackit/intake/api_response.py index ca801da0b..b3ba14a1d 100644 --- a/services/intake/src/stackit/intake/api_response.py +++ b/services/intake/src/stackit/intake/api_response.py @@ -6,6 +6,7 @@ from pydantic import BaseModel, Field, StrictBytes, StrictInt + T = TypeVar("T") diff --git a/services/intake/src/stackit/intake/configuration.py b/services/intake/src/stackit/intake/configuration.py index 29b2c890d..cb52b3321 100644 --- a/services/intake/src/stackit/intake/configuration.py +++ b/services/intake/src/stackit/intake/configuration.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/exceptions.py b/services/intake/src/stackit/intake/exceptions.py index 35cbeb7c9..9aa96b1fb 100644 --- a/services/intake/src/stackit/intake/exceptions.py +++ b/services/intake/src/stackit/intake/exceptions.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/__init__.py b/services/intake/src/stackit/intake/models/__init__.py index 8b7c163bb..3264475a5 100644 --- a/services/intake/src/stackit/intake/models/__init__.py +++ b/services/intake/src/stackit/intake/models/__init__.py @@ -2,14 +2,14 @@ # flake8: noqa """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/catalog_auth.py b/services/intake/src/stackit/intake/models/catalog_auth.py index e315db21e..ede58decc 100644 --- a/services/intake/src/stackit/intake/models/catalog_auth.py +++ b/services/intake/src/stackit/intake/models/catalog_auth.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/catalog_auth_patch.py b/services/intake/src/stackit/intake/models/catalog_auth_patch.py index 5e28e955f..c05883ab4 100644 --- a/services/intake/src/stackit/intake/models/catalog_auth_patch.py +++ b/services/intake/src/stackit/intake/models/catalog_auth_patch.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/catalog_auth_type.py b/services/intake/src/stackit/intake/models/catalog_auth_type.py index c9458a4ac..3892e1abf 100644 --- a/services/intake/src/stackit/intake/models/catalog_auth_type.py +++ b/services/intake/src/stackit/intake/models/catalog_auth_type.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/client_config.py b/services/intake/src/stackit/intake/models/client_config.py index f74b80d4a..df038a0c0 100644 --- a/services/intake/src/stackit/intake/models/client_config.py +++ b/services/intake/src/stackit/intake/models/client_config.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/create_intake_payload.py b/services/intake/src/stackit/intake/models/create_intake_payload.py index 44b1667f1..8daeebd4b 100644 --- a/services/intake/src/stackit/intake/models/create_intake_payload.py +++ b/services/intake/src/stackit/intake/models/create_intake_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/create_intake_runner_payload.py b/services/intake/src/stackit/intake/models/create_intake_runner_payload.py index ae6e13eb8..f0403aaba 100644 --- a/services/intake/src/stackit/intake/models/create_intake_runner_payload.py +++ b/services/intake/src/stackit/intake/models/create_intake_runner_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/create_intake_user_payload.py b/services/intake/src/stackit/intake/models/create_intake_user_payload.py index 858661a63..a264e952c 100644 --- a/services/intake/src/stackit/intake/models/create_intake_user_payload.py +++ b/services/intake/src/stackit/intake/models/create_intake_user_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/dremio_auth.py b/services/intake/src/stackit/intake/models/dremio_auth.py index 8c44a9efc..072a68355 100644 --- a/services/intake/src/stackit/intake/models/dremio_auth.py +++ b/services/intake/src/stackit/intake/models/dremio_auth.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/dremio_auth_patch.py b/services/intake/src/stackit/intake/models/dremio_auth_patch.py index 3fb07d476..2f512f1b0 100644 --- a/services/intake/src/stackit/intake/models/dremio_auth_patch.py +++ b/services/intake/src/stackit/intake/models/dremio_auth_patch.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/intake_catalog.py b/services/intake/src/stackit/intake/models/intake_catalog.py index 6316f1c6a..ee9ccdfbc 100644 --- a/services/intake/src/stackit/intake/models/intake_catalog.py +++ b/services/intake/src/stackit/intake/models/intake_catalog.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/intake_catalog_patch.py b/services/intake/src/stackit/intake/models/intake_catalog_patch.py index b6d6ea15c..8047b9360 100644 --- a/services/intake/src/stackit/intake/models/intake_catalog_patch.py +++ b/services/intake/src/stackit/intake/models/intake_catalog_patch.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/intake_response.py b/services/intake/src/stackit/intake/models/intake_response.py index d79f324f2..47f249f93 100644 --- a/services/intake/src/stackit/intake/models/intake_response.py +++ b/services/intake/src/stackit/intake/models/intake_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/intake_runner_response.py b/services/intake/src/stackit/intake/models/intake_runner_response.py index 5d36ec43e..b5092feda 100644 --- a/services/intake/src/stackit/intake/models/intake_runner_response.py +++ b/services/intake/src/stackit/intake/models/intake_runner_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/intake_user_response.py b/services/intake/src/stackit/intake/models/intake_user_response.py index 15f757d01..5a12f4ec8 100644 --- a/services/intake/src/stackit/intake/models/intake_user_response.py +++ b/services/intake/src/stackit/intake/models/intake_user_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/list_intake_runners_response.py b/services/intake/src/stackit/intake/models/list_intake_runners_response.py index 014ef9802..122780e76 100644 --- a/services/intake/src/stackit/intake/models/list_intake_runners_response.py +++ b/services/intake/src/stackit/intake/models/list_intake_runners_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/list_intake_users_response.py b/services/intake/src/stackit/intake/models/list_intake_users_response.py index d2221600f..beb8107f8 100644 --- a/services/intake/src/stackit/intake/models/list_intake_users_response.py +++ b/services/intake/src/stackit/intake/models/list_intake_users_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/list_intakes_response.py b/services/intake/src/stackit/intake/models/list_intakes_response.py index ff7f5ca3e..f9e7d5cd1 100644 --- a/services/intake/src/stackit/intake/models/list_intakes_response.py +++ b/services/intake/src/stackit/intake/models/list_intakes_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/partitioning_type.py b/services/intake/src/stackit/intake/models/partitioning_type.py index 7951e185b..18cdbe7e6 100644 --- a/services/intake/src/stackit/intake/models/partitioning_type.py +++ b/services/intake/src/stackit/intake/models/partitioning_type.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/partitioning_update_type.py b/services/intake/src/stackit/intake/models/partitioning_update_type.py index a955fd587..a0d79f119 100644 --- a/services/intake/src/stackit/intake/models/partitioning_update_type.py +++ b/services/intake/src/stackit/intake/models/partitioning_update_type.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/update_intake_payload.py b/services/intake/src/stackit/intake/models/update_intake_payload.py index a16a335ac..534fd53f5 100644 --- a/services/intake/src/stackit/intake/models/update_intake_payload.py +++ b/services/intake/src/stackit/intake/models/update_intake_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/update_intake_runner_payload.py b/services/intake/src/stackit/intake/models/update_intake_runner_payload.py index d63e82170..62cad46d9 100644 --- a/services/intake/src/stackit/intake/models/update_intake_runner_payload.py +++ b/services/intake/src/stackit/intake/models/update_intake_runner_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/update_intake_user_payload.py b/services/intake/src/stackit/intake/models/update_intake_user_payload.py index 17f732ac3..52f2cefb4 100644 --- a/services/intake/src/stackit/intake/models/update_intake_user_payload.py +++ b/services/intake/src/stackit/intake/models/update_intake_user_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/models/user_type.py b/services/intake/src/stackit/intake/models/user_type.py index e1e3e2f92..078c2e7cc 100644 --- a/services/intake/src/stackit/intake/models/user_type.py +++ b/services/intake/src/stackit/intake/models/user_type.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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/intake/src/stackit/intake/rest.py b/services/intake/src/stackit/intake/rest.py index 574fcbb39..51d5fbfee 100644 --- a/services/intake/src/stackit/intake/rest.py +++ b/services/intake/src/stackit/intake/rest.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Intake API + STACKIT Intake API -This API provides endpoints for managing Intakes. + This API provides endpoints for managing Intakes. -The version of the OpenAPI document: 1beta.3.7 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 1beta.3.7 + 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.intake.exceptions import ApiException, ApiValueError + RESTResponseType = requests.Response