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.
@@ -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
@@ -0,0 +1,4 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from stackit.runcommand.api.default_api import DefaultApi