stackit-edge 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,79 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ STACKIT Edge Cloud API
7
+
8
+ This API provides endpoints for managing STACKIT Edge Cloud instances.
9
+
10
+ The version of the OpenAPI document: 1beta1
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "DefaultApi",
22
+ "ApiResponse",
23
+ "ApiClient",
24
+ "HostConfiguration",
25
+ "OpenApiException",
26
+ "ApiTypeError",
27
+ "ApiValueError",
28
+ "ApiKeyError",
29
+ "ApiAttributeError",
30
+ "ApiException",
31
+ "BadRequest",
32
+ "CreateInstancePayload",
33
+ "Instance",
34
+ "InstanceList",
35
+ "Kubeconfig",
36
+ "Plan",
37
+ "PlanList",
38
+ "Token",
39
+ "UnauthorizedRequest",
40
+ "UpdateInstanceByNamePayload",
41
+ "UpdateInstancePayload",
42
+ "User",
43
+ ]
44
+
45
+ # import apis into sdk package
46
+ from stackit.edge.api.default_api import DefaultApi as DefaultApi
47
+ from stackit.edge.api_client import ApiClient as ApiClient
48
+
49
+ # import ApiClient
50
+ from stackit.edge.api_response import ApiResponse as ApiResponse
51
+ from stackit.edge.configuration import HostConfiguration as HostConfiguration
52
+ from stackit.edge.exceptions import ApiAttributeError as ApiAttributeError
53
+ from stackit.edge.exceptions import ApiException as ApiException
54
+ from stackit.edge.exceptions import ApiKeyError as ApiKeyError
55
+ from stackit.edge.exceptions import ApiTypeError as ApiTypeError
56
+ from stackit.edge.exceptions import ApiValueError as ApiValueError
57
+ from stackit.edge.exceptions import OpenApiException as OpenApiException
58
+
59
+ # import models into sdk package
60
+ from stackit.edge.models.bad_request import BadRequest as BadRequest
61
+ from stackit.edge.models.create_instance_payload import (
62
+ CreateInstancePayload as CreateInstancePayload,
63
+ )
64
+ from stackit.edge.models.instance import Instance as Instance
65
+ from stackit.edge.models.instance_list import InstanceList as InstanceList
66
+ from stackit.edge.models.kubeconfig import Kubeconfig as Kubeconfig
67
+ from stackit.edge.models.plan import Plan as Plan
68
+ from stackit.edge.models.plan_list import PlanList as PlanList
69
+ from stackit.edge.models.token import Token as Token
70
+ from stackit.edge.models.unauthorized_request import (
71
+ UnauthorizedRequest as UnauthorizedRequest,
72
+ )
73
+ from stackit.edge.models.update_instance_by_name_payload import (
74
+ UpdateInstanceByNamePayload as UpdateInstanceByNamePayload,
75
+ )
76
+ from stackit.edge.models.update_instance_payload import (
77
+ UpdateInstancePayload as UpdateInstancePayload,
78
+ )
79
+ from stackit.edge.models.user import User as User
@@ -0,0 +1,4 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from stackit.edge.api.default_api import DefaultApi