stackit-git 0.1.2__py3-none-any.whl → 0.2.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 +5 -2
- stackit/git/api/default_api.py +346 -158
- stackit/git/api_client.py +2 -2
- stackit/git/configuration.py +2 -2
- stackit/git/exceptions.py +2 -2
- stackit/git/models/__init__.py +5 -2
- stackit/git/models/create_instance_payload.py +18 -6
- stackit/git/models/flavor.py +99 -0
- stackit/git/models/generic_error_response.py +83 -0
- stackit/git/models/instance.py +40 -19
- stackit/git/models/internal_server_error_response.py +2 -2
- stackit/git/models/list_flavors.py +97 -0
- stackit/git/models/list_instances.py +4 -4
- stackit/git/models/unauthorized_response.py +2 -2
- stackit/git/rest.py +2 -2
- {stackit_git-0.1.2.dist-info → stackit_git-0.2.0.dist-info}/METADATA +1 -1
- stackit_git-0.2.0.dist-info/RECORD +23 -0
- stackit_git-0.1.2.dist-info/RECORD +0 -20
- {stackit_git-0.1.2.dist-info → stackit_git-0.2.0.dist-info}/LICENSE.md +0 -0
- {stackit_git-0.1.2.dist-info → stackit_git-0.2.0.dist-info}/NOTICE.txt +0 -0
- {stackit_git-0.1.2.dist-info → stackit_git-0.2.0.dist-info}/WHEEL +0 -0
stackit/git/__init__.py
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"""
|
|
6
6
|
STACKIT Git API
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
STACKIT Git management API.
|
|
9
9
|
|
|
10
|
-
The version of the OpenAPI document: 1beta.0.
|
|
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
|
|
|
@@ -35,9 +35,12 @@ from stackit.git.exceptions import (
|
|
|
35
35
|
|
|
36
36
|
# import models into sdk package
|
|
37
37
|
from stackit.git.models.create_instance_payload import CreateInstancePayload
|
|
38
|
+
from stackit.git.models.flavor import Flavor
|
|
39
|
+
from stackit.git.models.generic_error_response import GenericErrorResponse
|
|
38
40
|
from stackit.git.models.instance import Instance
|
|
39
41
|
from stackit.git.models.internal_server_error_response import (
|
|
40
42
|
InternalServerErrorResponse,
|
|
41
43
|
)
|
|
44
|
+
from stackit.git.models.list_flavors import ListFlavors
|
|
42
45
|
from stackit.git.models.list_instances import ListInstances
|
|
43
46
|
from stackit.git.models.unauthorized_response import UnauthorizedResponse
|