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 CHANGED
@@ -5,9 +5,9 @@
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
 
@@ -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