-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (33 loc) · 1.13 KB
/
__init__.py
File metadata and controls
43 lines (33 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
# flake8: noqa
"""
STACKIT Git API
Manage STACKIT Git instances.
The version of the OpenAPI document: 1beta.0.3
Contact: git@stackit.cloud
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501 docstring might be too long
__version__ = "1.0.0"
# import apis into sdk package
from stackit.git.api.default_api import DefaultApi
from stackit.git.api_client import ApiClient
# import ApiClient
from stackit.git.api_response import ApiResponse
from stackit.git.configuration import HostConfiguration
from stackit.git.exceptions import (
ApiAttributeError,
ApiException,
ApiKeyError,
ApiTypeError,
ApiValueError,
OpenApiException,
)
# import models into sdk package
from stackit.git.models.create_instance_payload import CreateInstancePayload
from stackit.git.models.instance import Instance
from stackit.git.models.internal_server_error_response import (
InternalServerErrorResponse,
)
from stackit.git.models.list_instances import ListInstances
from stackit.git.models.unauthorized_response import UnauthorizedResponse