stackit-runcommand 0.0.1a0__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.
- stackit/runcommand/__init__.py +48 -0
- stackit/runcommand/api/__init__.py +4 -0
- stackit/runcommand/api/default_api.py +1345 -0
- stackit/runcommand/api_client.py +627 -0
- stackit/runcommand/api_response.py +23 -0
- stackit/runcommand/configuration.py +112 -0
- stackit/runcommand/exceptions.py +199 -0
- stackit/runcommand/models/__init__.py +29 -0
- stackit/runcommand/models/command_details.py +122 -0
- stackit/runcommand/models/command_template.py +84 -0
- stackit/runcommand/models/command_template_response.py +99 -0
- stackit/runcommand/models/command_template_schema.py +103 -0
- stackit/runcommand/models/commands.py +113 -0
- stackit/runcommand/models/create_command_payload.py +85 -0
- stackit/runcommand/models/error_response.py +85 -0
- stackit/runcommand/models/get_commands_response.py +93 -0
- stackit/runcommand/models/model_field.py +98 -0
- stackit/runcommand/models/new_command_response.py +82 -0
- stackit/runcommand/models/parameters_schema.py +89 -0
- stackit/runcommand/models/properties.py +112 -0
- stackit/runcommand/py.typed +0 -0
- stackit/runcommand/rest.py +149 -0
- stackit_runcommand-0.0.1a0.dist-info/METADATA +44 -0
- stackit_runcommand-0.0.1a0.dist-info/RECORD +25 -0
- stackit_runcommand-0.0.1a0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
STACKIT Run Commands Service API
|
|
7
|
+
|
|
8
|
+
API endpoints for the STACKIT Run Commands Service API
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0
|
|
11
|
+
Contact: support@stackit.de
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501 docstring might be too long
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from stackit.runcommand.api.default_api import DefaultApi
|
|
22
|
+
from stackit.runcommand.api_client import ApiClient
|
|
23
|
+
|
|
24
|
+
# import ApiClient
|
|
25
|
+
from stackit.runcommand.api_response import ApiResponse
|
|
26
|
+
from stackit.runcommand.configuration import HostConfiguration
|
|
27
|
+
from stackit.runcommand.exceptions import (
|
|
28
|
+
ApiAttributeError,
|
|
29
|
+
ApiException,
|
|
30
|
+
ApiKeyError,
|
|
31
|
+
ApiTypeError,
|
|
32
|
+
ApiValueError,
|
|
33
|
+
OpenApiException,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
# import models into sdk package
|
|
37
|
+
from stackit.runcommand.models.command_details import CommandDetails
|
|
38
|
+
from stackit.runcommand.models.command_template import CommandTemplate
|
|
39
|
+
from stackit.runcommand.models.command_template_response import CommandTemplateResponse
|
|
40
|
+
from stackit.runcommand.models.command_template_schema import CommandTemplateSchema
|
|
41
|
+
from stackit.runcommand.models.commands import Commands
|
|
42
|
+
from stackit.runcommand.models.create_command_payload import CreateCommandPayload
|
|
43
|
+
from stackit.runcommand.models.error_response import ErrorResponse
|
|
44
|
+
from stackit.runcommand.models.get_commands_response import GetCommandsResponse
|
|
45
|
+
from stackit.runcommand.models.model_field import ModelField
|
|
46
|
+
from stackit.runcommand.models.new_command_response import NewCommandResponse
|
|
47
|
+
from stackit.runcommand.models.parameters_schema import ParametersSchema
|
|
48
|
+
from stackit.runcommand.models.properties import Properties
|