-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
61 lines (54 loc) · 2.78 KB
/
__init__.py
File metadata and controls
61 lines (54 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# coding: utf-8
# flake8: noqa
"""
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 version of the OpenAPI document: 2.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from stackit.ske.models.access_scope import AccessScope
# import models into model package
from stackit.ske.models.acl import ACL
from stackit.ske.models.availability_zone import AvailabilityZone
from stackit.ske.models.cluster import Cluster
from stackit.ske.models.cluster_error import ClusterError
from stackit.ske.models.cluster_status import ClusterStatus
from stackit.ske.models.cluster_status_state import ClusterStatusState
from stackit.ske.models.create_kubeconfig_payload import CreateKubeconfigPayload
from stackit.ske.models.create_or_update_cluster_payload import (
CreateOrUpdateClusterPayload,
)
from stackit.ske.models.credentials_rotation_state import CredentialsRotationState
from stackit.ske.models.cri import CRI
from stackit.ske.models.dns import DNS
from stackit.ske.models.extension import Extension
from stackit.ske.models.get_provider_options_request_version_state import (
GetProviderOptionsRequestVersionState,
)
from stackit.ske.models.hibernation import Hibernation
from stackit.ske.models.hibernation_schedule import HibernationSchedule
from stackit.ske.models.idp import IDP
from stackit.ske.models.image import Image
from stackit.ske.models.kubeconfig import Kubeconfig
from stackit.ske.models.kubernetes import Kubernetes
from stackit.ske.models.kubernetes_version import KubernetesVersion
from stackit.ske.models.list_clusters_response import ListClustersResponse
from stackit.ske.models.login_kubeconfig import LoginKubeconfig
from stackit.ske.models.machine import Machine
from stackit.ske.models.machine_image import MachineImage
from stackit.ske.models.machine_image_version import MachineImageVersion
from stackit.ske.models.machine_type import MachineType
from stackit.ske.models.maintenance import Maintenance
from stackit.ske.models.maintenance_auto_update import MaintenanceAutoUpdate
from stackit.ske.models.network import Network
from stackit.ske.models.nodepool import Nodepool
from stackit.ske.models.nodepool_kubernetes import NodepoolKubernetes
from stackit.ske.models.observability import Observability
from stackit.ske.models.provider_options import ProviderOptions
from stackit.ske.models.runtime_error import RuntimeError
from stackit.ske.models.taint import Taint
from stackit.ske.models.time_window import TimeWindow
from stackit.ske.models.v2_control_plane_network import V2ControlPlaneNetwork
from stackit.ske.models.volume import Volume
from stackit.ske.models.volume_type import VolumeType