stackit-mongodbflex 0.0.1a0__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/mongodbflex/__init__.py +103 -0
- stackit/mongodbflex/api/__init__.py +4 -0
- stackit/mongodbflex/api/default_api.py +6867 -0
- stackit/mongodbflex/api_client.py +627 -0
- stackit/mongodbflex/api_response.py +23 -0
- stackit/mongodbflex/configuration.py +112 -0
- stackit/mongodbflex/exceptions.py +199 -0
- stackit/mongodbflex/models/__init__.py +84 -0
- stackit/mongodbflex/models/acl.py +82 -0
- stackit/mongodbflex/models/backup.py +100 -0
- stackit/mongodbflex/models/backup_schedule.py +103 -0
- stackit/mongodbflex/models/clone_instance_payload.py +83 -0
- stackit/mongodbflex/models/clone_instance_response.py +82 -0
- stackit/mongodbflex/models/create_instance_payload.py +121 -0
- stackit/mongodbflex/models/create_instance_response.py +82 -0
- stackit/mongodbflex/models/create_user_payload.py +86 -0
- stackit/mongodbflex/models/create_user_response.py +87 -0
- stackit/mongodbflex/models/data_point.py +83 -0
- stackit/mongodbflex/models/error.py +92 -0
- stackit/mongodbflex/models/flavor.py +92 -0
- stackit/mongodbflex/models/get_backup_response.py +87 -0
- stackit/mongodbflex/models/get_instance_response.py +87 -0
- stackit/mongodbflex/models/get_user_response.py +89 -0
- stackit/mongodbflex/models/handlers_infra_flavor.py +94 -0
- stackit/mongodbflex/models/handlers_infra_get_flavors_response.py +99 -0
- stackit/mongodbflex/models/handlers_instances_get_instance_response.py +87 -0
- stackit/mongodbflex/models/handlers_instances_slow_queries_response.py +103 -0
- stackit/mongodbflex/models/handlers_instances_suggested_indexes_response.py +118 -0
- stackit/mongodbflex/models/host.py +101 -0
- stackit/mongodbflex/models/host_metric.py +103 -0
- stackit/mongodbflex/models/instance.py +128 -0
- stackit/mongodbflex/models/instance_list_instance.py +84 -0
- stackit/mongodbflex/models/instance_response_user.py +96 -0
- stackit/mongodbflex/models/list_backups_response.py +97 -0
- stackit/mongodbflex/models/list_flavors_response.py +99 -0
- stackit/mongodbflex/models/list_instances_response.py +101 -0
- stackit/mongodbflex/models/list_metrics_response.py +93 -0
- stackit/mongodbflex/models/list_restore_jobs_response.py +99 -0
- stackit/mongodbflex/models/list_storages_response.py +95 -0
- stackit/mongodbflex/models/list_user.py +83 -0
- stackit/mongodbflex/models/list_users_response.py +99 -0
- stackit/mongodbflex/models/list_versions_response.py +82 -0
- stackit/mongodbflex/models/mongodbatlas_operation.py +97 -0
- stackit/mongodbflex/models/mongodbatlas_stats.py +98 -0
- stackit/mongodbflex/models/partial_update_instance_payload.py +121 -0
- stackit/mongodbflex/models/partial_update_user_payload.py +83 -0
- stackit/mongodbflex/models/restore_instance_payload.py +83 -0
- stackit/mongodbflex/models/restore_instance_response.py +89 -0
- stackit/mongodbflex/models/restore_instance_status.py +94 -0
- stackit/mongodbflex/models/shape.py +122 -0
- stackit/mongodbflex/models/slow_query.py +83 -0
- stackit/mongodbflex/models/storage.py +83 -0
- stackit/mongodbflex/models/storage_range.py +83 -0
- stackit/mongodbflex/models/suggested_index.py +102 -0
- stackit/mongodbflex/models/update_backup_schedule_payload.py +103 -0
- stackit/mongodbflex/models/update_instance_payload.py +121 -0
- stackit/mongodbflex/models/update_instance_response.py +87 -0
- stackit/mongodbflex/models/update_user_payload.py +83 -0
- stackit/mongodbflex/models/user.py +100 -0
- stackit/mongodbflex/py.typed +0 -0
- stackit/mongodbflex/rest.py +149 -0
- stackit_mongodbflex-0.0.1a0.dist-info/METADATA +45 -0
- stackit_mongodbflex-0.0.1a0.dist-info/RECORD +64 -0
- stackit_mongodbflex-0.0.1a0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
STACKIT MongoDB Service API
|
|
5
|
+
|
|
6
|
+
This is the documentation for the STACKIT MongoDB Flex Service API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: support@stackit.cloud
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501 docstring might be too long
|
|
14
|
+
|
|
15
|
+
import io
|
|
16
|
+
import json
|
|
17
|
+
import re
|
|
18
|
+
|
|
19
|
+
import requests
|
|
20
|
+
from stackit.core.authorization import Authorization
|
|
21
|
+
from stackit.core.configuration import Configuration
|
|
22
|
+
|
|
23
|
+
from stackit.mongodbflex.exceptions import ApiException, ApiValueError
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
RESTResponseType = requests.Response
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class RESTResponse(io.IOBase):
|
|
30
|
+
|
|
31
|
+
def __init__(self, resp) -> None:
|
|
32
|
+
self.response = resp
|
|
33
|
+
self.status = resp.status_code
|
|
34
|
+
self.reason = resp.reason
|
|
35
|
+
self.data = None
|
|
36
|
+
|
|
37
|
+
def read(self):
|
|
38
|
+
if self.data is None:
|
|
39
|
+
self.data = self.response.content
|
|
40
|
+
return self.data
|
|
41
|
+
|
|
42
|
+
def getheaders(self):
|
|
43
|
+
"""Returns a dictionary of the response headers."""
|
|
44
|
+
return self.response.headers
|
|
45
|
+
|
|
46
|
+
def getheader(self, name, default=None):
|
|
47
|
+
"""Returns a given response header."""
|
|
48
|
+
return self.response.headers.get(name, default)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class RESTClientObject:
|
|
52
|
+
def __init__(self, config: Configuration) -> None:
|
|
53
|
+
self.session = config.custom_http_session if config.custom_http_session else requests.Session()
|
|
54
|
+
authorization = Authorization(config)
|
|
55
|
+
self.session.auth = authorization.auth_method
|
|
56
|
+
|
|
57
|
+
def request(self, method, url, headers=None, body=None, post_params=None, _request_timeout=None):
|
|
58
|
+
"""Perform requests.
|
|
59
|
+
|
|
60
|
+
:param method: http request method
|
|
61
|
+
:param url: http request url
|
|
62
|
+
:param headers: http request headers
|
|
63
|
+
:param body: request json body, for `application/json`
|
|
64
|
+
:param post_params: request post parameters,
|
|
65
|
+
`application/x-www-form-urlencoded`
|
|
66
|
+
and `multipart/form-data`
|
|
67
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
68
|
+
number provided, it will be total request
|
|
69
|
+
timeout. It can also be a pair (tuple) of
|
|
70
|
+
(connection, read) timeouts.
|
|
71
|
+
"""
|
|
72
|
+
method = method.upper()
|
|
73
|
+
if method not in ["GET", "HEAD", "DELETE", "POST", "PUT", "PATCH", "OPTIONS"]:
|
|
74
|
+
raise ValueError("Method %s not allowed", method)
|
|
75
|
+
|
|
76
|
+
if post_params and body:
|
|
77
|
+
raise ApiValueError("body parameter cannot be used with post_params parameter.")
|
|
78
|
+
|
|
79
|
+
post_params = post_params or {}
|
|
80
|
+
headers = headers or {}
|
|
81
|
+
|
|
82
|
+
try:
|
|
83
|
+
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
|
84
|
+
if method in ["POST", "PUT", "PATCH", "OPTIONS", "DELETE"]:
|
|
85
|
+
|
|
86
|
+
# no content type provided or payload is json
|
|
87
|
+
content_type = headers.get("Content-Type")
|
|
88
|
+
if not content_type or re.search("json", content_type, re.IGNORECASE):
|
|
89
|
+
request_body = None
|
|
90
|
+
if body is not None:
|
|
91
|
+
request_body = json.dumps(body)
|
|
92
|
+
r = self.session.request(
|
|
93
|
+
method,
|
|
94
|
+
url,
|
|
95
|
+
data=request_body,
|
|
96
|
+
headers=headers,
|
|
97
|
+
)
|
|
98
|
+
elif content_type == "application/x-www-form-urlencoded":
|
|
99
|
+
r = self.session.request(
|
|
100
|
+
method,
|
|
101
|
+
url,
|
|
102
|
+
params=post_params,
|
|
103
|
+
headers=headers,
|
|
104
|
+
)
|
|
105
|
+
elif content_type == "multipart/form-data":
|
|
106
|
+
# must del headers['Content-Type'], or the correct
|
|
107
|
+
# Content-Type which generated by urllib3 will be
|
|
108
|
+
# overwritten.
|
|
109
|
+
del headers["Content-Type"]
|
|
110
|
+
# Ensures that dict objects are serialized
|
|
111
|
+
post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a, b) for a, b in post_params]
|
|
112
|
+
r = self.session.request(
|
|
113
|
+
method,
|
|
114
|
+
url,
|
|
115
|
+
files=post_params,
|
|
116
|
+
headers=headers,
|
|
117
|
+
)
|
|
118
|
+
# Pass a `string` parameter directly in the body to support
|
|
119
|
+
# other content types than JSON when `body` argument is
|
|
120
|
+
# provided in serialized form.
|
|
121
|
+
elif isinstance(body, str) or isinstance(body, bytes):
|
|
122
|
+
r = self.session.request(
|
|
123
|
+
method,
|
|
124
|
+
url,
|
|
125
|
+
data=body,
|
|
126
|
+
headers=headers,
|
|
127
|
+
)
|
|
128
|
+
elif headers["Content-Type"] == "text/plain" and isinstance(body, bool):
|
|
129
|
+
request_body = "true" if body else "false"
|
|
130
|
+
r = self.session.request(method, url, data=request_body, headers=headers)
|
|
131
|
+
else:
|
|
132
|
+
# Cannot generate the request from given parameters
|
|
133
|
+
msg = """Cannot prepare a request message for provided
|
|
134
|
+
arguments. Please check that your arguments match
|
|
135
|
+
declared content type."""
|
|
136
|
+
raise ApiException(status=0, reason=msg)
|
|
137
|
+
# For `GET`, `HEAD`
|
|
138
|
+
else:
|
|
139
|
+
r = self.session.request(
|
|
140
|
+
method,
|
|
141
|
+
url,
|
|
142
|
+
params={},
|
|
143
|
+
headers=headers,
|
|
144
|
+
)
|
|
145
|
+
except requests.exceptions.SSLError as e:
|
|
146
|
+
msg = "\n".join([type(e).__name__, str(e)])
|
|
147
|
+
raise ApiException(status=0, reason=msg)
|
|
148
|
+
|
|
149
|
+
return RESTResponse(r)
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: stackit-mongodbflex
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: STACKIT MongoDB Service API
|
|
5
|
+
Author: STACKIT Developer Tools
|
|
6
|
+
Author-email: developer-tools@stackit.cloud
|
|
7
|
+
Requires-Python: >=3.8,<4.0
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Dist: pydantic (>=2.9.2)
|
|
18
|
+
Requires-Dist: python-dateutil (>=2.9.0.post0)
|
|
19
|
+
Requires-Dist: requests (>=2.32.3)
|
|
20
|
+
Requires-Dist: stackit-core (>=0.0.1a)
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# stackit.mongodbflex
|
|
24
|
+
This is the documentation for the STACKIT MongoDB Flex Service API
|
|
25
|
+
|
|
26
|
+
For more information, please visit [https://www.stackit.de/en/contact](https://www.stackit.de/en/contact)
|
|
27
|
+
|
|
28
|
+
This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## Installation & Usage
|
|
32
|
+
### pip install
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
pip install stackit-mongodbflex
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Then import the package:
|
|
39
|
+
```python
|
|
40
|
+
import stackit.mongodbflex
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Getting Started
|
|
44
|
+
|
|
45
|
+
[Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
stackit/mongodbflex/__init__.py,sha256=HQ0X5SK6ogdYeRIAD90NSrDrqoY6uARGfkmgg2lbTFs,4928
|
|
2
|
+
stackit/mongodbflex/api/__init__.py,sha256=160WwZ0wGY2eNYUz6bxfcfSne1snV97M8dWVN5JmUYo,106
|
|
3
|
+
stackit/mongodbflex/api/default_api.py,sha256=a03CjW6LCOqPCP3PQTsLgDcPrraI39f7zHgqQTqwe-Q,295784
|
|
4
|
+
stackit/mongodbflex/api_client.py,sha256=9M3SHuWZK6JMU9dcuE2XFFLMdP5nRI6aPyW5jTxPSMU,22748
|
|
5
|
+
stackit/mongodbflex/api_response.py,sha256=HRYkVqMNIlfODacTQPTbiVj2YdcnutpQrKJdeAoCSpM,642
|
|
6
|
+
stackit/mongodbflex/configuration.py,sha256=w9ENp30mKI2uTPWaRRksRaqzygfpvffzZ71e-OS5uDI,3891
|
|
7
|
+
stackit/mongodbflex/exceptions.py,sha256=eDgEO4zKH0Rh-nlmJLBaJgq44wHB70-dm61yPt3xP8s,5964
|
|
8
|
+
stackit/mongodbflex/models/__init__.py,sha256=NSjT4IRF2xFyvSdH94MqOGGujId1Rsq-hBUdFvmAfis,4457
|
|
9
|
+
stackit/mongodbflex/models/acl.py,sha256=ehe8dw1z-i1hp4RRDgVlaxsH3sqKjqYdpTN6WNkONCg,2411
|
|
10
|
+
stackit/mongodbflex/models/backup.py,sha256=4i745IWrYY3ysTWarA8vUDF86feAY8NlPNLAeSC57A4,3219
|
|
11
|
+
stackit/mongodbflex/models/backup_schedule.py,sha256=etbzPyCNswWRmSrHnJl6JDhf5v7UDhccaDcUNBmLFUA,3776
|
|
12
|
+
stackit/mongodbflex/models/clone_instance_payload.py,sha256=YMLaBnmNkvrLpkm59NKs4bhRW6NsjiZM_7Pwyse646s,2602
|
|
13
|
+
stackit/mongodbflex/models/clone_instance_response.py,sha256=H9f5WGCpyJ2CPRpQGFZjVwoV07bkc2yvlBI9-G4SIvU,2540
|
|
14
|
+
stackit/mongodbflex/models/create_instance_payload.py,sha256=L8OpehzEUQTDfE_dqB2Le7G78Xr-piYys2ICdcJUSVY,3952
|
|
15
|
+
stackit/mongodbflex/models/create_instance_response.py,sha256=cPRTeLauUTswDEsz63uxOWIjXSz_hbmXJ6KRJtipwJ8,2469
|
|
16
|
+
stackit/mongodbflex/models/create_user_payload.py,sha256=ARlLf8OaiqVdKJcYUnv80tEqHLqJUjnNyVcOxp_lU0o,2627
|
|
17
|
+
stackit/mongodbflex/models/create_user_response.py,sha256=RYADv0zYrUZiCnOcK82yUanzE0YSSuCInUtndNZOapE,2701
|
|
18
|
+
stackit/mongodbflex/models/data_point.py,sha256=BWNC1vroRhuwGDO1U8OEavJR5H6mmLQtLP0wn_Cl_2U,2570
|
|
19
|
+
stackit/mongodbflex/models/error.py,sha256=1poyH9R0ebyA6VmySeERwhOVULqtbDBzk2dA2vOqNB4,2768
|
|
20
|
+
stackit/mongodbflex/models/flavor.py,sha256=PL7ed9xDpPS3rFfCO00iwQ386MS88yc_LGDcFwEByKU,2759
|
|
21
|
+
stackit/mongodbflex/models/get_backup_response.py,sha256=ZFcnqufupUZ_Q0hoQJ7rauIhn0hVof6fnX15T2U_C-c,2705
|
|
22
|
+
stackit/mongodbflex/models/get_instance_response.py,sha256=7YEYL_Gx8bYHN6nD-e82VWNyTBnJExRt8GWqH7MCyK4,2721
|
|
23
|
+
stackit/mongodbflex/models/get_user_response.py,sha256=RWA68cAckD9zCAI1M-axLqcQQ-4u6myMpMIjMXReB44,2777
|
|
24
|
+
stackit/mongodbflex/models/handlers_infra_flavor.py,sha256=K7qV471klRlMbpbbbORnZwxR9hoWnWMcGlCiXWowrH8,2927
|
|
25
|
+
stackit/mongodbflex/models/handlers_infra_get_flavors_response.py,sha256=WaA5PiLD6AvKtTGrP12mMQnd2yvARNoGBJkjuQ-4PSQ,3141
|
|
26
|
+
stackit/mongodbflex/models/handlers_instances_get_instance_response.py,sha256=jyZ4F8xtKCsjXh7RRY2pWFeMgijTNBav0xnkD7lOF98,2789
|
|
27
|
+
stackit/mongodbflex/models/handlers_instances_slow_queries_response.py,sha256=dVZzqGGeCz7hwEWEbD7N6jqp4D_YpFmg9286q5Vi5NY,3345
|
|
28
|
+
stackit/mongodbflex/models/handlers_instances_suggested_indexes_response.py,sha256=4mbgLZViHx9dV9L6_qUm1Gq1THZWXcVl1x6862Kt9lU,4133
|
|
29
|
+
stackit/mongodbflex/models/host.py,sha256=-MGuE_HAO6_EInb4XJOa1k7aeqbqhBC8nNTUx-e9zu4,3169
|
|
30
|
+
stackit/mongodbflex/models/host_metric.py,sha256=MPnGDQOF2laj0JLaVGufhhTTXoMN7oZLUWMoFRIjuew,3231
|
|
31
|
+
stackit/mongodbflex/models/instance.py,sha256=hNjYR4_3X0Bt1Xj01AvIRg7Qetn21e6JvANYPpcYx_4,4287
|
|
32
|
+
stackit/mongodbflex/models/instance_list_instance.py,sha256=p04ZM_YaH485NUJ61ITJrBB84RvIZQ14lALPzbrGHpw,2609
|
|
33
|
+
stackit/mongodbflex/models/instance_response_user.py,sha256=fr-K9AQiOaUDPHDBljtQBMaiCrISmFtPXyDztZVXdjg,2997
|
|
34
|
+
stackit/mongodbflex/models/list_backups_response.py,sha256=MmENzRFrqPLIJzCvb1e6JS04meke6SPZugsvrCpWlh8,3043
|
|
35
|
+
stackit/mongodbflex/models/list_flavors_response.py,sha256=coo67eEvRYOp4Wtum7jiHFY4pfLQMKyMM6hb5FBAa6I,3093
|
|
36
|
+
stackit/mongodbflex/models/list_instances_response.py,sha256=pfvMs-qO3q1ctrBCO714t2U99vKAwEknUkgO-jXPzpI,3189
|
|
37
|
+
stackit/mongodbflex/models/list_metrics_response.py,sha256=HKC_PMyEcak_KMFTT6w6iMkLGiXR2Csc01xxbh5tHLI,2903
|
|
38
|
+
stackit/mongodbflex/models/list_restore_jobs_response.py,sha256=mUsgjS08yht88ooK6g-e5ukRNfMzZE0HVOEX5GWSFus,3099
|
|
39
|
+
stackit/mongodbflex/models/list_storages_response.py,sha256=uWXiii-YLf-8PxSvzO7Sr8jjtmvGDS1q6BAEc6juzns,3138
|
|
40
|
+
stackit/mongodbflex/models/list_user.py,sha256=G5RDaqU0csdyN0bWJJlysCY83kJm3v727oZ_Krv6dMg,2499
|
|
41
|
+
stackit/mongodbflex/models/list_users_response.py,sha256=3gBMSJbWexFoalADAX38n6ZrU2acTTZ4RV2XI30P7N0,3084
|
|
42
|
+
stackit/mongodbflex/models/list_versions_response.py,sha256=-FJofWqX80Fmsyx9b22l6JOzdJYpqd0MjfXYLKe8Q8E,2491
|
|
43
|
+
stackit/mongodbflex/models/mongodbatlas_operation.py,sha256=rCeAKCCOIfLX93h2Qqwk7JPUrtJc0Kknt8pMlbp3ysg,3267
|
|
44
|
+
stackit/mongodbflex/models/mongodbatlas_stats.py,sha256=RdnX-aGKFcNg5N6hKuSqtIw2oWaKrJEvmaaD1CsFHFE,3196
|
|
45
|
+
stackit/mongodbflex/models/partial_update_instance_payload.py,sha256=wYhnLGw3BsthLkCBlz0JlhsOoo1K2j-b3ZDee6WkdtA,4130
|
|
46
|
+
stackit/mongodbflex/models/partial_update_user_payload.py,sha256=u16G9uh2HoTuPPJTo7mA0T0iYnk8OFUpiOz3ofwWkuo,2581
|
|
47
|
+
stackit/mongodbflex/models/restore_instance_payload.py,sha256=NN1kyDXUlAttW9zW_qKEHoHp_57YFlnii7gh-CdWyPQ,2616
|
|
48
|
+
stackit/mongodbflex/models/restore_instance_response.py,sha256=P9morhDuGlgHdU5nc1chDA0gpCR5GWH-FJBrAPuukWs,2813
|
|
49
|
+
stackit/mongodbflex/models/restore_instance_status.py,sha256=GN1lXHXSVuKCKScWFPMv4nqLo27GZSJSYe_5_FMcCBg,3020
|
|
50
|
+
stackit/mongodbflex/models/shape.py,sha256=zVq-wzEwruE6qsqmdJciliDlskCLDg_XUoAZmIuHy94,4378
|
|
51
|
+
stackit/mongodbflex/models/slow_query.py,sha256=7Gqy5yVsu6RMG2Cj5MPwfWCnUEfQABkLzJmkJdGXEsk,2672
|
|
52
|
+
stackit/mongodbflex/models/storage.py,sha256=vhVyoe011DUwoNALLxFvpXm19OOBYsyfC492uDijQaE,2543
|
|
53
|
+
stackit/mongodbflex/models/storage_range.py,sha256=z2yOF03IdJsIDk8-_Ly21XrUWZCX1flfzTeCRGehWko,2499
|
|
54
|
+
stackit/mongodbflex/models/suggested_index.py,sha256=8SzomscuYRlADe8NXT406neiisUKBK7qnNM9sdFbpwY,3535
|
|
55
|
+
stackit/mongodbflex/models/update_backup_schedule_payload.py,sha256=QhTWEo0ZmtYTtdqOm024zcxtvLh7DkkdxEZ4I7-xNM0,3828
|
|
56
|
+
stackit/mongodbflex/models/update_instance_payload.py,sha256=dvEfTsYB6P6RsctXQfFpfqwGibXLrlCwjPW1_6FsFaA,3952
|
|
57
|
+
stackit/mongodbflex/models/update_instance_response.py,sha256=edEsnXWOpdQabgmpnSGhkIdJZIv7wiGkWwuhYqkzHJ8,2733
|
|
58
|
+
stackit/mongodbflex/models/update_user_payload.py,sha256=77brX_uuQ5Cv15AesuTThD6S2l-uLmgpVrIvpWcrud4,2519
|
|
59
|
+
stackit/mongodbflex/models/user.py,sha256=qfRuT0D6lL3mVpLO48KCBmbcsAs0RvZZifm-OcEIDg4,3117
|
|
60
|
+
stackit/mongodbflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
+
stackit/mongodbflex/rest.py,sha256=QjlOJi2WHHwgSB9k7wF8aEh8q0BI47Q_NWf6voVbANw,5848
|
|
62
|
+
stackit_mongodbflex-0.0.1a0.dist-info/METADATA,sha256=Ah04Gwjer7TxrjI-lkS09QDQerC_JF1_I9YdiTiJatI,1626
|
|
63
|
+
stackit_mongodbflex-0.0.1a0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
64
|
+
stackit_mongodbflex-0.0.1a0.dist-info/RECORD,,
|