stackit-git 0.1.2__py3-none-any.whl → 0.3.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 CHANGED
@@ -5,39 +5,68 @@
5
5
  """
6
6
  STACKIT Git API
7
7
 
8
- Manage STACKIT Git instances.
8
+ STACKIT Git management API.
9
9
 
10
- The version of the OpenAPI document: 1beta.0.3
10
+ The version of the OpenAPI document: 1beta.0.4
11
11
  Contact: git@stackit.cloud
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
14
14
  Do not edit the class manually.
15
- """ # noqa: E501 docstring might be too long
15
+ """ # noqa: E501
16
16
 
17
17
 
18
18
  __version__ = "1.0.0"
19
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
+
20
42
  # import apis into sdk package
21
- from stackit.git.api.default_api import DefaultApi
22
- from stackit.git.api_client import ApiClient
43
+ from stackit.git.api.default_api import DefaultApi as DefaultApi
44
+ from stackit.git.api_client import ApiClient as ApiClient
23
45
 
24
46
  # 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
- )
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
35
55
 
36
56
  # import models into sdk package
37
- from stackit.git.models.create_instance_payload import CreateInstancePayload
38
- from stackit.git.models.instance import Instance
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
39
65
  from stackit.git.models.internal_server_error_response import (
40
- InternalServerErrorResponse,
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,
41
72
  )
42
- from stackit.git.models.list_instances import ListInstances
43
- from stackit.git.models.unauthorized_response import UnauthorizedResponse