stackit-postgresflex 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.
Files changed (67) hide show
  1. stackit/postgresflex/__init__.py +120 -0
  2. stackit/postgresflex/api/__init__.py +4 -0
  3. stackit/postgresflex/api/default_api.py +7275 -0
  4. stackit/postgresflex/api_client.py +627 -0
  5. stackit/postgresflex/api_response.py +23 -0
  6. stackit/postgresflex/configuration.py +112 -0
  7. stackit/postgresflex/exceptions.py +199 -0
  8. stackit/postgresflex/models/__init__.py +101 -0
  9. stackit/postgresflex/models/acl.py +82 -0
  10. stackit/postgresflex/models/api_configuration.py +83 -0
  11. stackit/postgresflex/models/api_extension_config_load_response.py +101 -0
  12. stackit/postgresflex/models/api_extension_configure_response.py +101 -0
  13. stackit/postgresflex/models/api_extension_delete_response.py +82 -0
  14. stackit/postgresflex/models/api_extension_list.py +84 -0
  15. stackit/postgresflex/models/api_extension_load_response.py +89 -0
  16. stackit/postgresflex/models/api_install_response.py +89 -0
  17. stackit/postgresflex/models/api_installed_list_response.py +99 -0
  18. stackit/postgresflex/models/backup.py +100 -0
  19. stackit/postgresflex/models/clone_instance_payload.py +89 -0
  20. stackit/postgresflex/models/clone_instance_response.py +82 -0
  21. stackit/postgresflex/models/create_database_payload.py +83 -0
  22. stackit/postgresflex/models/create_instance_payload.py +121 -0
  23. stackit/postgresflex/models/create_instance_response.py +82 -0
  24. stackit/postgresflex/models/create_user_payload.py +83 -0
  25. stackit/postgresflex/models/create_user_response.py +87 -0
  26. stackit/postgresflex/models/error.py +92 -0
  27. stackit/postgresflex/models/extensions_configuration.py +83 -0
  28. stackit/postgresflex/models/extensions_extension_list_response.py +99 -0
  29. stackit/postgresflex/models/extensions_new_config.py +99 -0
  30. stackit/postgresflex/models/flavor.py +92 -0
  31. stackit/postgresflex/models/get_backup_response.py +87 -0
  32. stackit/postgresflex/models/get_user_response.py +89 -0
  33. stackit/postgresflex/models/instance.py +128 -0
  34. stackit/postgresflex/models/instance_create_database_response.py +82 -0
  35. stackit/postgresflex/models/instance_data_point.py +83 -0
  36. stackit/postgresflex/models/instance_database.py +84 -0
  37. stackit/postgresflex/models/instance_host.py +101 -0
  38. stackit/postgresflex/models/instance_host_metric.py +103 -0
  39. stackit/postgresflex/models/instance_list_databases_response.py +99 -0
  40. stackit/postgresflex/models/instance_list_instance.py +84 -0
  41. stackit/postgresflex/models/instance_metrics_response.py +97 -0
  42. stackit/postgresflex/models/instance_response.py +87 -0
  43. stackit/postgresflex/models/list_backups_response.py +97 -0
  44. stackit/postgresflex/models/list_flavors_response.py +97 -0
  45. stackit/postgresflex/models/list_instances_response.py +101 -0
  46. stackit/postgresflex/models/list_storages_response.py +95 -0
  47. stackit/postgresflex/models/list_users_response.py +101 -0
  48. stackit/postgresflex/models/list_users_response_item.py +83 -0
  49. stackit/postgresflex/models/list_versions_response.py +82 -0
  50. stackit/postgresflex/models/partial_update_instance_payload.py +121 -0
  51. stackit/postgresflex/models/partial_update_instance_response.py +87 -0
  52. stackit/postgresflex/models/partial_update_user_payload.py +83 -0
  53. stackit/postgresflex/models/postgres_database_parameter.py +137 -0
  54. stackit/postgresflex/models/postgres_database_parameter_response.py +101 -0
  55. stackit/postgresflex/models/reset_user_response.py +87 -0
  56. stackit/postgresflex/models/storage.py +83 -0
  57. stackit/postgresflex/models/storage_range.py +83 -0
  58. stackit/postgresflex/models/update_backup_schedule_payload.py +82 -0
  59. stackit/postgresflex/models/update_instance_payload.py +121 -0
  60. stackit/postgresflex/models/update_user_payload.py +83 -0
  61. stackit/postgresflex/models/user.py +100 -0
  62. stackit/postgresflex/models/user_response.py +94 -0
  63. stackit/postgresflex/py.typed +0 -0
  64. stackit/postgresflex/rest.py +149 -0
  65. stackit_postgresflex-0.0.1a0.dist-info/METADATA +45 -0
  66. stackit_postgresflex-0.0.1a0.dist-info/RECORD +67 -0
  67. stackit_postgresflex-0.0.1a0.dist-info/WHEEL +4 -0
@@ -0,0 +1,100 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT PostgreSQL Flex API
5
+
6
+ This is the documentation for the STACKIT postgres service
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
+ from __future__ import annotations
16
+
17
+ import json
18
+ import pprint
19
+ from typing import Any, ClassVar, Dict, List, Optional, Set
20
+
21
+ from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
22
+ from typing_extensions import Self
23
+
24
+
25
+ class User(BaseModel):
26
+ """
27
+ User
28
+ """
29
+
30
+ database: Optional[StrictStr] = None
31
+ host: Optional[StrictStr] = None
32
+ id: Optional[StrictStr] = None
33
+ password: Optional[StrictStr] = None
34
+ port: Optional[StrictInt] = None
35
+ roles: Optional[List[StrictStr]] = None
36
+ uri: Optional[StrictStr] = None
37
+ username: Optional[StrictStr] = None
38
+ __properties: ClassVar[List[str]] = ["database", "host", "id", "password", "port", "roles", "uri", "username"]
39
+
40
+ model_config = ConfigDict(
41
+ populate_by_name=True,
42
+ validate_assignment=True,
43
+ protected_namespaces=(),
44
+ )
45
+
46
+ def to_str(self) -> str:
47
+ """Returns the string representation of the model using alias"""
48
+ return pprint.pformat(self.model_dump(by_alias=True))
49
+
50
+ def to_json(self) -> str:
51
+ """Returns the JSON representation of the model using alias"""
52
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
53
+ return json.dumps(self.to_dict())
54
+
55
+ @classmethod
56
+ def from_json(cls, json_str: str) -> Optional[Self]:
57
+ """Create an instance of User from a JSON string"""
58
+ return cls.from_dict(json.loads(json_str))
59
+
60
+ def to_dict(self) -> Dict[str, Any]:
61
+ """Return the dictionary representation of the model using alias.
62
+
63
+ This has the following differences from calling pydantic's
64
+ `self.model_dump(by_alias=True)`:
65
+
66
+ * `None` is only added to the output dict for nullable fields that
67
+ were set at model initialization. Other fields with value `None`
68
+ are ignored.
69
+ """
70
+ excluded_fields: Set[str] = set([])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ return _dict
78
+
79
+ @classmethod
80
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
81
+ """Create an instance of User from a dict"""
82
+ if obj is None:
83
+ return None
84
+
85
+ if not isinstance(obj, dict):
86
+ return cls.model_validate(obj)
87
+
88
+ _obj = cls.model_validate(
89
+ {
90
+ "database": obj.get("database"),
91
+ "host": obj.get("host"),
92
+ "id": obj.get("id"),
93
+ "password": obj.get("password"),
94
+ "port": obj.get("port"),
95
+ "roles": obj.get("roles"),
96
+ "uri": obj.get("uri"),
97
+ "username": obj.get("username"),
98
+ }
99
+ )
100
+ return _obj
@@ -0,0 +1,94 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT PostgreSQL Flex API
5
+
6
+ This is the documentation for the STACKIT postgres service
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
+ from __future__ import annotations
16
+
17
+ import json
18
+ import pprint
19
+ from typing import Any, ClassVar, Dict, List, Optional, Set
20
+
21
+ from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
22
+ from typing_extensions import Self
23
+
24
+
25
+ class UserResponse(BaseModel):
26
+ """
27
+ UserResponse
28
+ """
29
+
30
+ host: Optional[StrictStr] = None
31
+ id: Optional[StrictStr] = None
32
+ port: Optional[StrictInt] = None
33
+ roles: Optional[List[StrictStr]] = None
34
+ username: Optional[StrictStr] = None
35
+ __properties: ClassVar[List[str]] = ["host", "id", "port", "roles", "username"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of UserResponse from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ """
67
+ excluded_fields: Set[str] = set([])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
78
+ """Create an instance of UserResponse from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return cls.model_validate(obj)
84
+
85
+ _obj = cls.model_validate(
86
+ {
87
+ "host": obj.get("host"),
88
+ "id": obj.get("id"),
89
+ "port": obj.get("port"),
90
+ "roles": obj.get("roles"),
91
+ "username": obj.get("username"),
92
+ }
93
+ )
94
+ return _obj
File without changes
@@ -0,0 +1,149 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ STACKIT PostgreSQL Flex API
5
+
6
+ This is the documentation for the STACKIT postgres service
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.postgresflex.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-postgresflex
3
+ Version: 0.0.1a0
4
+ Summary: STACKIT PostgreSQL Flex 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.postgresflex
24
+ This is the documentation for the STACKIT postgres service
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-postgresflex
36
+ ```
37
+
38
+ Then import the package:
39
+ ```python
40
+ import stackit.postgresflex
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,67 @@
1
+ stackit/postgresflex/__init__.py,sha256=sgC36333ZzQOgfDH0E8BBe7QJ-wHSQONOL7BaT0GTUc,5444
2
+ stackit/postgresflex/api/__init__.py,sha256=o9Yn39BawyTTsTGsVzVPZ5-Or_0CKwHlAAAIUMqtxjc,107
3
+ stackit/postgresflex/api/default_api.py,sha256=1RNSPZ4WhjYfZHsi6zjFgeP039k4WTuKXF0_JNGXLk0,315794
4
+ stackit/postgresflex/api_client.py,sha256=yLk2TUBNmwIRPrxPum8gYm73lpESfWtv2E49U9SLsbs,22747
5
+ stackit/postgresflex/api_response.py,sha256=HRYkVqMNIlfODacTQPTbiVj2YdcnutpQrKJdeAoCSpM,642
6
+ stackit/postgresflex/configuration.py,sha256=YM8y-TcMLohWXPbOZ7czW0e6Uk4-a-siPAz4RnH7ZfQ,3885
7
+ stackit/postgresflex/exceptions.py,sha256=yXv-AlWSGyOQN7weaYmyvtPp3phOCrg_hNLqXq_2hHg,5956
8
+ stackit/postgresflex/models/__init__.py,sha256=euUErwGFnq4LTITJWeohEtsBpfzQQjbZtqZ2yjRbPi4,4968
9
+ stackit/postgresflex/models/acl.py,sha256=hMTxIXKtTzmpkDvyjqgK3NCwUWpYdor8q-hlQzIXXeo,2403
10
+ stackit/postgresflex/models/api_configuration.py,sha256=DxVkHCDIePuiS9cODcpMzVoh_X8omoeDNVORKHLBP58,2527
11
+ stackit/postgresflex/models/api_extension_config_load_response.py,sha256=M-807X4LTYIEYy-uHzmp5COdKR15hTQtaYfwEl6YYVI,3303
12
+ stackit/postgresflex/models/api_extension_configure_response.py,sha256=32JyADNpW3BEcH9PcGIeSUaws2oS84aONk4SRkxSFGA,3299
13
+ stackit/postgresflex/models/api_extension_delete_response.py,sha256=_C7L4bO8n4tUczOwW171oWpRuiUtXgN1Bx2w4qTK8Ho,2554
14
+ stackit/postgresflex/models/api_extension_list.py,sha256=vcMsMKsG4XOAjwM-dZfHmqEfsBzbni5tCWsYBEMH1ts,2650
15
+ stackit/postgresflex/models/api_extension_load_response.py,sha256=Scixw2Hg2Mi1M5XQWa5qwfMibRz-18J09n1HP9iQaIk,2835
16
+ stackit/postgresflex/models/api_install_response.py,sha256=kLnf-JAsPlleQwFzPKyf2RrvKyRiWIypXZ4lLVF85-U,2811
17
+ stackit/postgresflex/models/api_installed_list_response.py,sha256=mVWOBNHVQKlypQO_T43O7or2UCQFXepcZGrVBNyrYwI,3112
18
+ stackit/postgresflex/models/backup.py,sha256=EczRpcBa6U5G6Xxj04SX3Pu0fn8ZJ0SrHjALY3lw1BE,3211
19
+ stackit/postgresflex/models/clone_instance_payload.py,sha256=Y86BIuDDKd0VQDM1herVk97YrodUGk6QMelBKaxHlFc,2844
20
+ stackit/postgresflex/models/clone_instance_response.py,sha256=-pHW49cVyX1d8HARUcn7nuFVMLaueeErOSTWSn23Des,2532
21
+ stackit/postgresflex/models/create_database_payload.py,sha256=1peV_9K5qv8NeqAI0pfXPguRdzSFipfh1TgMW282D00,2621
22
+ stackit/postgresflex/models/create_instance_payload.py,sha256=zaJz4g0QhloYoO19JLZ76GcxqlEWRtRyxVOcZUEsLJ4,3946
23
+ stackit/postgresflex/models/create_instance_response.py,sha256=-LcoWyf3VH_KNuKp25wVPrwGSL6fVA-WIn3QYiDFnzw,2461
24
+ stackit/postgresflex/models/create_user_payload.py,sha256=viP7j9WfYemFUAwdro_02p9QZ_gstXTGHcfk-JBDzjY,2545
25
+ stackit/postgresflex/models/create_user_response.py,sha256=6cxV5F9Y77Ee8qNaGK2kuMcsH4NACfM9pSYTSUNupYk,2694
26
+ stackit/postgresflex/models/error.py,sha256=fmBMwiHMR5ubIW64_H_g5EJTZybGs4P62LKIbESzOsA,2760
27
+ stackit/postgresflex/models/extensions_configuration.py,sha256=LO9zRfndX8MjFFu869f5LF2te6ELKinwgTi5IaRZ2zg,2555
28
+ stackit/postgresflex/models/extensions_extension_list_response.py,sha256=vOSF8_qqi1oTEFdB9tOawx81AZXDt25wD-u191Utp60,3095
29
+ stackit/postgresflex/models/extensions_new_config.py,sha256=-24FLEsYmV96OYIYCz629HEhlm22OYoqUIx49r1xRok,3155
30
+ stackit/postgresflex/models/flavor.py,sha256=nFnbtAX5n3of-YtRd65EsNYEf9bW1PXqKquuFzPcHCE,2751
31
+ stackit/postgresflex/models/get_backup_response.py,sha256=HZBymwIPU5zBS0gMf2n63FgY01s72rPt6zzaUv_89zM,2698
32
+ stackit/postgresflex/models/get_user_response.py,sha256=HQpNTS_1uQyeEU2kTkaTh7oyXJIMkMTZCLTKqOILOpc,2737
33
+ stackit/postgresflex/models/instance.py,sha256=Ck147eeSCVQLz-kVT-bgKfHHm_HoewjStFDV2SsZBCc,4282
34
+ stackit/postgresflex/models/instance_create_database_response.py,sha256=21mbp1m6KEe0jdsJXMUbGoeNgsKyVNl9qGEhL0DTBQQ,2493
35
+ stackit/postgresflex/models/instance_data_point.py,sha256=pWXsrh3QjylLyJoL1VZNRM0t5s9FZKjStAVqxY4KY08,2594
36
+ stackit/postgresflex/models/instance_database.py,sha256=fXlLo-WYN5UROT2OGAVSASH4dS-WPMs4DGZLDXnBNB4,2657
37
+ stackit/postgresflex/models/instance_host.py,sha256=fb7_nTT6uO6CSLlcR8n4vypFjCbYstoGcZVTNbomL5Q,3227
38
+ stackit/postgresflex/models/instance_host_metric.py,sha256=PvrqVoe4J0qI6v5YA1OcHQQVn5fcHTASnK0lhO_ZyxE,3289
39
+ stackit/postgresflex/models/instance_list_databases_response.py,sha256=TIPJe44S_O9zA49-9rj5u-CyjdQ646VAHxDm5qV5swY,3131
40
+ stackit/postgresflex/models/instance_list_instance.py,sha256=VS_oCAA4m7mQJnGCNRNuSj6ZFsrts0ET5G3dVIoMDQo,2601
41
+ stackit/postgresflex/models/instance_metrics_response.py,sha256=v3MvlzfGsERJWLuZaLN7NZRcsGWcHS5s6pbRiOMwbYs,3015
42
+ stackit/postgresflex/models/instance_response.py,sha256=79hQemcPsKuSK7KeJvfKz95yOg0qqgoY0iHcoqycWYU,2702
43
+ stackit/postgresflex/models/list_backups_response.py,sha256=Z5LbP0ZJvqUD6iW25zEoQ68-wUE92I1V96khcdkqk24,3036
44
+ stackit/postgresflex/models/list_flavors_response.py,sha256=wrMQvr2h2fGLR2utTE9W65NsW44mXACLzHxV2CiQZK0,2992
45
+ stackit/postgresflex/models/list_instances_response.py,sha256=qojE6xPKlvscyrBPzRtHUvwVNZdWl2wqsgYlA2NQBhw,3182
46
+ stackit/postgresflex/models/list_storages_response.py,sha256=btlTFl8J3ocb0uC3jcPtqQZPNKmJkYGb6pyvPkgri-s,3131
47
+ stackit/postgresflex/models/list_users_response.py,sha256=D-CK9W5wcZu6bijYrZ2vhck3i8hjaDIMivsQ9TcBhQo,3171
48
+ stackit/postgresflex/models/list_users_response_item.py,sha256=TO3lJZntC1krZ2Uc6fx1P3XSyAJ1TYmJc-i7QRLQOe4,2543
49
+ stackit/postgresflex/models/list_versions_response.py,sha256=5pF5vSGjvhh2Ag41gIjJ1fqaKWhtCXf8Y0KjsezlrpI,2483
50
+ stackit/postgresflex/models/partial_update_instance_payload.py,sha256=os_iyudezynqqW3b2BfMB014R3GCVyLvf9ZdLzj3E_s,4124
51
+ stackit/postgresflex/models/partial_update_instance_response.py,sha256=-8MioYkOjVilUhXqFz6XtTqaZhcCmluEMceXmadDdU4,2754
52
+ stackit/postgresflex/models/partial_update_user_payload.py,sha256=N_qlD1tMieoMzxJml-lCEQ4uutCliYc5v_pqK3aAehg,2573
53
+ stackit/postgresflex/models/postgres_database_parameter.py,sha256=aGGnqH_zWlBmqU9kbrGEbPaB7fJFmeE6mpXRpnhMXzk,4949
54
+ stackit/postgresflex/models/postgres_database_parameter_response.py,sha256=1lnINQjKfo0hJRHzZptEw898suTPcxQPILVn_7ID5yw,3252
55
+ stackit/postgresflex/models/reset_user_response.py,sha256=OeueOtOf4P-QpdjFwn6o7ryWky76spcCSVNIaEblz5Y,2690
56
+ stackit/postgresflex/models/storage.py,sha256=TuV_a0gOROYBGKDlzynQGMAu_qTVCVt9rU2eAa5WZfY,2535
57
+ stackit/postgresflex/models/storage_range.py,sha256=vzfVTtt-cBwlmMAeC76nsYXfejZNc3AGwjCUfojQGXs,2491
58
+ stackit/postgresflex/models/update_backup_schedule_payload.py,sha256=j6JkVPe-CogaLpJQtZulTa_OWVGhUPGUCmx7KJTuSpE,2552
59
+ stackit/postgresflex/models/update_instance_payload.py,sha256=5YR97GpnzDZiumIGW81878VAOdzcVgKeYxv0BGkyTuc,4096
60
+ stackit/postgresflex/models/update_user_payload.py,sha256=1DgEQpOzmEcN2hXyynBu1oJe616mI3j78FmgnB5RKOs,2545
61
+ stackit/postgresflex/models/user.py,sha256=vaG90-dxinO9Rz576O2OtlBiVFlSUxAq94Z0_bd-aDk,3109
62
+ stackit/postgresflex/models/user_response.py,sha256=5g-HMSP-Kh9hBM1Sf5LVl8irQRP6U5_lR0ZkDrHLZzM,2855
63
+ stackit/postgresflex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ stackit/postgresflex/rest.py,sha256=NxPlTct-__5AsE_wJCprOKr-PqevXft5Mo8EEbxR2ok,5841
65
+ stackit_postgresflex-0.0.1a0.dist-info/METADATA,sha256=PfII6GvwGGlTOKDHid_ITAMv7DTHvQmsopZQwlChXOI,1622
66
+ stackit_postgresflex-0.0.1a0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
67
+ stackit_postgresflex-0.0.1a0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any