From 9480a3bdd49eee28f7d158b958ceba762a91a42c Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Tue, 21 Jul 2026 08:19:29 +0000 Subject: [PATCH] Generate ske --- services/ske/oas_commit | 2 +- services/ske/src/stackit/ske/__init__.py | 11 ++++++----- services/ske/src/stackit/ske/api/default_api.py | 10 +++++----- services/ske/src/stackit/ske/api_client.py | 11 ++++++----- services/ske/src/stackit/ske/api_response.py | 1 + services/ske/src/stackit/ske/configuration.py | 11 ++++++----- services/ske/src/stackit/ske/exceptions.py | 10 +++++----- services/ske/src/stackit/ske/models/__init__.py | 10 +++++----- services/ske/src/stackit/ske/models/access.py | 10 +++++----- services/ske/src/stackit/ske/models/access_scope.py | 10 +++++----- services/ske/src/stackit/ske/models/acl.py | 10 +++++----- services/ske/src/stackit/ske/models/audit.py | 10 +++++----- .../ske/src/stackit/ske/models/availability_zone.py | 10 +++++----- services/ske/src/stackit/ske/models/cluster.py | 10 +++++----- services/ske/src/stackit/ske/models/cluster_error.py | 10 +++++----- services/ske/src/stackit/ske/models/cluster_status.py | 10 +++++----- .../src/stackit/ske/models/cluster_status_state.py | 10 +++++----- .../stackit/ske/models/create_kubeconfig_payload.py | 10 +++++----- .../ske/models/create_or_update_cluster_payload.py | 10 +++++----- .../stackit/ske/models/credentials_rotation_state.py | 10 +++++----- services/ske/src/stackit/ske/models/cri.py | 10 +++++----- services/ske/src/stackit/ske/models/dns.py | 10 +++++----- .../ske/src/stackit/ske/models/expiration_status.py | 10 +++++----- .../ske/models/expiration_status_kubernetes.py | 10 +++++----- .../stackit/ske/models/expiration_status_nodepool.py | 10 +++++----- services/ske/src/stackit/ske/models/extension.py | 10 +++++----- .../get_provider_options_request_version_state.py | 10 +++++----- services/ske/src/stackit/ske/models/hibernation.py | 10 +++++----- .../src/stackit/ske/models/hibernation_schedule.py | 10 +++++----- services/ske/src/stackit/ske/models/idp.py | 10 +++++----- services/ske/src/stackit/ske/models/idp_kubeconfig.py | 10 +++++----- services/ske/src/stackit/ske/models/image.py | 10 +++++----- services/ske/src/stackit/ske/models/kubeconfig.py | 10 +++++----- services/ske/src/stackit/ske/models/kubernetes.py | 10 +++++----- .../ske/src/stackit/ske/models/kubernetes_version.py | 10 +++++----- .../src/stackit/ske/models/list_clusters_response.py | 10 +++++----- .../ske/src/stackit/ske/models/login_kubeconfig.py | 10 +++++----- services/ske/src/stackit/ske/models/machine.py | 10 +++++----- services/ske/src/stackit/ske/models/machine_image.py | 10 +++++----- .../src/stackit/ske/models/machine_image_version.py | 10 +++++----- services/ske/src/stackit/ske/models/machine_type.py | 10 +++++----- services/ske/src/stackit/ske/models/maintenance.py | 10 +++++----- .../src/stackit/ske/models/maintenance_auto_update.py | 10 +++++----- services/ske/src/stackit/ske/models/network.py | 10 +++++----- services/ske/src/stackit/ske/models/nodepool.py | 10 +++++----- .../ske/src/stackit/ske/models/nodepool_kubernetes.py | 10 +++++----- services/ske/src/stackit/ske/models/observability.py | 10 +++++----- .../ske/src/stackit/ske/models/provider_options.py | 10 +++++----- services/ske/src/stackit/ske/models/runtime_error.py | 10 +++++----- services/ske/src/stackit/ske/models/taint.py | 10 +++++----- services/ske/src/stackit/ske/models/time_window.py | 10 +++++----- .../stackit/ske/models/v2_control_plane_network.py | 10 +++++----- services/ske/src/stackit/ske/models/volume.py | 10 +++++----- services/ske/src/stackit/ske/models/volume_type.py | 10 +++++----- services/ske/src/stackit/ske/rest.py | 11 ++++++----- 55 files changed, 271 insertions(+), 266 deletions(-) diff --git a/services/ske/oas_commit b/services/ske/oas_commit index a886b4d4a..0f8ce352b 100644 --- a/services/ske/oas_commit +++ b/services/ske/oas_commit @@ -1 +1 @@ -ea0931a6f93703c990517136e0d4c7a88455b282 +876a48fb56473c7c844baa697906d461c0675f47 diff --git a/services/ske/src/stackit/ske/__init__.py b/services/ske/src/stackit/ske/__init__.py index 8680e736f..a934a50e0 100644 --- a/services/ske/src/stackit/ske/__init__.py +++ b/services/ske/src/stackit/ske/__init__.py @@ -3,16 +3,17 @@ # flake8: noqa """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/api/default_api.py b/services/ske/src/stackit/ske/api/default_api.py index ecddf51d3..a6ddd80f8 100644 --- a/services/ske/src/stackit/ske/api/default_api.py +++ b/services/ske/src/stackit/ske/api/default_api.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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, Dict, List, Optional, Tuple, Union diff --git a/services/ske/src/stackit/ske/api_client.py b/services/ske/src/stackit/ske/api_client.py index 6ada8e2cc..93aaccb90 100644 --- a/services/ske/src/stackit/ske/api_client.py +++ b/services/ske/src/stackit/ske/api_client.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/api_response.py b/services/ske/src/stackit/ske/api_response.py index ca801da0b..b3ba14a1d 100644 --- a/services/ske/src/stackit/ske/api_response.py +++ b/services/ske/src/stackit/ske/api_response.py @@ -6,6 +6,7 @@ from pydantic import BaseModel, Field, StrictBytes, StrictInt + T = TypeVar("T") diff --git a/services/ske/src/stackit/ske/configuration.py b/services/ske/src/stackit/ske/configuration.py index e49d0e80e..fd959930b 100644 --- a/services/ske/src/stackit/ske/configuration.py +++ b/services/ske/src/stackit/ske/configuration.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/exceptions.py b/services/ske/src/stackit/ske/exceptions.py index 67cbe2ff0..7f4ae9acb 100644 --- a/services/ske/src/stackit/ske/exceptions.py +++ b/services/ske/src/stackit/ske/exceptions.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/__init__.py b/services/ske/src/stackit/ske/models/__init__.py index 1f8c300cf..31816df93 100644 --- a/services/ske/src/stackit/ske/models/__init__.py +++ b/services/ske/src/stackit/ske/models/__init__.py @@ -2,14 +2,14 @@ # flake8: noqa """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.0 + Generated by OpenAPI Generator (https://openapi-generator.tech) -Do not edit the class manually. + Do not edit the class manually. """ # noqa: E501 from stackit.ske.models.access import Access diff --git a/services/ske/src/stackit/ske/models/access.py b/services/ske/src/stackit/ske/models/access.py index 8afd1d150..93f5ae657 100644 --- a/services/ske/src/stackit/ske/models/access.py +++ b/services/ske/src/stackit/ske/models/access.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/access_scope.py b/services/ske/src/stackit/ske/models/access_scope.py index 33df1a77c..c6ed690a1 100644 --- a/services/ske/src/stackit/ske/models/access_scope.py +++ b/services/ske/src/stackit/ske/models/access_scope.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/acl.py b/services/ske/src/stackit/ske/models/acl.py index 8b861f440..049ccd449 100644 --- a/services/ske/src/stackit/ske/models/acl.py +++ b/services/ske/src/stackit/ske/models/acl.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/audit.py b/services/ske/src/stackit/ske/models/audit.py index 493dda44d..6922a8137 100644 --- a/services/ske/src/stackit/ske/models/audit.py +++ b/services/ske/src/stackit/ske/models/audit.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/availability_zone.py b/services/ske/src/stackit/ske/models/availability_zone.py index 46e01fde2..4bb7327ab 100644 --- a/services/ske/src/stackit/ske/models/availability_zone.py +++ b/services/ske/src/stackit/ske/models/availability_zone.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/cluster.py b/services/ske/src/stackit/ske/models/cluster.py index f55d19465..9ee9a16db 100644 --- a/services/ske/src/stackit/ske/models/cluster.py +++ b/services/ske/src/stackit/ske/models/cluster.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/cluster_error.py b/services/ske/src/stackit/ske/models/cluster_error.py index ed141843a..780390efa 100644 --- a/services/ske/src/stackit/ske/models/cluster_error.py +++ b/services/ske/src/stackit/ske/models/cluster_error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/cluster_status.py b/services/ske/src/stackit/ske/models/cluster_status.py index a099f9d2b..f1097c7c8 100644 --- a/services/ske/src/stackit/ske/models/cluster_status.py +++ b/services/ske/src/stackit/ske/models/cluster_status.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/cluster_status_state.py b/services/ske/src/stackit/ske/models/cluster_status_state.py index 50497bc4d..82eab6334 100644 --- a/services/ske/src/stackit/ske/models/cluster_status_state.py +++ b/services/ske/src/stackit/ske/models/cluster_status_state.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/create_kubeconfig_payload.py b/services/ske/src/stackit/ske/models/create_kubeconfig_payload.py index 1bfc71708..f396395bb 100644 --- a/services/ske/src/stackit/ske/models/create_kubeconfig_payload.py +++ b/services/ske/src/stackit/ske/models/create_kubeconfig_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/create_or_update_cluster_payload.py b/services/ske/src/stackit/ske/models/create_or_update_cluster_payload.py index 5fa2c6a5f..ed5a095f8 100644 --- a/services/ske/src/stackit/ske/models/create_or_update_cluster_payload.py +++ b/services/ske/src/stackit/ske/models/create_or_update_cluster_payload.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/credentials_rotation_state.py b/services/ske/src/stackit/ske/models/credentials_rotation_state.py index 8cd4623e1..76ebe5f9f 100644 --- a/services/ske/src/stackit/ske/models/credentials_rotation_state.py +++ b/services/ske/src/stackit/ske/models/credentials_rotation_state.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/cri.py b/services/ske/src/stackit/ske/models/cri.py index 0334bd463..6aa0dea95 100644 --- a/services/ske/src/stackit/ske/models/cri.py +++ b/services/ske/src/stackit/ske/models/cri.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/dns.py b/services/ske/src/stackit/ske/models/dns.py index f2c7995c1..e8caff1bf 100644 --- a/services/ske/src/stackit/ske/models/dns.py +++ b/services/ske/src/stackit/ske/models/dns.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/expiration_status.py b/services/ske/src/stackit/ske/models/expiration_status.py index 92b913363..af42bc701 100644 --- a/services/ske/src/stackit/ske/models/expiration_status.py +++ b/services/ske/src/stackit/ske/models/expiration_status.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/expiration_status_kubernetes.py b/services/ske/src/stackit/ske/models/expiration_status_kubernetes.py index eb85c8fbf..ca62a5340 100644 --- a/services/ske/src/stackit/ske/models/expiration_status_kubernetes.py +++ b/services/ske/src/stackit/ske/models/expiration_status_kubernetes.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/expiration_status_nodepool.py b/services/ske/src/stackit/ske/models/expiration_status_nodepool.py index 8ded77384..5cef32ee9 100644 --- a/services/ske/src/stackit/ske/models/expiration_status_nodepool.py +++ b/services/ske/src/stackit/ske/models/expiration_status_nodepool.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/extension.py b/services/ske/src/stackit/ske/models/extension.py index 06885f0b1..7f84c926b 100644 --- a/services/ske/src/stackit/ske/models/extension.py +++ b/services/ske/src/stackit/ske/models/extension.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/get_provider_options_request_version_state.py b/services/ske/src/stackit/ske/models/get_provider_options_request_version_state.py index a9dd17bcb..c92dcdb44 100644 --- a/services/ske/src/stackit/ske/models/get_provider_options_request_version_state.py +++ b/services/ske/src/stackit/ske/models/get_provider_options_request_version_state.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/hibernation.py b/services/ske/src/stackit/ske/models/hibernation.py index cbc36c10a..14e21d303 100644 --- a/services/ske/src/stackit/ske/models/hibernation.py +++ b/services/ske/src/stackit/ske/models/hibernation.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/hibernation_schedule.py b/services/ske/src/stackit/ske/models/hibernation_schedule.py index 62a04baa3..de6983af2 100644 --- a/services/ske/src/stackit/ske/models/hibernation_schedule.py +++ b/services/ske/src/stackit/ske/models/hibernation_schedule.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/idp.py b/services/ske/src/stackit/ske/models/idp.py index 032a89e1e..9feb120de 100644 --- a/services/ske/src/stackit/ske/models/idp.py +++ b/services/ske/src/stackit/ske/models/idp.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/idp_kubeconfig.py b/services/ske/src/stackit/ske/models/idp_kubeconfig.py index 9ce984027..c1895903a 100644 --- a/services/ske/src/stackit/ske/models/idp_kubeconfig.py +++ b/services/ske/src/stackit/ske/models/idp_kubeconfig.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/image.py b/services/ske/src/stackit/ske/models/image.py index 7830d880b..35b6be469 100644 --- a/services/ske/src/stackit/ske/models/image.py +++ b/services/ske/src/stackit/ske/models/image.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/kubeconfig.py b/services/ske/src/stackit/ske/models/kubeconfig.py index 333fa705a..4f0a6fcd3 100644 --- a/services/ske/src/stackit/ske/models/kubeconfig.py +++ b/services/ske/src/stackit/ske/models/kubeconfig.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/kubernetes.py b/services/ske/src/stackit/ske/models/kubernetes.py index 0ac2cc86b..1bd7547d3 100644 --- a/services/ske/src/stackit/ske/models/kubernetes.py +++ b/services/ske/src/stackit/ske/models/kubernetes.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/kubernetes_version.py b/services/ske/src/stackit/ske/models/kubernetes_version.py index 06d2e8557..09eb90630 100644 --- a/services/ske/src/stackit/ske/models/kubernetes_version.py +++ b/services/ske/src/stackit/ske/models/kubernetes_version.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/list_clusters_response.py b/services/ske/src/stackit/ske/models/list_clusters_response.py index f1133335a..9568fb975 100644 --- a/services/ske/src/stackit/ske/models/list_clusters_response.py +++ b/services/ske/src/stackit/ske/models/list_clusters_response.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/login_kubeconfig.py b/services/ske/src/stackit/ske/models/login_kubeconfig.py index b2527cf34..9804cd5fa 100644 --- a/services/ske/src/stackit/ske/models/login_kubeconfig.py +++ b/services/ske/src/stackit/ske/models/login_kubeconfig.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/machine.py b/services/ske/src/stackit/ske/models/machine.py index 231e3ae70..1269f8e5a 100644 --- a/services/ske/src/stackit/ske/models/machine.py +++ b/services/ske/src/stackit/ske/models/machine.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/machine_image.py b/services/ske/src/stackit/ske/models/machine_image.py index 0c43f6e2c..e16f0adee 100644 --- a/services/ske/src/stackit/ske/models/machine_image.py +++ b/services/ske/src/stackit/ske/models/machine_image.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/machine_image_version.py b/services/ske/src/stackit/ske/models/machine_image_version.py index 704e4797e..1396fa772 100644 --- a/services/ske/src/stackit/ske/models/machine_image_version.py +++ b/services/ske/src/stackit/ske/models/machine_image_version.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/machine_type.py b/services/ske/src/stackit/ske/models/machine_type.py index ccb187e0c..e4b4db2af 100644 --- a/services/ske/src/stackit/ske/models/machine_type.py +++ b/services/ske/src/stackit/ske/models/machine_type.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/maintenance.py b/services/ske/src/stackit/ske/models/maintenance.py index 1814554a3..dc2d89611 100644 --- a/services/ske/src/stackit/ske/models/maintenance.py +++ b/services/ske/src/stackit/ske/models/maintenance.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/maintenance_auto_update.py b/services/ske/src/stackit/ske/models/maintenance_auto_update.py index 1e76e3b85..75a4efa34 100644 --- a/services/ske/src/stackit/ske/models/maintenance_auto_update.py +++ b/services/ske/src/stackit/ske/models/maintenance_auto_update.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/network.py b/services/ske/src/stackit/ske/models/network.py index e40e3c90c..a9f0ee9a8 100644 --- a/services/ske/src/stackit/ske/models/network.py +++ b/services/ske/src/stackit/ske/models/network.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/nodepool.py b/services/ske/src/stackit/ske/models/nodepool.py index db763009a..c181559c7 100644 --- a/services/ske/src/stackit/ske/models/nodepool.py +++ b/services/ske/src/stackit/ske/models/nodepool.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/nodepool_kubernetes.py b/services/ske/src/stackit/ske/models/nodepool_kubernetes.py index b031dbd1a..10d9cd2fa 100644 --- a/services/ske/src/stackit/ske/models/nodepool_kubernetes.py +++ b/services/ske/src/stackit/ske/models/nodepool_kubernetes.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/observability.py b/services/ske/src/stackit/ske/models/observability.py index e2c17d879..1e47a74e0 100644 --- a/services/ske/src/stackit/ske/models/observability.py +++ b/services/ske/src/stackit/ske/models/observability.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/provider_options.py b/services/ske/src/stackit/ske/models/provider_options.py index f396287b3..a678da171 100644 --- a/services/ske/src/stackit/ske/models/provider_options.py +++ b/services/ske/src/stackit/ske/models/provider_options.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/runtime_error.py b/services/ske/src/stackit/ske/models/runtime_error.py index 1bbeb5e21..2c2f25e1a 100644 --- a/services/ske/src/stackit/ske/models/runtime_error.py +++ b/services/ske/src/stackit/ske/models/runtime_error.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/taint.py b/services/ske/src/stackit/ske/models/taint.py index 773e46a07..1a851b821 100644 --- a/services/ske/src/stackit/ske/models/taint.py +++ b/services/ske/src/stackit/ske/models/taint.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/time_window.py b/services/ske/src/stackit/ske/models/time_window.py index 036b4f941..fc84cb973 100644 --- a/services/ske/src/stackit/ske/models/time_window.py +++ b/services/ske/src/stackit/ske/models/time_window.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/v2_control_plane_network.py b/services/ske/src/stackit/ske/models/v2_control_plane_network.py index 9bb1eeb0f..8652d1b99 100644 --- a/services/ske/src/stackit/ske/models/v2_control_plane_network.py +++ b/services/ske/src/stackit/ske/models/v2_control_plane_network.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/volume.py b/services/ske/src/stackit/ske/models/volume.py index 324e4272f..d5c7ffb59 100644 --- a/services/ske/src/stackit/ske/models/volume.py +++ b/services/ske/src/stackit/ske/models/volume.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/models/volume_type.py b/services/ske/src/stackit/ske/models/volume_type.py index 3309ea3ae..e8c6e2ade 100644 --- a/services/ske/src/stackit/ske/models/volume_type.py +++ b/services/ske/src/stackit/ske/models/volume_type.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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/ske/src/stackit/ske/rest.py b/services/ske/src/stackit/ske/rest.py index 651ca7204..27074d05f 100644 --- a/services/ske/src/stackit/ske/rest.py +++ b/services/ske/src/stackit/ske/rest.py @@ -1,14 +1,14 @@ # coding: utf-8 """ -STACKIT Kubernetes Engine API + STACKIT Kubernetes Engine API -The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. + The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks. -The version of the OpenAPI document: 2.0 -Generated by OpenAPI Generator (https://openapi-generator.tech) + The version of the OpenAPI document: 2.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.ske.exceptions import ApiException, ApiValueError + RESTResponseType = requests.Response