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.
Files changed (24) hide show
  1. {stackit_git-0.1.2 → stackit_git-0.3.0}/PKG-INFO +1 -1
  2. {stackit_git-0.1.2 → stackit_git-0.3.0}/pyproject.toml +1 -1
  3. stackit_git-0.3.0/src/stackit/git/__init__.py +72 -0
  4. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api/default_api.py +364 -197
  5. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api_client.py +20 -7
  6. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/configuration.py +35 -13
  7. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/exceptions.py +22 -3
  8. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/__init__.py +6 -3
  9. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/create_instance_payload.py +24 -8
  10. stackit_git-0.3.0/src/stackit/git/models/flavor.py +101 -0
  11. stackit_git-0.3.0/src/stackit/git/models/generic_error_response.py +83 -0
  12. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/instance.py +25 -6
  13. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/internal_server_error_response.py +4 -4
  14. stackit_git-0.3.0/src/stackit/git/models/list_flavors.py +97 -0
  15. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/list_instances.py +4 -4
  16. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/models/unauthorized_response.py +4 -4
  17. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/rest.py +4 -4
  18. stackit_git-0.1.2/src/stackit/git/__init__.py +0 -43
  19. {stackit_git-0.1.2 → stackit_git-0.3.0}/LICENSE.md +0 -0
  20. {stackit_git-0.1.2 → stackit_git-0.3.0}/NOTICE.txt +0 -0
  21. {stackit_git-0.1.2 → stackit_git-0.3.0}/README.md +0 -0
  22. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api/__init__.py +0 -0
  23. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/api_response.py +0 -0
  24. {stackit_git-0.1.2 → stackit_git-0.3.0}/src/stackit/git/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stackit-git
3
- Version: 0.1.2
3
+ Version: 0.3.0
4
4
  Summary: STACKIT Git API
5
5
  Author: STACKIT Developer Tools
6
6
  Author-email: developer-tools@stackit.cloud
@@ -3,7 +3,7 @@ name = "stackit-git"
3
3
 
4
4
  [tool.poetry]
5
5
  name = "stackit-git"
6
- version = "v0.1.2"
6
+ version = "v0.3.0"
7
7
  authors = [
8
8
  "STACKIT Developer Tools <developer-tools@stackit.cloud>",
9
9
  ]
@@ -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
+ )