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.
Files changed (64) hide show
  1. stackit/mongodbflex/__init__.py +103 -0
  2. stackit/mongodbflex/api/__init__.py +4 -0
  3. stackit/mongodbflex/api/default_api.py +6867 -0
  4. stackit/mongodbflex/api_client.py +627 -0
  5. stackit/mongodbflex/api_response.py +23 -0
  6. stackit/mongodbflex/configuration.py +112 -0
  7. stackit/mongodbflex/exceptions.py +199 -0
  8. stackit/mongodbflex/models/__init__.py +84 -0
  9. stackit/mongodbflex/models/acl.py +82 -0
  10. stackit/mongodbflex/models/backup.py +100 -0
  11. stackit/mongodbflex/models/backup_schedule.py +103 -0
  12. stackit/mongodbflex/models/clone_instance_payload.py +83 -0
  13. stackit/mongodbflex/models/clone_instance_response.py +82 -0
  14. stackit/mongodbflex/models/create_instance_payload.py +121 -0
  15. stackit/mongodbflex/models/create_instance_response.py +82 -0
  16. stackit/mongodbflex/models/create_user_payload.py +86 -0
  17. stackit/mongodbflex/models/create_user_response.py +87 -0
  18. stackit/mongodbflex/models/data_point.py +83 -0
  19. stackit/mongodbflex/models/error.py +92 -0
  20. stackit/mongodbflex/models/flavor.py +92 -0
  21. stackit/mongodbflex/models/get_backup_response.py +87 -0
  22. stackit/mongodbflex/models/get_instance_response.py +87 -0
  23. stackit/mongodbflex/models/get_user_response.py +89 -0
  24. stackit/mongodbflex/models/handlers_infra_flavor.py +94 -0
  25. stackit/mongodbflex/models/handlers_infra_get_flavors_response.py +99 -0
  26. stackit/mongodbflex/models/handlers_instances_get_instance_response.py +87 -0
  27. stackit/mongodbflex/models/handlers_instances_slow_queries_response.py +103 -0
  28. stackit/mongodbflex/models/handlers_instances_suggested_indexes_response.py +118 -0
  29. stackit/mongodbflex/models/host.py +101 -0
  30. stackit/mongodbflex/models/host_metric.py +103 -0
  31. stackit/mongodbflex/models/instance.py +128 -0
  32. stackit/mongodbflex/models/instance_list_instance.py +84 -0
  33. stackit/mongodbflex/models/instance_response_user.py +96 -0
  34. stackit/mongodbflex/models/list_backups_response.py +97 -0
  35. stackit/mongodbflex/models/list_flavors_response.py +99 -0
  36. stackit/mongodbflex/models/list_instances_response.py +101 -0
  37. stackit/mongodbflex/models/list_metrics_response.py +93 -0
  38. stackit/mongodbflex/models/list_restore_jobs_response.py +99 -0
  39. stackit/mongodbflex/models/list_storages_response.py +95 -0
  40. stackit/mongodbflex/models/list_user.py +83 -0
  41. stackit/mongodbflex/models/list_users_response.py +99 -0
  42. stackit/mongodbflex/models/list_versions_response.py +82 -0
  43. stackit/mongodbflex/models/mongodbatlas_operation.py +97 -0
  44. stackit/mongodbflex/models/mongodbatlas_stats.py +98 -0
  45. stackit/mongodbflex/models/partial_update_instance_payload.py +121 -0
  46. stackit/mongodbflex/models/partial_update_user_payload.py +83 -0
  47. stackit/mongodbflex/models/restore_instance_payload.py +83 -0
  48. stackit/mongodbflex/models/restore_instance_response.py +89 -0
  49. stackit/mongodbflex/models/restore_instance_status.py +94 -0
  50. stackit/mongodbflex/models/shape.py +122 -0
  51. stackit/mongodbflex/models/slow_query.py +83 -0
  52. stackit/mongodbflex/models/storage.py +83 -0
  53. stackit/mongodbflex/models/storage_range.py +83 -0
  54. stackit/mongodbflex/models/suggested_index.py +102 -0
  55. stackit/mongodbflex/models/update_backup_schedule_payload.py +103 -0
  56. stackit/mongodbflex/models/update_instance_payload.py +121 -0
  57. stackit/mongodbflex/models/update_instance_response.py +87 -0
  58. stackit/mongodbflex/models/update_user_payload.py +83 -0
  59. stackit/mongodbflex/models/user.py +100 -0
  60. stackit/mongodbflex/py.typed +0 -0
  61. stackit/mongodbflex/rest.py +149 -0
  62. stackit_mongodbflex-0.0.1a0.dist-info/METADATA +45 -0
  63. stackit_mongodbflex-0.0.1a0.dist-info/RECORD +64 -0
  64. stackit_mongodbflex-0.0.1a0.dist-info/WHEEL +4 -0
@@ -0,0 +1,83 @@
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
+ 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
+
25
+ class StorageRange(BaseModel):
26
+ """
27
+ StorageRange
28
+ """
29
+
30
+ max: Optional[StrictInt] = None
31
+ min: Optional[StrictInt] = None
32
+ __properties: ClassVar[List[str]] = ["max", "min"]
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 StorageRange 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 StorageRange 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({"max": obj.get("max"), "min": obj.get("min")})
83
+ return _obj
@@ -0,0 +1,102 @@
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
+ from __future__ import annotations
16
+
17
+ import json
18
+ import pprint
19
+ from typing import Any, ClassVar, Dict, List, Optional, Set, Union
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing_extensions import Self
23
+
24
+
25
+ class SuggestedIndex(BaseModel):
26
+ """
27
+ SuggestedIndex
28
+ """
29
+
30
+ id: Optional[StrictStr] = Field(default=None, description="Unique id for this suggested index.")
31
+ impact: Optional[List[StrictStr]] = Field(
32
+ default=None,
33
+ description="List of unique identifiers which correspond the query shapes in this response which pertain to this suggested index.",
34
+ )
35
+ index: Optional[List[Dict[str, StrictInt]]] = Field(
36
+ default=None,
37
+ description="Array of documents that specifies a key in the index and its sort order, ascending or descending.",
38
+ )
39
+ namespace: Optional[StrictStr] = Field(default=None, description="Namespace of the suggested index.")
40
+ weight: Optional[Union[StrictFloat, StrictInt]] = Field(
41
+ default=None, description="Estimated percentage performance improvement that the suggested index would provide."
42
+ )
43
+ __properties: ClassVar[List[str]] = ["id", "impact", "index", "namespace", "weight"]
44
+
45
+ model_config = ConfigDict(
46
+ populate_by_name=True,
47
+ validate_assignment=True,
48
+ protected_namespaces=(),
49
+ )
50
+
51
+ def to_str(self) -> str:
52
+ """Returns the string representation of the model using alias"""
53
+ return pprint.pformat(self.model_dump(by_alias=True))
54
+
55
+ def to_json(self) -> str:
56
+ """Returns the JSON representation of the model using alias"""
57
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
58
+ return json.dumps(self.to_dict())
59
+
60
+ @classmethod
61
+ def from_json(cls, json_str: str) -> Optional[Self]:
62
+ """Create an instance of SuggestedIndex from a JSON string"""
63
+ return cls.from_dict(json.loads(json_str))
64
+
65
+ def to_dict(self) -> Dict[str, Any]:
66
+ """Return the dictionary representation of the model using alias.
67
+
68
+ This has the following differences from calling pydantic's
69
+ `self.model_dump(by_alias=True)`:
70
+
71
+ * `None` is only added to the output dict for nullable fields that
72
+ were set at model initialization. Other fields with value `None`
73
+ are ignored.
74
+ """
75
+ excluded_fields: Set[str] = set([])
76
+
77
+ _dict = self.model_dump(
78
+ by_alias=True,
79
+ exclude=excluded_fields,
80
+ exclude_none=True,
81
+ )
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of SuggestedIndex from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate(
94
+ {
95
+ "id": obj.get("id"),
96
+ "impact": obj.get("impact"),
97
+ "index": obj.get("index"),
98
+ "namespace": obj.get("namespace"),
99
+ "weight": obj.get("weight"),
100
+ }
101
+ )
102
+ return _obj
@@ -0,0 +1,103 @@
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
+ 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
+
25
+ class UpdateBackupSchedulePayload(BaseModel):
26
+ """
27
+ UpdateBackupSchedulePayload
28
+ """
29
+
30
+ backup_schedule: Optional[StrictStr] = Field(default=None, alias="backupSchedule")
31
+ daily_snapshot_retention_days: Optional[StrictInt] = Field(default=None, alias="dailySnapshotRetentionDays")
32
+ monthly_snapshot_retention_months: Optional[StrictInt] = Field(default=None, alias="monthlySnapshotRetentionMonths")
33
+ point_in_time_window_hours: Optional[StrictInt] = Field(default=None, alias="pointInTimeWindowHours")
34
+ snapshot_retention_days: Optional[StrictInt] = Field(default=None, alias="snapshotRetentionDays")
35
+ weekly_snapshot_retention_weeks: Optional[StrictInt] = Field(default=None, alias="weeklySnapshotRetentionWeeks")
36
+ __properties: ClassVar[List[str]] = [
37
+ "backupSchedule",
38
+ "dailySnapshotRetentionDays",
39
+ "monthlySnapshotRetentionMonths",
40
+ "pointInTimeWindowHours",
41
+ "snapshotRetentionDays",
42
+ "weeklySnapshotRetentionWeeks",
43
+ ]
44
+
45
+ model_config = ConfigDict(
46
+ populate_by_name=True,
47
+ validate_assignment=True,
48
+ protected_namespaces=(),
49
+ )
50
+
51
+ def to_str(self) -> str:
52
+ """Returns the string representation of the model using alias"""
53
+ return pprint.pformat(self.model_dump(by_alias=True))
54
+
55
+ def to_json(self) -> str:
56
+ """Returns the JSON representation of the model using alias"""
57
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
58
+ return json.dumps(self.to_dict())
59
+
60
+ @classmethod
61
+ def from_json(cls, json_str: str) -> Optional[Self]:
62
+ """Create an instance of UpdateBackupSchedulePayload from a JSON string"""
63
+ return cls.from_dict(json.loads(json_str))
64
+
65
+ def to_dict(self) -> Dict[str, Any]:
66
+ """Return the dictionary representation of the model using alias.
67
+
68
+ This has the following differences from calling pydantic's
69
+ `self.model_dump(by_alias=True)`:
70
+
71
+ * `None` is only added to the output dict for nullable fields that
72
+ were set at model initialization. Other fields with value `None`
73
+ are ignored.
74
+ """
75
+ excluded_fields: Set[str] = set([])
76
+
77
+ _dict = self.model_dump(
78
+ by_alias=True,
79
+ exclude=excluded_fields,
80
+ exclude_none=True,
81
+ )
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of UpdateBackupSchedulePayload from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate(
94
+ {
95
+ "backupSchedule": obj.get("backupSchedule"),
96
+ "dailySnapshotRetentionDays": obj.get("dailySnapshotRetentionDays"),
97
+ "monthlySnapshotRetentionMonths": obj.get("monthlySnapshotRetentionMonths"),
98
+ "pointInTimeWindowHours": obj.get("pointInTimeWindowHours"),
99
+ "snapshotRetentionDays": obj.get("snapshotRetentionDays"),
100
+ "weeklySnapshotRetentionWeeks": obj.get("weeklySnapshotRetentionWeeks"),
101
+ }
102
+ )
103
+ return _obj
@@ -0,0 +1,121 @@
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
+ 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.mongodbflex.models.acl import ACL
25
+ from stackit.mongodbflex.models.storage import Storage
26
+
27
+
28
+ class UpdateInstancePayload(BaseModel):
29
+ """
30
+ UpdateInstancePayload
31
+ """
32
+
33
+ acl: ACL
34
+ backup_schedule: StrictStr = Field(alias="backupSchedule")
35
+ flavor_id: StrictStr = Field(alias="flavorId")
36
+ labels: Optional[Dict[str, StrictStr]] = Field(default=None, description="Labels field is not certain/clear")
37
+ name: StrictStr
38
+ options: Dict[str, StrictStr]
39
+ replicas: StrictInt
40
+ storage: Storage
41
+ version: StrictStr
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 UpdateInstancePayload 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 UpdateInstancePayload 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 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
+ 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.mongodbflex.models.instance import Instance
25
+
26
+
27
+ class UpdateInstanceResponse(BaseModel):
28
+ """
29
+ UpdateInstanceResponse
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 UpdateInstanceResponse 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 UpdateInstanceResponse 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 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
+ 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 UpdateUserPayload(BaseModel):
26
+ """
27
+ UpdateUserPayload
28
+ """
29
+
30
+ database: StrictStr
31
+ roles: List[StrictStr]
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 UpdateUserPayload 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 UpdateUserPayload 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,100 @@
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
+ 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
File without changes