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.
- stackit/postgresflex/__init__.py +120 -0
- stackit/postgresflex/api/__init__.py +4 -0
- stackit/postgresflex/api/default_api.py +7275 -0
- stackit/postgresflex/api_client.py +627 -0
- stackit/postgresflex/api_response.py +23 -0
- stackit/postgresflex/configuration.py +112 -0
- stackit/postgresflex/exceptions.py +199 -0
- stackit/postgresflex/models/__init__.py +101 -0
- stackit/postgresflex/models/acl.py +82 -0
- stackit/postgresflex/models/api_configuration.py +83 -0
- stackit/postgresflex/models/api_extension_config_load_response.py +101 -0
- stackit/postgresflex/models/api_extension_configure_response.py +101 -0
- stackit/postgresflex/models/api_extension_delete_response.py +82 -0
- stackit/postgresflex/models/api_extension_list.py +84 -0
- stackit/postgresflex/models/api_extension_load_response.py +89 -0
- stackit/postgresflex/models/api_install_response.py +89 -0
- stackit/postgresflex/models/api_installed_list_response.py +99 -0
- stackit/postgresflex/models/backup.py +100 -0
- stackit/postgresflex/models/clone_instance_payload.py +89 -0
- stackit/postgresflex/models/clone_instance_response.py +82 -0
- stackit/postgresflex/models/create_database_payload.py +83 -0
- stackit/postgresflex/models/create_instance_payload.py +121 -0
- stackit/postgresflex/models/create_instance_response.py +82 -0
- stackit/postgresflex/models/create_user_payload.py +83 -0
- stackit/postgresflex/models/create_user_response.py +87 -0
- stackit/postgresflex/models/error.py +92 -0
- stackit/postgresflex/models/extensions_configuration.py +83 -0
- stackit/postgresflex/models/extensions_extension_list_response.py +99 -0
- stackit/postgresflex/models/extensions_new_config.py +99 -0
- stackit/postgresflex/models/flavor.py +92 -0
- stackit/postgresflex/models/get_backup_response.py +87 -0
- stackit/postgresflex/models/get_user_response.py +89 -0
- stackit/postgresflex/models/instance.py +128 -0
- stackit/postgresflex/models/instance_create_database_response.py +82 -0
- stackit/postgresflex/models/instance_data_point.py +83 -0
- stackit/postgresflex/models/instance_database.py +84 -0
- stackit/postgresflex/models/instance_host.py +101 -0
- stackit/postgresflex/models/instance_host_metric.py +103 -0
- stackit/postgresflex/models/instance_list_databases_response.py +99 -0
- stackit/postgresflex/models/instance_list_instance.py +84 -0
- stackit/postgresflex/models/instance_metrics_response.py +97 -0
- stackit/postgresflex/models/instance_response.py +87 -0
- stackit/postgresflex/models/list_backups_response.py +97 -0
- stackit/postgresflex/models/list_flavors_response.py +97 -0
- stackit/postgresflex/models/list_instances_response.py +101 -0
- stackit/postgresflex/models/list_storages_response.py +95 -0
- stackit/postgresflex/models/list_users_response.py +101 -0
- stackit/postgresflex/models/list_users_response_item.py +83 -0
- stackit/postgresflex/models/list_versions_response.py +82 -0
- stackit/postgresflex/models/partial_update_instance_payload.py +121 -0
- stackit/postgresflex/models/partial_update_instance_response.py +87 -0
- stackit/postgresflex/models/partial_update_user_payload.py +83 -0
- stackit/postgresflex/models/postgres_database_parameter.py +137 -0
- stackit/postgresflex/models/postgres_database_parameter_response.py +101 -0
- stackit/postgresflex/models/reset_user_response.py +87 -0
- stackit/postgresflex/models/storage.py +83 -0
- stackit/postgresflex/models/storage_range.py +83 -0
- stackit/postgresflex/models/update_backup_schedule_payload.py +82 -0
- stackit/postgresflex/models/update_instance_payload.py +121 -0
- stackit/postgresflex/models/update_user_payload.py +83 -0
- stackit/postgresflex/models/user.py +100 -0
- stackit/postgresflex/models/user_response.py +94 -0
- stackit/postgresflex/py.typed +0 -0
- stackit/postgresflex/rest.py +149 -0
- stackit_postgresflex-0.0.1a0.dist-info/METADATA +45 -0
- stackit_postgresflex-0.0.1a0.dist-info/RECORD +67 -0
- stackit_postgresflex-0.0.1a0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,101 @@
|
|
|
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
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
from stackit.postgresflex.models.list_users_response_item import ListUsersResponseItem
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class ListUsersResponse(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
ListUsersResponse
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
count: Optional[StrictInt] = None
|
|
33
|
+
items: Optional[List[ListUsersResponseItem]] = None
|
|
34
|
+
__properties: ClassVar[List[str]] = ["count", "items"]
|
|
35
|
+
|
|
36
|
+
model_config = ConfigDict(
|
|
37
|
+
populate_by_name=True,
|
|
38
|
+
validate_assignment=True,
|
|
39
|
+
protected_namespaces=(),
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
def to_str(self) -> str:
|
|
43
|
+
"""Returns the string representation of the model using alias"""
|
|
44
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
45
|
+
|
|
46
|
+
def to_json(self) -> str:
|
|
47
|
+
"""Returns the JSON representation of the model using alias"""
|
|
48
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
49
|
+
return json.dumps(self.to_dict())
|
|
50
|
+
|
|
51
|
+
@classmethod
|
|
52
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
53
|
+
"""Create an instance of ListUsersResponse from a JSON string"""
|
|
54
|
+
return cls.from_dict(json.loads(json_str))
|
|
55
|
+
|
|
56
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
57
|
+
"""Return the dictionary representation of the model using alias.
|
|
58
|
+
|
|
59
|
+
This has the following differences from calling pydantic's
|
|
60
|
+
`self.model_dump(by_alias=True)`:
|
|
61
|
+
|
|
62
|
+
* `None` is only added to the output dict for nullable fields that
|
|
63
|
+
were set at model initialization. Other fields with value `None`
|
|
64
|
+
are ignored.
|
|
65
|
+
"""
|
|
66
|
+
excluded_fields: Set[str] = set([])
|
|
67
|
+
|
|
68
|
+
_dict = self.model_dump(
|
|
69
|
+
by_alias=True,
|
|
70
|
+
exclude=excluded_fields,
|
|
71
|
+
exclude_none=True,
|
|
72
|
+
)
|
|
73
|
+
# override the default output from pydantic by calling `to_dict()` of each item in items (list)
|
|
74
|
+
_items = []
|
|
75
|
+
if self.items:
|
|
76
|
+
for _item in self.items:
|
|
77
|
+
if _item:
|
|
78
|
+
_items.append(_item.to_dict())
|
|
79
|
+
_dict["items"] = _items
|
|
80
|
+
return _dict
|
|
81
|
+
|
|
82
|
+
@classmethod
|
|
83
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
84
|
+
"""Create an instance of ListUsersResponse from a dict"""
|
|
85
|
+
if obj is None:
|
|
86
|
+
return None
|
|
87
|
+
|
|
88
|
+
if not isinstance(obj, dict):
|
|
89
|
+
return cls.model_validate(obj)
|
|
90
|
+
|
|
91
|
+
_obj = cls.model_validate(
|
|
92
|
+
{
|
|
93
|
+
"count": obj.get("count"),
|
|
94
|
+
"items": (
|
|
95
|
+
[ListUsersResponseItem.from_dict(_item) for _item in obj["items"]]
|
|
96
|
+
if obj.get("items") is not None
|
|
97
|
+
else None
|
|
98
|
+
),
|
|
99
|
+
}
|
|
100
|
+
)
|
|
101
|
+
return _obj
|
|
@@ -0,0 +1,83 @@
|
|
|
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, StrictStr
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class ListUsersResponseItem(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
ListUsersResponseItem
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
id: Optional[StrictStr] = None
|
|
31
|
+
username: Optional[StrictStr] = None
|
|
32
|
+
__properties: ClassVar[List[str]] = ["id", "username"]
|
|
33
|
+
|
|
34
|
+
model_config = ConfigDict(
|
|
35
|
+
populate_by_name=True,
|
|
36
|
+
validate_assignment=True,
|
|
37
|
+
protected_namespaces=(),
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
def to_str(self) -> str:
|
|
41
|
+
"""Returns the string representation of the model using alias"""
|
|
42
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
43
|
+
|
|
44
|
+
def to_json(self) -> str:
|
|
45
|
+
"""Returns the JSON representation of the model using alias"""
|
|
46
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
47
|
+
return json.dumps(self.to_dict())
|
|
48
|
+
|
|
49
|
+
@classmethod
|
|
50
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
51
|
+
"""Create an instance of ListUsersResponseItem from a JSON string"""
|
|
52
|
+
return cls.from_dict(json.loads(json_str))
|
|
53
|
+
|
|
54
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
55
|
+
"""Return the dictionary representation of the model using alias.
|
|
56
|
+
|
|
57
|
+
This has the following differences from calling pydantic's
|
|
58
|
+
`self.model_dump(by_alias=True)`:
|
|
59
|
+
|
|
60
|
+
* `None` is only added to the output dict for nullable fields that
|
|
61
|
+
were set at model initialization. Other fields with value `None`
|
|
62
|
+
are ignored.
|
|
63
|
+
"""
|
|
64
|
+
excluded_fields: Set[str] = set([])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of ListUsersResponseItem from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({"id": obj.get("id"), "username": obj.get("username")})
|
|
83
|
+
return _obj
|
|
@@ -0,0 +1,82 @@
|
|
|
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, StrictStr
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class ListVersionsResponse(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
ListVersionsResponse
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
versions: Optional[List[StrictStr]] = None
|
|
31
|
+
__properties: ClassVar[List[str]] = ["versions"]
|
|
32
|
+
|
|
33
|
+
model_config = ConfigDict(
|
|
34
|
+
populate_by_name=True,
|
|
35
|
+
validate_assignment=True,
|
|
36
|
+
protected_namespaces=(),
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of ListVersionsResponse from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([])
|
|
64
|
+
|
|
65
|
+
_dict = self.model_dump(
|
|
66
|
+
by_alias=True,
|
|
67
|
+
exclude=excluded_fields,
|
|
68
|
+
exclude_none=True,
|
|
69
|
+
)
|
|
70
|
+
return _dict
|
|
71
|
+
|
|
72
|
+
@classmethod
|
|
73
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
74
|
+
"""Create an instance of ListVersionsResponse from a dict"""
|
|
75
|
+
if obj is None:
|
|
76
|
+
return None
|
|
77
|
+
|
|
78
|
+
if not isinstance(obj, dict):
|
|
79
|
+
return cls.model_validate(obj)
|
|
80
|
+
|
|
81
|
+
_obj = cls.model_validate({"versions": obj.get("versions")})
|
|
82
|
+
return _obj
|
|
@@ -0,0 +1,121 @@
|
|
|
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, Field, StrictInt, StrictStr
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
from stackit.postgresflex.models.acl import ACL
|
|
25
|
+
from stackit.postgresflex.models.storage import Storage
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class PartialUpdateInstancePayload(BaseModel):
|
|
29
|
+
"""
|
|
30
|
+
PartialUpdateInstancePayload
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
acl: Optional[ACL] = None
|
|
34
|
+
backup_schedule: Optional[StrictStr] = Field(default=None, alias="backupSchedule")
|
|
35
|
+
flavor_id: Optional[StrictStr] = Field(default=None, alias="flavorId")
|
|
36
|
+
labels: Optional[Dict[str, StrictStr]] = Field(default=None, description="Labels field is not certain/clear")
|
|
37
|
+
name: Optional[StrictStr] = None
|
|
38
|
+
options: Optional[Dict[str, StrictStr]] = None
|
|
39
|
+
replicas: Optional[StrictInt] = None
|
|
40
|
+
storage: Optional[Storage] = None
|
|
41
|
+
version: Optional[StrictStr] = None
|
|
42
|
+
__properties: ClassVar[List[str]] = [
|
|
43
|
+
"acl",
|
|
44
|
+
"backupSchedule",
|
|
45
|
+
"flavorId",
|
|
46
|
+
"labels",
|
|
47
|
+
"name",
|
|
48
|
+
"options",
|
|
49
|
+
"replicas",
|
|
50
|
+
"storage",
|
|
51
|
+
"version",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
model_config = ConfigDict(
|
|
55
|
+
populate_by_name=True,
|
|
56
|
+
validate_assignment=True,
|
|
57
|
+
protected_namespaces=(),
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
def to_str(self) -> str:
|
|
61
|
+
"""Returns the string representation of the model using alias"""
|
|
62
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
63
|
+
|
|
64
|
+
def to_json(self) -> str:
|
|
65
|
+
"""Returns the JSON representation of the model using alias"""
|
|
66
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
67
|
+
return json.dumps(self.to_dict())
|
|
68
|
+
|
|
69
|
+
@classmethod
|
|
70
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
71
|
+
"""Create an instance of PartialUpdateInstancePayload from a JSON string"""
|
|
72
|
+
return cls.from_dict(json.loads(json_str))
|
|
73
|
+
|
|
74
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
75
|
+
"""Return the dictionary representation of the model using alias.
|
|
76
|
+
|
|
77
|
+
This has the following differences from calling pydantic's
|
|
78
|
+
`self.model_dump(by_alias=True)`:
|
|
79
|
+
|
|
80
|
+
* `None` is only added to the output dict for nullable fields that
|
|
81
|
+
were set at model initialization. Other fields with value `None`
|
|
82
|
+
are ignored.
|
|
83
|
+
"""
|
|
84
|
+
excluded_fields: Set[str] = set([])
|
|
85
|
+
|
|
86
|
+
_dict = self.model_dump(
|
|
87
|
+
by_alias=True,
|
|
88
|
+
exclude=excluded_fields,
|
|
89
|
+
exclude_none=True,
|
|
90
|
+
)
|
|
91
|
+
# override the default output from pydantic by calling `to_dict()` of acl
|
|
92
|
+
if self.acl:
|
|
93
|
+
_dict["acl"] = self.acl.to_dict()
|
|
94
|
+
# override the default output from pydantic by calling `to_dict()` of storage
|
|
95
|
+
if self.storage:
|
|
96
|
+
_dict["storage"] = self.storage.to_dict()
|
|
97
|
+
return _dict
|
|
98
|
+
|
|
99
|
+
@classmethod
|
|
100
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
101
|
+
"""Create an instance of PartialUpdateInstancePayload from a dict"""
|
|
102
|
+
if obj is None:
|
|
103
|
+
return None
|
|
104
|
+
|
|
105
|
+
if not isinstance(obj, dict):
|
|
106
|
+
return cls.model_validate(obj)
|
|
107
|
+
|
|
108
|
+
_obj = cls.model_validate(
|
|
109
|
+
{
|
|
110
|
+
"acl": ACL.from_dict(obj["acl"]) if obj.get("acl") is not None else None,
|
|
111
|
+
"backupSchedule": obj.get("backupSchedule"),
|
|
112
|
+
"flavorId": obj.get("flavorId"),
|
|
113
|
+
"labels": obj.get("labels"),
|
|
114
|
+
"name": obj.get("name"),
|
|
115
|
+
"options": obj.get("options"),
|
|
116
|
+
"replicas": obj.get("replicas"),
|
|
117
|
+
"storage": Storage.from_dict(obj["storage"]) if obj.get("storage") is not None else None,
|
|
118
|
+
"version": obj.get("version"),
|
|
119
|
+
}
|
|
120
|
+
)
|
|
121
|
+
return _obj
|
|
@@ -0,0 +1,87 @@
|
|
|
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
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
from stackit.postgresflex.models.instance import Instance
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class PartialUpdateInstanceResponse(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
PartialUpdateInstanceResponse
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
item: Optional[Instance] = None
|
|
33
|
+
__properties: ClassVar[List[str]] = ["item"]
|
|
34
|
+
|
|
35
|
+
model_config = ConfigDict(
|
|
36
|
+
populate_by_name=True,
|
|
37
|
+
validate_assignment=True,
|
|
38
|
+
protected_namespaces=(),
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
def to_str(self) -> str:
|
|
42
|
+
"""Returns the string representation of the model using alias"""
|
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
44
|
+
|
|
45
|
+
def to_json(self) -> str:
|
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
48
|
+
return json.dumps(self.to_dict())
|
|
49
|
+
|
|
50
|
+
@classmethod
|
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
52
|
+
"""Create an instance of PartialUpdateInstanceResponse from a JSON string"""
|
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
|
54
|
+
|
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
|
57
|
+
|
|
58
|
+
This has the following differences from calling pydantic's
|
|
59
|
+
`self.model_dump(by_alias=True)`:
|
|
60
|
+
|
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
|
62
|
+
were set at model initialization. Other fields with value `None`
|
|
63
|
+
are ignored.
|
|
64
|
+
"""
|
|
65
|
+
excluded_fields: Set[str] = set([])
|
|
66
|
+
|
|
67
|
+
_dict = self.model_dump(
|
|
68
|
+
by_alias=True,
|
|
69
|
+
exclude=excluded_fields,
|
|
70
|
+
exclude_none=True,
|
|
71
|
+
)
|
|
72
|
+
# override the default output from pydantic by calling `to_dict()` of item
|
|
73
|
+
if self.item:
|
|
74
|
+
_dict["item"] = self.item.to_dict()
|
|
75
|
+
return _dict
|
|
76
|
+
|
|
77
|
+
@classmethod
|
|
78
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
79
|
+
"""Create an instance of PartialUpdateInstanceResponse from a dict"""
|
|
80
|
+
if obj is None:
|
|
81
|
+
return None
|
|
82
|
+
|
|
83
|
+
if not isinstance(obj, dict):
|
|
84
|
+
return cls.model_validate(obj)
|
|
85
|
+
|
|
86
|
+
_obj = cls.model_validate({"item": Instance.from_dict(obj["item"]) if obj.get("item") is not None else None})
|
|
87
|
+
return _obj
|
|
@@ -0,0 +1,83 @@
|
|
|
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, StrictStr
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class PartialUpdateUserPayload(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
PartialUpdateUserPayload
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
database: Optional[StrictStr] = None
|
|
31
|
+
roles: Optional[List[StrictStr]] = None
|
|
32
|
+
__properties: ClassVar[List[str]] = ["database", "roles"]
|
|
33
|
+
|
|
34
|
+
model_config = ConfigDict(
|
|
35
|
+
populate_by_name=True,
|
|
36
|
+
validate_assignment=True,
|
|
37
|
+
protected_namespaces=(),
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
def to_str(self) -> str:
|
|
41
|
+
"""Returns the string representation of the model using alias"""
|
|
42
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
43
|
+
|
|
44
|
+
def to_json(self) -> str:
|
|
45
|
+
"""Returns the JSON representation of the model using alias"""
|
|
46
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
47
|
+
return json.dumps(self.to_dict())
|
|
48
|
+
|
|
49
|
+
@classmethod
|
|
50
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
51
|
+
"""Create an instance of PartialUpdateUserPayload from a JSON string"""
|
|
52
|
+
return cls.from_dict(json.loads(json_str))
|
|
53
|
+
|
|
54
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
55
|
+
"""Return the dictionary representation of the model using alias.
|
|
56
|
+
|
|
57
|
+
This has the following differences from calling pydantic's
|
|
58
|
+
`self.model_dump(by_alias=True)`:
|
|
59
|
+
|
|
60
|
+
* `None` is only added to the output dict for nullable fields that
|
|
61
|
+
were set at model initialization. Other fields with value `None`
|
|
62
|
+
are ignored.
|
|
63
|
+
"""
|
|
64
|
+
excluded_fields: Set[str] = set([])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of PartialUpdateUserPayload from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({"database": obj.get("database"), "roles": obj.get("roles")})
|
|
83
|
+
return _obj
|
|
@@ -0,0 +1,137 @@
|
|
|
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, Field, StrictBool, StrictStr
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class PostgresDatabaseParameter(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
PostgresDatabaseParameter
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
context: Optional[StrictStr] = Field(default=None, description="Context of the parameter.")
|
|
31
|
+
data_type: Optional[StrictStr] = Field(
|
|
32
|
+
default=None,
|
|
33
|
+
description="Datatype describes the type of data that is used in the Value field.",
|
|
34
|
+
alias="dataType",
|
|
35
|
+
)
|
|
36
|
+
default_value: Optional[StrictStr] = Field(
|
|
37
|
+
default=None, description="DefaultValue for the value field.", alias="defaultValue"
|
|
38
|
+
)
|
|
39
|
+
description: Optional[StrictStr] = Field(default=None, description="Description of the parameter.")
|
|
40
|
+
edit: Optional[StrictBool] = Field(default=None, description="Edit shows if the user can change this value.")
|
|
41
|
+
max_value: Optional[StrictStr] = Field(
|
|
42
|
+
default=None, description="MaxValue describes the highest possible value that can be set.", alias="maxValue"
|
|
43
|
+
)
|
|
44
|
+
min_value: Optional[StrictStr] = Field(
|
|
45
|
+
default=None, description="MinValue describes the lowest possible value that can be set.", alias="minValue"
|
|
46
|
+
)
|
|
47
|
+
name: Optional[StrictStr] = Field(default=None, description="Name of the parameter.")
|
|
48
|
+
pending_restart: Optional[StrictBool] = Field(
|
|
49
|
+
default=None,
|
|
50
|
+
description="PendingRestart describes if a parameter change requires a restart of the server.",
|
|
51
|
+
alias="pendingRestart",
|
|
52
|
+
)
|
|
53
|
+
reset_value: Optional[StrictStr] = Field(
|
|
54
|
+
default=None, description="ResetValue for the value field af.ter a reset.", alias="resetValue"
|
|
55
|
+
)
|
|
56
|
+
unit: Optional[StrictStr] = Field(default=None, description="Unit if the parameter has a unit if not empty.")
|
|
57
|
+
value: Optional[StrictStr] = Field(default=None, description="Value of this parameter.")
|
|
58
|
+
__properties: ClassVar[List[str]] = [
|
|
59
|
+
"context",
|
|
60
|
+
"dataType",
|
|
61
|
+
"defaultValue",
|
|
62
|
+
"description",
|
|
63
|
+
"edit",
|
|
64
|
+
"maxValue",
|
|
65
|
+
"minValue",
|
|
66
|
+
"name",
|
|
67
|
+
"pendingRestart",
|
|
68
|
+
"resetValue",
|
|
69
|
+
"unit",
|
|
70
|
+
"value",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
model_config = ConfigDict(
|
|
74
|
+
populate_by_name=True,
|
|
75
|
+
validate_assignment=True,
|
|
76
|
+
protected_namespaces=(),
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
def to_str(self) -> str:
|
|
80
|
+
"""Returns the string representation of the model using alias"""
|
|
81
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
82
|
+
|
|
83
|
+
def to_json(self) -> str:
|
|
84
|
+
"""Returns the JSON representation of the model using alias"""
|
|
85
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
86
|
+
return json.dumps(self.to_dict())
|
|
87
|
+
|
|
88
|
+
@classmethod
|
|
89
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
90
|
+
"""Create an instance of PostgresDatabaseParameter from a JSON string"""
|
|
91
|
+
return cls.from_dict(json.loads(json_str))
|
|
92
|
+
|
|
93
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
94
|
+
"""Return the dictionary representation of the model using alias.
|
|
95
|
+
|
|
96
|
+
This has the following differences from calling pydantic's
|
|
97
|
+
`self.model_dump(by_alias=True)`:
|
|
98
|
+
|
|
99
|
+
* `None` is only added to the output dict for nullable fields that
|
|
100
|
+
were set at model initialization. Other fields with value `None`
|
|
101
|
+
are ignored.
|
|
102
|
+
"""
|
|
103
|
+
excluded_fields: Set[str] = set([])
|
|
104
|
+
|
|
105
|
+
_dict = self.model_dump(
|
|
106
|
+
by_alias=True,
|
|
107
|
+
exclude=excluded_fields,
|
|
108
|
+
exclude_none=True,
|
|
109
|
+
)
|
|
110
|
+
return _dict
|
|
111
|
+
|
|
112
|
+
@classmethod
|
|
113
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
114
|
+
"""Create an instance of PostgresDatabaseParameter from a dict"""
|
|
115
|
+
if obj is None:
|
|
116
|
+
return None
|
|
117
|
+
|
|
118
|
+
if not isinstance(obj, dict):
|
|
119
|
+
return cls.model_validate(obj)
|
|
120
|
+
|
|
121
|
+
_obj = cls.model_validate(
|
|
122
|
+
{
|
|
123
|
+
"context": obj.get("context"),
|
|
124
|
+
"dataType": obj.get("dataType"),
|
|
125
|
+
"defaultValue": obj.get("defaultValue"),
|
|
126
|
+
"description": obj.get("description"),
|
|
127
|
+
"edit": obj.get("edit"),
|
|
128
|
+
"maxValue": obj.get("maxValue"),
|
|
129
|
+
"minValue": obj.get("minValue"),
|
|
130
|
+
"name": obj.get("name"),
|
|
131
|
+
"pendingRestart": obj.get("pendingRestart"),
|
|
132
|
+
"resetValue": obj.get("resetValue"),
|
|
133
|
+
"unit": obj.get("unit"),
|
|
134
|
+
"value": obj.get("value"),
|
|
135
|
+
}
|
|
136
|
+
)
|
|
137
|
+
return _obj
|