-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
48 lines (38 loc) · 1.69 KB
/
__init__.py
File metadata and controls
48 lines (38 loc) · 1.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
# 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 docstring might be too long
__version__ = "1.0.0"
# import apis into sdk package
from stackit.runcommand.api.default_api import DefaultApi
from stackit.runcommand.api_client import ApiClient
# import ApiClient
from stackit.runcommand.api_response import ApiResponse
from stackit.runcommand.configuration import HostConfiguration
from stackit.runcommand.exceptions import (
ApiAttributeError,
ApiException,
ApiKeyError,
ApiTypeError,
ApiValueError,
OpenApiException,
)
# import models into sdk package
from stackit.runcommand.models.command_details import CommandDetails
from stackit.runcommand.models.command_template import CommandTemplate
from stackit.runcommand.models.command_template_response import CommandTemplateResponse
from stackit.runcommand.models.command_template_schema import CommandTemplateSchema
from stackit.runcommand.models.commands import Commands
from stackit.runcommand.models.create_command_payload import CreateCommandPayload
from stackit.runcommand.models.error_response import ErrorResponse
from stackit.runcommand.models.get_commands_response import GetCommandsResponse
from stackit.runcommand.models.model_field import ModelField
from stackit.runcommand.models.new_command_response import NewCommandResponse
from stackit.runcommand.models.parameters_schema import ParametersSchema
from stackit.runcommand.models.properties import Properties