stackit-git 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,43 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ STACKIT Git API
7
+
8
+ Manage STACKIT Git instances.
9
+
10
+ The version of the OpenAPI document: 1beta.0.3
11
+ Contact: git@stackit.cloud
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.git.api.default_api import DefaultApi
22
+ from stackit.git.api_client import ApiClient
23
+
24
+ # import ApiClient
25
+ from stackit.git.api_response import ApiResponse
26
+ from stackit.git.configuration import HostConfiguration
27
+ from stackit.git.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.git.models.create_instance_payload import CreateInstancePayload
38
+ from stackit.git.models.instance import Instance
39
+ from stackit.git.models.internal_server_error_response import (
40
+ InternalServerErrorResponse,
41
+ )
42
+ from stackit.git.models.list_instances import ListInstances
43
+ from stackit.git.models.unauthorized_response import UnauthorizedResponse
@@ -0,0 +1,4 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from stackit.git.api.default_api import DefaultApi