stackit-logme 0.3.0__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.
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/PKG-INFO +1 -1
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/pyproject.toml +1 -1
- stackit_logme-0.3.2/src/stackit/logme/__init__.py +139 -0
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/api/default_api.py +77 -77
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/api_client.py +19 -6
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/configuration.py +32 -6
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/exceptions.py +20 -1
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/__init__.py +1 -1
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/backup.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/create_backup_response_item.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/create_instance_payload.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/create_instance_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/credentials.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/credentials_list_item.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/credentials_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/error.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/get_metrics_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/instance.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_last_operation.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_parameters.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_parameters_groks_inner.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/instance_schema.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/list_backups_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/list_credentials_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/list_instances_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/list_offerings_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/list_restores_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/model_schema.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/offering.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/partial_update_instance_payload.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/plan.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/raw_credentials.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/restore.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/trigger_restore_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/update_backups_config_payload.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/models/update_backups_config_response.py +2 -2
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/rest.py +2 -2
- stackit_logme-0.3.0/src/stackit/logme/__init__.py +0 -71
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/LICENSE.md +0 -0
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/NOTICE.txt +0 -0
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/README.md +0 -0
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/api/__init__.py +0 -0
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/api_response.py +0 -0
- {stackit_logme-0.3.0 → stackit_logme-0.3.2}/src/stackit/logme/py.typed +0 -0
|
@@ -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
|
+
)
|