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.
- stackit/git/__init__.py +43 -0
- stackit/git/api/__init__.py +4 -0
- stackit/git/api/default_api.py +1135 -0
- stackit/git/api_client.py +627 -0
- stackit/git/api_response.py +23 -0
- stackit/git/configuration.py +138 -0
- stackit/git/exceptions.py +199 -0
- stackit/git/models/__init__.py +24 -0
- stackit/git/models/create_instance_payload.py +92 -0
- stackit/git/models/instance.py +116 -0
- stackit/git/models/internal_server_error_response.py +82 -0
- stackit/git/models/list_instances.py +99 -0
- stackit/git/models/unauthorized_response.py +82 -0
- stackit/git/py.typed +0 -0
- stackit/git/rest.py +149 -0
- stackit_git-0.1.0.dist-info/LICENSE.md +201 -0
- stackit_git-0.1.0.dist-info/METADATA +45 -0
- stackit_git-0.1.0.dist-info/NOTICE.txt +2 -0
- stackit_git-0.1.0.dist-info/RECORD +20 -0
- stackit_git-0.1.0.dist-info/WHEEL +4 -0
stackit/git/__init__.py
ADDED
|
@@ -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
|