stackit-git 0.1.2__tar.gz → 0.3.0__tar.gz
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-0.1.2 → stackit_git-0.3.0}/PKG-INFO +1 -1
- {stackit_git-0.1.2 → stackit_git-0.3.0}/pyproject.toml +1 -1
- stackit_git-0.3.0/src/stackit/git/__init__.py +72 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api/default_api.py +364 -197
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api_client.py +20 -7
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/configuration.py +35 -13
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/exceptions.py +22 -3
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/__init__.py +6 -3
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/create_instance_payload.py +24 -8
- stackit_git-0.3.0/src/stackit/git/models/flavor.py +101 -0
- stackit_git-0.3.0/src/stackit/git/models/generic_error_response.py +83 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/instance.py +25 -6
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/internal_server_error_response.py +4 -4
- stackit_git-0.3.0/src/stackit/git/models/list_flavors.py +97 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/list_instances.py +4 -4
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/unauthorized_response.py +4 -4
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/rest.py +4 -4
- stackit_git-0.1.2/src/stackit/git/__init__.py +0 -43
- {stackit_git-0.1.2 → stackit_git-0.3.0}/LICENSE.md +0 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/NOTICE.txt +0 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/README.md +0 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api/__init__.py +0 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api_response.py +0 -0
- {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/py.typed +0 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
STACKIT Git API
|
|
7
|
+
|
|
8
|
+
STACKIT Git management API.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1beta.0.4
|
|
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
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"DefaultApi",
|
|
23
|
+
"ApiResponse",
|
|
24
|
+
"ApiClient",
|
|
25
|
+
"HostConfiguration",
|
|
26
|
+
"OpenApiException",
|
|
27
|
+
"ApiTypeError",
|
|
28
|
+
"ApiValueError",
|
|
29
|
+
"ApiKeyError",
|
|
30
|
+
"ApiAttributeError",
|
|
31
|
+
"ApiException",
|
|
32
|
+
"CreateInstancePayload",
|
|
33
|
+
"Flavor",
|
|
34
|
+
"GenericErrorResponse",
|
|
35
|
+
"Instance",
|
|
36
|
+
"InternalServerErrorResponse",
|
|
37
|
+
"ListFlavors",
|
|
38
|
+
"ListInstances",
|
|
39
|
+
"UnauthorizedResponse",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
# import apis into sdk package
|
|
43
|
+
from stackit.git.api.default_api import DefaultApi as DefaultApi
|
|
44
|
+
from stackit.git.api_client import ApiClient as ApiClient
|
|
45
|
+
|
|
46
|
+
# import ApiClient
|
|
47
|
+
from stackit.git.api_response import ApiResponse as ApiResponse
|
|
48
|
+
from stackit.git.configuration import HostConfiguration as HostConfiguration
|
|
49
|
+
from stackit.git.exceptions import ApiAttributeError as ApiAttributeError
|
|
50
|
+
from stackit.git.exceptions import ApiException as ApiException
|
|
51
|
+
from stackit.git.exceptions import ApiKeyError as ApiKeyError
|
|
52
|
+
from stackit.git.exceptions import ApiTypeError as ApiTypeError
|
|
53
|
+
from stackit.git.exceptions import ApiValueError as ApiValueError
|
|
54
|
+
from stackit.git.exceptions import OpenApiException as OpenApiException
|
|
55
|
+
|
|
56
|
+
# import models into sdk package
|
|
57
|
+
from stackit.git.models.create_instance_payload import (
|
|
58
|
+
CreateInstancePayload as CreateInstancePayload,
|
|
59
|
+
)
|
|
60
|
+
from stackit.git.models.flavor import Flavor as Flavor
|
|
61
|
+
from stackit.git.models.generic_error_response import (
|
|
62
|
+
GenericErrorResponse as GenericErrorResponse,
|
|
63
|
+
)
|
|
64
|
+
from stackit.git.models.instance import Instance as Instance
|
|
65
|
+
from stackit.git.models.internal_server_error_response import (
|
|
66
|
+
InternalServerErrorResponse as InternalServerErrorResponse,
|
|
67
|
+
)
|
|
68
|
+
from stackit.git.models.list_flavors import ListFlavors as ListFlavors
|
|
69
|
+
from stackit.git.models.list_instances import ListInstances as ListInstances
|
|
70
|
+
from stackit.git.models.unauthorized_response import (
|
|
71
|
+
UnauthorizedResponse as UnauthorizedResponse,
|
|
72
|
+
)
|