|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# flake8: noqa |
| 4 | + |
| 5 | +""" |
| 6 | + SKE-API |
| 7 | +
|
| 8 | + The SKE API provides endpoints to create, update, delete clusters within STACKIT portal projects and to trigger further cluster management tasks. |
| 9 | +
|
| 10 | + The version of the OpenAPI document: 1.1 |
| 11 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 12 | +
|
| 13 | + Do not edit the class manually. |
| 14 | +""" # noqa: E501 docstring might be too long |
| 15 | + |
| 16 | + |
| 17 | +__version__ = "1.0.0" |
| 18 | + |
| 19 | +# import apis into sdk package |
| 20 | +from stackit.ske.api.default_api import DefaultApi |
| 21 | +from stackit.ske.api_client import ApiClient |
| 22 | + |
| 23 | +# import ApiClient |
| 24 | +from stackit.ske.api_response import ApiResponse |
| 25 | +from stackit.ske.configuration import HostConfiguration |
| 26 | +from stackit.ske.exceptions import ( |
| 27 | + ApiAttributeError, |
| 28 | + ApiException, |
| 29 | + ApiKeyError, |
| 30 | + ApiTypeError, |
| 31 | + ApiValueError, |
| 32 | + OpenApiException, |
| 33 | +) |
| 34 | + |
| 35 | +# import models into sdk package |
| 36 | +from stackit.ske.models.acl import ACL |
| 37 | +from stackit.ske.models.argus import Argus |
| 38 | +from stackit.ske.models.availability_zone import AvailabilityZone |
| 39 | +from stackit.ske.models.cluster import Cluster |
| 40 | +from stackit.ske.models.cluster_status import ClusterStatus |
| 41 | +from stackit.ske.models.cluster_status_state import ClusterStatusState |
| 42 | +from stackit.ske.models.create_kubeconfig_payload import CreateKubeconfigPayload |
| 43 | +from stackit.ske.models.create_or_update_cluster_payload import ( |
| 44 | + CreateOrUpdateClusterPayload, |
| 45 | +) |
| 46 | +from stackit.ske.models.credentials import Credentials |
| 47 | +from stackit.ske.models.credentials_rotation_state import CredentialsRotationState |
| 48 | +from stackit.ske.models.cri import CRI |
| 49 | +from stackit.ske.models.dns import DNS |
| 50 | +from stackit.ske.models.extension import Extension |
| 51 | +from stackit.ske.models.hibernation import Hibernation |
| 52 | +from stackit.ske.models.hibernation_schedule import HibernationSchedule |
| 53 | +from stackit.ske.models.image import Image |
| 54 | +from stackit.ske.models.kubeconfig import Kubeconfig |
| 55 | +from stackit.ske.models.kubernetes import Kubernetes |
| 56 | +from stackit.ske.models.kubernetes_version import KubernetesVersion |
| 57 | +from stackit.ske.models.list_clusters_response import ListClustersResponse |
| 58 | +from stackit.ske.models.login_kubeconfig import LoginKubeconfig |
| 59 | +from stackit.ske.models.machine import Machine |
| 60 | +from stackit.ske.models.machine_image import MachineImage |
| 61 | +from stackit.ske.models.machine_image_version import MachineImageVersion |
| 62 | +from stackit.ske.models.machine_type import MachineType |
| 63 | +from stackit.ske.models.maintenance import Maintenance |
| 64 | +from stackit.ske.models.maintenance_auto_update import MaintenanceAutoUpdate |
| 65 | +from stackit.ske.models.network import Network |
| 66 | +from stackit.ske.models.nodepool import Nodepool |
| 67 | +from stackit.ske.models.project_response import ProjectResponse |
| 68 | +from stackit.ske.models.project_state import ProjectState |
| 69 | +from stackit.ske.models.provider_options import ProviderOptions |
| 70 | +from stackit.ske.models.runtime_error import RuntimeError |
| 71 | +from stackit.ske.models.taint import Taint |
| 72 | +from stackit.ske.models.time_window import TimeWindow |
| 73 | +from stackit.ske.models.volume import Volume |
| 74 | +from stackit.ske.models.volume_type import VolumeType |
0 commit comments