stackit-logme 0.3.1__tar.gz → 0.3.2__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 (44) hide show
  1. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/PKG-INFO +1 -1
  2. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/pyproject.toml +1 -1
  3. stackit_logme-0.3.2/src/stackit/logme/__init__.py +139 -0
  4. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/api/default_api.py +77 -77
  5. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/api_client.py +18 -5
  6. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/configuration.py +33 -11
  7. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/exceptions.py +20 -1
  8. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/__init__.py +1 -1
  9. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/backup.py +2 -2
  10. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/create_backup_response_item.py +2 -2
  11. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/create_instance_payload.py +2 -2
  12. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/create_instance_response.py +2 -2
  13. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/credentials.py +2 -2
  14. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/credentials_list_item.py +2 -2
  15. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/credentials_response.py +2 -2
  16. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/error.py +2 -2
  17. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/get_metrics_response.py +2 -2
  18. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/instance.py +2 -2
  19. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_last_operation.py +2 -2
  20. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_parameters.py +2 -2
  21. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_parameters_groks_inner.py +2 -2
  22. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_schema.py +2 -2
  23. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/list_backups_response.py +2 -2
  24. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/list_credentials_response.py +2 -2
  25. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/list_instances_response.py +2 -2
  26. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/list_offerings_response.py +2 -2
  27. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/list_restores_response.py +2 -2
  28. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/model_schema.py +2 -2
  29. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/offering.py +2 -2
  30. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/partial_update_instance_payload.py +2 -2
  31. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/plan.py +2 -2
  32. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/raw_credentials.py +2 -2
  33. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/restore.py +2 -2
  34. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/trigger_restore_response.py +2 -2
  35. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/update_backups_config_payload.py +2 -2
  36. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/models/update_backups_config_response.py +2 -2
  37. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/rest.py +2 -2
  38. stackit_logme-0.3.1/src/stackit/logme/__init__.py +0 -71
  39. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/LICENSE.md +0 -0
  40. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/NOTICE.txt +0 -0
  41. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/README.md +0 -0
  42. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/api/__init__.py +0 -0
  43. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/api_response.py +0 -0
  44. {stackit_logme-0.3.1 → stackit_logme-0.3.2}/src/stackit/logme/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stackit-logme
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: STACKIT LogMe API
5
5
  Author: STACKIT Developer Tools
6
6
  Author-email: developer-tools@stackit.cloud
@@ -3,7 +3,7 @@ name = "stackit-logme"
3
3
 
4
4
  [tool.poetry]
5
5
  name = "stackit-logme"
6
- version = "v0.3.1"
6
+ version = "v0.3.2"
7
7
  authors = [
8
8
  "STACKIT Developer Tools <developer-tools@stackit.cloud>",
9
9
  ]
@@ -0,0 +1,139 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ STACKIT LogMe API
7
+
8
+ The STACKIT LogMe API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
9
+
10
+ The version of the OpenAPI document: 1.1.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "DefaultApi",
22
+ "ApiResponse",
23
+ "ApiClient",
24
+ "HostConfiguration",
25
+ "OpenApiException",
26
+ "ApiTypeError",
27
+ "ApiValueError",
28
+ "ApiKeyError",
29
+ "ApiAttributeError",
30
+ "ApiException",
31
+ "Backup",
32
+ "CreateBackupResponseItem",
33
+ "CreateInstancePayload",
34
+ "CreateInstanceResponse",
35
+ "Credentials",
36
+ "CredentialsListItem",
37
+ "CredentialsResponse",
38
+ "Error",
39
+ "GetMetricsResponse",
40
+ "Instance",
41
+ "InstanceLastOperation",
42
+ "InstanceParameters",
43
+ "InstanceParametersGroksInner",
44
+ "InstanceSchema",
45
+ "ListBackupsResponse",
46
+ "ListCredentialsResponse",
47
+ "ListInstancesResponse",
48
+ "ListOfferingsResponse",
49
+ "ListRestoresResponse",
50
+ "ModelSchema",
51
+ "Offering",
52
+ "PartialUpdateInstancePayload",
53
+ "Plan",
54
+ "RawCredentials",
55
+ "Restore",
56
+ "TriggerRestoreResponse",
57
+ "UpdateBackupsConfigPayload",
58
+ "UpdateBackupsConfigResponse",
59
+ ]
60
+
61
+ # import apis into sdk package
62
+ from stackit.logme.api.default_api import DefaultApi as DefaultApi
63
+ from stackit.logme.api_client import ApiClient as ApiClient
64
+
65
+ # import ApiClient
66
+ from stackit.logme.api_response import ApiResponse as ApiResponse
67
+ from stackit.logme.configuration import HostConfiguration as HostConfiguration
68
+ from stackit.logme.exceptions import ApiAttributeError as ApiAttributeError
69
+ from stackit.logme.exceptions import ApiException as ApiException
70
+ from stackit.logme.exceptions import ApiKeyError as ApiKeyError
71
+ from stackit.logme.exceptions import ApiTypeError as ApiTypeError
72
+ from stackit.logme.exceptions import ApiValueError as ApiValueError
73
+ from stackit.logme.exceptions import OpenApiException as OpenApiException
74
+
75
+ # import models into sdk package
76
+ from stackit.logme.models.backup import Backup as Backup
77
+ from stackit.logme.models.create_backup_response_item import (
78
+ CreateBackupResponseItem as CreateBackupResponseItem,
79
+ )
80
+ from stackit.logme.models.create_instance_payload import (
81
+ CreateInstancePayload as CreateInstancePayload,
82
+ )
83
+ from stackit.logme.models.create_instance_response import (
84
+ CreateInstanceResponse as CreateInstanceResponse,
85
+ )
86
+ from stackit.logme.models.credentials import Credentials as Credentials
87
+ from stackit.logme.models.credentials_list_item import (
88
+ CredentialsListItem as CredentialsListItem,
89
+ )
90
+ from stackit.logme.models.credentials_response import (
91
+ CredentialsResponse as CredentialsResponse,
92
+ )
93
+ from stackit.logme.models.error import Error as Error
94
+ from stackit.logme.models.get_metrics_response import (
95
+ GetMetricsResponse as GetMetricsResponse,
96
+ )
97
+ from stackit.logme.models.instance import Instance as Instance
98
+ from stackit.logme.models.instance_last_operation import (
99
+ InstanceLastOperation as InstanceLastOperation,
100
+ )
101
+ from stackit.logme.models.instance_parameters import (
102
+ InstanceParameters as InstanceParameters,
103
+ )
104
+ from stackit.logme.models.instance_parameters_groks_inner import (
105
+ InstanceParametersGroksInner as InstanceParametersGroksInner,
106
+ )
107
+ from stackit.logme.models.instance_schema import InstanceSchema as InstanceSchema
108
+ from stackit.logme.models.list_backups_response import (
109
+ ListBackupsResponse as ListBackupsResponse,
110
+ )
111
+ from stackit.logme.models.list_credentials_response import (
112
+ ListCredentialsResponse as ListCredentialsResponse,
113
+ )
114
+ from stackit.logme.models.list_instances_response import (
115
+ ListInstancesResponse as ListInstancesResponse,
116
+ )
117
+ from stackit.logme.models.list_offerings_response import (
118
+ ListOfferingsResponse as ListOfferingsResponse,
119
+ )
120
+ from stackit.logme.models.list_restores_response import (
121
+ ListRestoresResponse as ListRestoresResponse,
122
+ )
123
+ from stackit.logme.models.model_schema import ModelSchema as ModelSchema
124
+ from stackit.logme.models.offering import Offering as Offering
125
+ from stackit.logme.models.partial_update_instance_payload import (
126
+ PartialUpdateInstancePayload as PartialUpdateInstancePayload,
127
+ )
128
+ from stackit.logme.models.plan import Plan as Plan
129
+ from stackit.logme.models.raw_credentials import RawCredentials as RawCredentials
130
+ from stackit.logme.models.restore import Restore as Restore
131
+ from stackit.logme.models.trigger_restore_response import (
132
+ TriggerRestoreResponse as TriggerRestoreResponse,
133
+ )
134
+ from stackit.logme.models.update_backups_config_payload import (
135
+ UpdateBackupsConfigPayload as UpdateBackupsConfigPayload,
136
+ )
137
+ from stackit.logme.models.update_backups_config_response import (
138
+ UpdateBackupsConfigResponse as UpdateBackupsConfigResponse,
139
+ )