-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
86 lines (75 loc) · 2.81 KB
/
__init__.py
File metadata and controls
86 lines (75 loc) · 2.81 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
# coding: utf-8
# flake8: noqa
"""
STACKIT Run Commands Service API
API endpoints for the STACKIT Run Commands Service API
The version of the OpenAPI document: 2.0
Contact: support@stackit.de
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",
"CommandDetails",
"CommandTemplate",
"CommandTemplateResponse",
"CommandTemplateSchema",
"Commands",
"CreateCommandPayload",
"ErrorResponse",
"GetCommandsResponse",
"ModelField",
"NewCommandResponse",
"ParametersSchema",
"Properties",
]
# import apis into sdk package
from stackit.runcommand.api.default_api import DefaultApi as DefaultApi
from stackit.runcommand.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.runcommand.api_response import ApiResponse as ApiResponse
from stackit.runcommand.configuration import HostConfiguration as HostConfiguration
from stackit.runcommand.exceptions import ApiAttributeError as ApiAttributeError
from stackit.runcommand.exceptions import ApiException as ApiException
from stackit.runcommand.exceptions import ApiKeyError as ApiKeyError
from stackit.runcommand.exceptions import ApiTypeError as ApiTypeError
from stackit.runcommand.exceptions import ApiValueError as ApiValueError
from stackit.runcommand.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.runcommand.models.command_details import CommandDetails as CommandDetails
from stackit.runcommand.models.command_template import (
CommandTemplate as CommandTemplate,
)
from stackit.runcommand.models.command_template_response import (
CommandTemplateResponse as CommandTemplateResponse,
)
from stackit.runcommand.models.command_template_schema import (
CommandTemplateSchema as CommandTemplateSchema,
)
from stackit.runcommand.models.commands import Commands as Commands
from stackit.runcommand.models.create_command_payload import (
CreateCommandPayload as CreateCommandPayload,
)
from stackit.runcommand.models.error_response import ErrorResponse as ErrorResponse
from stackit.runcommand.models.get_commands_response import (
GetCommandsResponse as GetCommandsResponse,
)
from stackit.runcommand.models.model_field import ModelField as ModelField
from stackit.runcommand.models.new_command_response import (
NewCommandResponse as NewCommandResponse,
)
from stackit.runcommand.models.parameters_schema import (
ParametersSchema as ParametersSchema,
)
from stackit.runcommand.models.properties import Properties as Properties