-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
133 lines (122 loc) · 4.69 KB
/
__init__.py
File metadata and controls
133 lines (122 loc) · 4.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# coding: utf-8
# flake8: noqa
"""
SKE-API
The SKE API provides endpoints to create, update, delete clusters within STACKIT portal 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
__version__ = "1.0.0"
# Define package exports
__all__ = [
"DefaultApi",
"ApiResponse",
"ApiClient",
"HostConfiguration",
"OpenApiException",
"ApiTypeError",
"ApiValueError",
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"ACL",
"AvailabilityZone",
"CRI",
"Cluster",
"ClusterError",
"ClusterStatus",
"ClusterStatusState",
"CreateKubeconfigPayload",
"CreateOrUpdateClusterPayload",
"CredentialsRotationState",
"DNS",
"Extension",
"Hibernation",
"HibernationSchedule",
"Image",
"Kubeconfig",
"Kubernetes",
"KubernetesVersion",
"ListClustersResponse",
"LoginKubeconfig",
"Machine",
"MachineImage",
"MachineImageVersion",
"MachineType",
"Maintenance",
"MaintenanceAutoUpdate",
"Network",
"Nodepool",
"Observability",
"ProviderOptions",
"RuntimeError",
"Taint",
"TimeWindow",
"Volume",
"VolumeType",
]
# import apis into sdk package
from stackit.ske.api.default_api import DefaultApi as DefaultApi
from stackit.ske.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.ske.api_response import ApiResponse as ApiResponse
from stackit.ske.configuration import HostConfiguration as HostConfiguration
from stackit.ske.exceptions import ApiAttributeError as ApiAttributeError
from stackit.ske.exceptions import ApiException as ApiException
from stackit.ske.exceptions import ApiKeyError as ApiKeyError
from stackit.ske.exceptions import ApiTypeError as ApiTypeError
from stackit.ske.exceptions import ApiValueError as ApiValueError
from stackit.ske.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.ske.models.acl import ACL as ACL
from stackit.ske.models.availability_zone import AvailabilityZone as AvailabilityZone
from stackit.ske.models.cluster import Cluster as Cluster
from stackit.ske.models.cluster_error import ClusterError as ClusterError
from stackit.ske.models.cluster_status import ClusterStatus as ClusterStatus
from stackit.ske.models.cluster_status_state import (
ClusterStatusState as ClusterStatusState,
)
from stackit.ske.models.create_kubeconfig_payload import (
CreateKubeconfigPayload as CreateKubeconfigPayload,
)
from stackit.ske.models.create_or_update_cluster_payload import (
CreateOrUpdateClusterPayload as CreateOrUpdateClusterPayload,
)
from stackit.ske.models.credentials_rotation_state import (
CredentialsRotationState as CredentialsRotationState,
)
from stackit.ske.models.cri import CRI as CRI
from stackit.ske.models.dns import DNS as DNS
from stackit.ske.models.extension import Extension as Extension
from stackit.ske.models.hibernation import Hibernation as Hibernation
from stackit.ske.models.hibernation_schedule import (
HibernationSchedule as HibernationSchedule,
)
from stackit.ske.models.image import Image as Image
from stackit.ske.models.kubeconfig import Kubeconfig as Kubeconfig
from stackit.ske.models.kubernetes import Kubernetes as Kubernetes
from stackit.ske.models.kubernetes_version import KubernetesVersion as KubernetesVersion
from stackit.ske.models.list_clusters_response import (
ListClustersResponse as ListClustersResponse,
)
from stackit.ske.models.login_kubeconfig import LoginKubeconfig as LoginKubeconfig
from stackit.ske.models.machine import Machine as Machine
from stackit.ske.models.machine_image import MachineImage as MachineImage
from stackit.ske.models.machine_image_version import (
MachineImageVersion as MachineImageVersion,
)
from stackit.ske.models.machine_type import MachineType as MachineType
from stackit.ske.models.maintenance import Maintenance as Maintenance
from stackit.ske.models.maintenance_auto_update import (
MaintenanceAutoUpdate as MaintenanceAutoUpdate,
)
from stackit.ske.models.network import Network as Network
from stackit.ske.models.nodepool import Nodepool as Nodepool
from stackit.ske.models.observability import Observability as Observability
from stackit.ske.models.provider_options import ProviderOptions as ProviderOptions
from stackit.ske.models.runtime_error import RuntimeError as RuntimeError
from stackit.ske.models.taint import Taint as Taint
from stackit.ske.models.time_window import TimeWindow as TimeWindow
from stackit.ske.models.volume import Volume as Volume
from stackit.ske.models.volume_type import VolumeType as VolumeType