huaweicloudsdkgaussdbforopengauss 3.1.91__py2.py3-none-any.whl → 3.1.93__py2.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 (22) hide show
  1. huaweicloudsdkgaussdbforopengauss/v3/__init__.py +10 -3
  2. huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py +286 -65
  3. huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py +286 -65
  4. huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py +10 -3
  5. huaweicloudsdkgaussdbforopengauss/v3/model/delete_instance_tag_request.py +171 -0
  6. huaweicloudsdkgaussdbforopengauss/v3/model/delete_instance_tag_response.py +174 -0
  7. huaweicloudsdkgaussdbforopengauss/v3/model/instance_log_file.py +260 -0
  8. huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_error_logs_request.py +257 -0
  9. huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_error_logs_response.py +145 -0
  10. huaweicloudsdkgaussdbforopengauss/v3/model/list_top_io_traffics_request.py +257 -0
  11. huaweicloudsdkgaussdbforopengauss/v3/model/list_top_io_traffics_response.py +116 -0
  12. huaweicloudsdkgaussdbforopengauss/v3/model/open_gauss_upgrade_request.py +20 -49
  13. huaweicloudsdkgaussdbforopengauss/v3/model/show_backup_policy.py +4 -4
  14. huaweicloudsdkgaussdbforopengauss/v3/model/{instances_statistics_response_body_instances_statistics.py → show_error_log_switch_status_request.py} +42 -41
  15. huaweicloudsdkgaussdbforopengauss/v3/model/{show_instances_statistics_request.py → show_error_log_switch_status_response.py} +25 -24
  16. huaweicloudsdkgaussdbforopengauss/v3/model/top_io_info.py +405 -0
  17. {huaweicloudsdkgaussdbforopengauss-3.1.91.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.93.dist-info}/METADATA +2 -2
  18. {huaweicloudsdkgaussdbforopengauss-3.1.91.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.93.dist-info}/RECORD +21 -14
  19. huaweicloudsdkgaussdbforopengauss/v3/model/show_instances_statistics_response.py +0 -145
  20. {huaweicloudsdkgaussdbforopengauss-3.1.91.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.93.dist-info}/LICENSE +0 -0
  21. {huaweicloudsdkgaussdbforopengauss-3.1.91.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.93.dist-info}/WHEEL +0 -0
  22. {huaweicloudsdkgaussdbforopengauss-3.1.91.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.93.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,174 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.sdk_response import SdkResponse
6
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
7
+
8
+
9
+ class DeleteInstanceTagResponse(SdkResponse):
10
+
11
+ """
12
+ Attributes:
13
+ openapi_types (dict): The key is attribute name
14
+ and the value is attribute type.
15
+ attribute_map (dict): The key is attribute name
16
+ and the value is json key in definition.
17
+ """
18
+ sensitive_list = []
19
+
20
+ openapi_types = {
21
+ 'result': 'str',
22
+ 'instance_id': 'str',
23
+ 'instance_name': 'str'
24
+ }
25
+
26
+ attribute_map = {
27
+ 'result': 'result',
28
+ 'instance_id': 'instance_id',
29
+ 'instance_name': 'instance_name'
30
+ }
31
+
32
+ def __init__(self, result=None, instance_id=None, instance_name=None):
33
+ """DeleteInstanceTagResponse
34
+
35
+ The model defined in huaweicloud sdk
36
+
37
+ :param result: 处理结果
38
+ :type result: str
39
+ :param instance_id: 实例ID
40
+ :type instance_id: str
41
+ :param instance_name: 实例名称
42
+ :type instance_name: str
43
+ """
44
+
45
+ super(DeleteInstanceTagResponse, self).__init__()
46
+
47
+ self._result = None
48
+ self._instance_id = None
49
+ self._instance_name = None
50
+ self.discriminator = None
51
+
52
+ if result is not None:
53
+ self.result = result
54
+ if instance_id is not None:
55
+ self.instance_id = instance_id
56
+ if instance_name is not None:
57
+ self.instance_name = instance_name
58
+
59
+ @property
60
+ def result(self):
61
+ """Gets the result of this DeleteInstanceTagResponse.
62
+
63
+ 处理结果
64
+
65
+ :return: The result of this DeleteInstanceTagResponse.
66
+ :rtype: str
67
+ """
68
+ return self._result
69
+
70
+ @result.setter
71
+ def result(self, result):
72
+ """Sets the result of this DeleteInstanceTagResponse.
73
+
74
+ 处理结果
75
+
76
+ :param result: The result of this DeleteInstanceTagResponse.
77
+ :type result: str
78
+ """
79
+ self._result = result
80
+
81
+ @property
82
+ def instance_id(self):
83
+ """Gets the instance_id of this DeleteInstanceTagResponse.
84
+
85
+ 实例ID
86
+
87
+ :return: The instance_id of this DeleteInstanceTagResponse.
88
+ :rtype: str
89
+ """
90
+ return self._instance_id
91
+
92
+ @instance_id.setter
93
+ def instance_id(self, instance_id):
94
+ """Sets the instance_id of this DeleteInstanceTagResponse.
95
+
96
+ 实例ID
97
+
98
+ :param instance_id: The instance_id of this DeleteInstanceTagResponse.
99
+ :type instance_id: str
100
+ """
101
+ self._instance_id = instance_id
102
+
103
+ @property
104
+ def instance_name(self):
105
+ """Gets the instance_name of this DeleteInstanceTagResponse.
106
+
107
+ 实例名称
108
+
109
+ :return: The instance_name of this DeleteInstanceTagResponse.
110
+ :rtype: str
111
+ """
112
+ return self._instance_name
113
+
114
+ @instance_name.setter
115
+ def instance_name(self, instance_name):
116
+ """Sets the instance_name of this DeleteInstanceTagResponse.
117
+
118
+ 实例名称
119
+
120
+ :param instance_name: The instance_name of this DeleteInstanceTagResponse.
121
+ :type instance_name: str
122
+ """
123
+ self._instance_name = instance_name
124
+
125
+ def to_dict(self):
126
+ """Returns the model properties as a dict"""
127
+ result = {}
128
+
129
+ for attr, _ in six.iteritems(self.openapi_types):
130
+ value = getattr(self, attr)
131
+ if isinstance(value, list):
132
+ result[attr] = list(map(
133
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
134
+ value
135
+ ))
136
+ elif hasattr(value, "to_dict"):
137
+ result[attr] = value.to_dict()
138
+ elif isinstance(value, dict):
139
+ result[attr] = dict(map(
140
+ lambda item: (item[0], item[1].to_dict())
141
+ if hasattr(item[1], "to_dict") else item,
142
+ value.items()
143
+ ))
144
+ else:
145
+ if attr in self.sensitive_list:
146
+ result[attr] = "****"
147
+ else:
148
+ result[attr] = value
149
+
150
+ return result
151
+
152
+ def to_str(self):
153
+ """Returns the string representation of the model"""
154
+ import simplejson as json
155
+ if six.PY2:
156
+ import sys
157
+ reload(sys)
158
+ sys.setdefaultencoding("utf-8")
159
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
160
+
161
+ def __repr__(self):
162
+ """For `print`"""
163
+ return self.to_str()
164
+
165
+ def __eq__(self, other):
166
+ """Returns true if both objects are equal"""
167
+ if not isinstance(other, DeleteInstanceTagResponse):
168
+ return False
169
+
170
+ return self.__dict__ == other.__dict__
171
+
172
+ def __ne__(self, other):
173
+ """Returns true if both objects are not equal"""
174
+ return not self == other
@@ -0,0 +1,260 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class InstanceLogFile:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'status': 'str',
21
+ 'file_name': 'str',
22
+ 'start_time': 'str',
23
+ 'end_time': 'str',
24
+ 'file_size': 'str',
25
+ 'file_link': 'str'
26
+ }
27
+
28
+ attribute_map = {
29
+ 'status': 'status',
30
+ 'file_name': 'file_name',
31
+ 'start_time': 'start_time',
32
+ 'end_time': 'end_time',
33
+ 'file_size': 'file_size',
34
+ 'file_link': 'file_link'
35
+ }
36
+
37
+ def __init__(self, status=None, file_name=None, start_time=None, end_time=None, file_size=None, file_link=None):
38
+ """InstanceLogFile
39
+
40
+ The model defined in huaweicloud sdk
41
+
42
+ :param status: 日志采集状态。
43
+ :type status: str
44
+ :param file_name: 日志文件名称。
45
+ :type file_name: str
46
+ :param start_time: 日志开始时间。
47
+ :type start_time: str
48
+ :param end_time: 日志结束时间。
49
+ :type end_time: str
50
+ :param file_size: 日志文件大小,单位kb。
51
+ :type file_size: str
52
+ :param file_link: 日志文件下载链接。
53
+ :type file_link: str
54
+ """
55
+
56
+
57
+
58
+ self._status = None
59
+ self._file_name = None
60
+ self._start_time = None
61
+ self._end_time = None
62
+ self._file_size = None
63
+ self._file_link = None
64
+ self.discriminator = None
65
+
66
+ if status is not None:
67
+ self.status = status
68
+ if file_name is not None:
69
+ self.file_name = file_name
70
+ if start_time is not None:
71
+ self.start_time = start_time
72
+ if end_time is not None:
73
+ self.end_time = end_time
74
+ if file_size is not None:
75
+ self.file_size = file_size
76
+ if file_link is not None:
77
+ self.file_link = file_link
78
+
79
+ @property
80
+ def status(self):
81
+ """Gets the status of this InstanceLogFile.
82
+
83
+ 日志采集状态。
84
+
85
+ :return: The status of this InstanceLogFile.
86
+ :rtype: str
87
+ """
88
+ return self._status
89
+
90
+ @status.setter
91
+ def status(self, status):
92
+ """Sets the status of this InstanceLogFile.
93
+
94
+ 日志采集状态。
95
+
96
+ :param status: The status of this InstanceLogFile.
97
+ :type status: str
98
+ """
99
+ self._status = status
100
+
101
+ @property
102
+ def file_name(self):
103
+ """Gets the file_name of this InstanceLogFile.
104
+
105
+ 日志文件名称。
106
+
107
+ :return: The file_name of this InstanceLogFile.
108
+ :rtype: str
109
+ """
110
+ return self._file_name
111
+
112
+ @file_name.setter
113
+ def file_name(self, file_name):
114
+ """Sets the file_name of this InstanceLogFile.
115
+
116
+ 日志文件名称。
117
+
118
+ :param file_name: The file_name of this InstanceLogFile.
119
+ :type file_name: str
120
+ """
121
+ self._file_name = file_name
122
+
123
+ @property
124
+ def start_time(self):
125
+ """Gets the start_time of this InstanceLogFile.
126
+
127
+ 日志开始时间。
128
+
129
+ :return: The start_time of this InstanceLogFile.
130
+ :rtype: str
131
+ """
132
+ return self._start_time
133
+
134
+ @start_time.setter
135
+ def start_time(self, start_time):
136
+ """Sets the start_time of this InstanceLogFile.
137
+
138
+ 日志开始时间。
139
+
140
+ :param start_time: The start_time of this InstanceLogFile.
141
+ :type start_time: str
142
+ """
143
+ self._start_time = start_time
144
+
145
+ @property
146
+ def end_time(self):
147
+ """Gets the end_time of this InstanceLogFile.
148
+
149
+ 日志结束时间。
150
+
151
+ :return: The end_time of this InstanceLogFile.
152
+ :rtype: str
153
+ """
154
+ return self._end_time
155
+
156
+ @end_time.setter
157
+ def end_time(self, end_time):
158
+ """Sets the end_time of this InstanceLogFile.
159
+
160
+ 日志结束时间。
161
+
162
+ :param end_time: The end_time of this InstanceLogFile.
163
+ :type end_time: str
164
+ """
165
+ self._end_time = end_time
166
+
167
+ @property
168
+ def file_size(self):
169
+ """Gets the file_size of this InstanceLogFile.
170
+
171
+ 日志文件大小,单位kb。
172
+
173
+ :return: The file_size of this InstanceLogFile.
174
+ :rtype: str
175
+ """
176
+ return self._file_size
177
+
178
+ @file_size.setter
179
+ def file_size(self, file_size):
180
+ """Sets the file_size of this InstanceLogFile.
181
+
182
+ 日志文件大小,单位kb。
183
+
184
+ :param file_size: The file_size of this InstanceLogFile.
185
+ :type file_size: str
186
+ """
187
+ self._file_size = file_size
188
+
189
+ @property
190
+ def file_link(self):
191
+ """Gets the file_link of this InstanceLogFile.
192
+
193
+ 日志文件下载链接。
194
+
195
+ :return: The file_link of this InstanceLogFile.
196
+ :rtype: str
197
+ """
198
+ return self._file_link
199
+
200
+ @file_link.setter
201
+ def file_link(self, file_link):
202
+ """Sets the file_link of this InstanceLogFile.
203
+
204
+ 日志文件下载链接。
205
+
206
+ :param file_link: The file_link of this InstanceLogFile.
207
+ :type file_link: str
208
+ """
209
+ self._file_link = file_link
210
+
211
+ def to_dict(self):
212
+ """Returns the model properties as a dict"""
213
+ result = {}
214
+
215
+ for attr, _ in six.iteritems(self.openapi_types):
216
+ value = getattr(self, attr)
217
+ if isinstance(value, list):
218
+ result[attr] = list(map(
219
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
220
+ value
221
+ ))
222
+ elif hasattr(value, "to_dict"):
223
+ result[attr] = value.to_dict()
224
+ elif isinstance(value, dict):
225
+ result[attr] = dict(map(
226
+ lambda item: (item[0], item[1].to_dict())
227
+ if hasattr(item[1], "to_dict") else item,
228
+ value.items()
229
+ ))
230
+ else:
231
+ if attr in self.sensitive_list:
232
+ result[attr] = "****"
233
+ else:
234
+ result[attr] = value
235
+
236
+ return result
237
+
238
+ def to_str(self):
239
+ """Returns the string representation of the model"""
240
+ import simplejson as json
241
+ if six.PY2:
242
+ import sys
243
+ reload(sys)
244
+ sys.setdefaultencoding("utf-8")
245
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
246
+
247
+ def __repr__(self):
248
+ """For `print`"""
249
+ return self.to_str()
250
+
251
+ def __eq__(self, other):
252
+ """Returns true if both objects are equal"""
253
+ if not isinstance(other, InstanceLogFile):
254
+ return False
255
+
256
+ return self.__dict__ == other.__dict__
257
+
258
+ def __ne__(self, other):
259
+ """Returns true if both objects are not equal"""
260
+ return not self == other
@@ -0,0 +1,257 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class ListInstanceErrorLogsRequest:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'x_language': 'str',
21
+ 'instance_id': 'str',
22
+ 'offset': 'int',
23
+ 'limit': 'int',
24
+ 'start_time': 'str',
25
+ 'end_time': 'str'
26
+ }
27
+
28
+ attribute_map = {
29
+ 'x_language': 'X-Language',
30
+ 'instance_id': 'instance_id',
31
+ 'offset': 'offset',
32
+ 'limit': 'limit',
33
+ 'start_time': 'start_time',
34
+ 'end_time': 'end_time'
35
+ }
36
+
37
+ def __init__(self, x_language=None, instance_id=None, offset=None, limit=None, start_time=None, end_time=None):
38
+ """ListInstanceErrorLogsRequest
39
+
40
+ The model defined in huaweicloud sdk
41
+
42
+ :param x_language: 语言
43
+ :type x_language: str
44
+ :param instance_id: 实例ID。
45
+ :type instance_id: str
46
+ :param offset: 索引位置,偏移量。从第一条数据偏移offset条数据后开始查询,默认为0(偏移0条数据,表示从第一条数据开始查询),必须为数字,不能为负数。例如:该参数指定为0,limit指定为10,则只展示第1-10条数据。
47
+ :type offset: int
48
+ :param limit: 查询记录数。默认为10,不能为负数,最小值为1,最大值为100。例如该参数设定为10,则查询结果最多只显示10条记录。
49
+ :type limit: int
50
+ :param start_time: 开始时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
51
+ :type start_time: str
52
+ :param end_time: 结束时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。只能查询当前时间前30天的错误日志。
53
+ :type end_time: str
54
+ """
55
+
56
+
57
+
58
+ self._x_language = None
59
+ self._instance_id = None
60
+ self._offset = None
61
+ self._limit = None
62
+ self._start_time = None
63
+ self._end_time = None
64
+ self.discriminator = None
65
+
66
+ if x_language is not None:
67
+ self.x_language = x_language
68
+ self.instance_id = instance_id
69
+ if offset is not None:
70
+ self.offset = offset
71
+ if limit is not None:
72
+ self.limit = limit
73
+ self.start_time = start_time
74
+ self.end_time = end_time
75
+
76
+ @property
77
+ def x_language(self):
78
+ """Gets the x_language of this ListInstanceErrorLogsRequest.
79
+
80
+ 语言
81
+
82
+ :return: The x_language of this ListInstanceErrorLogsRequest.
83
+ :rtype: str
84
+ """
85
+ return self._x_language
86
+
87
+ @x_language.setter
88
+ def x_language(self, x_language):
89
+ """Sets the x_language of this ListInstanceErrorLogsRequest.
90
+
91
+ 语言
92
+
93
+ :param x_language: The x_language of this ListInstanceErrorLogsRequest.
94
+ :type x_language: str
95
+ """
96
+ self._x_language = x_language
97
+
98
+ @property
99
+ def instance_id(self):
100
+ """Gets the instance_id of this ListInstanceErrorLogsRequest.
101
+
102
+ 实例ID。
103
+
104
+ :return: The instance_id of this ListInstanceErrorLogsRequest.
105
+ :rtype: str
106
+ """
107
+ return self._instance_id
108
+
109
+ @instance_id.setter
110
+ def instance_id(self, instance_id):
111
+ """Sets the instance_id of this ListInstanceErrorLogsRequest.
112
+
113
+ 实例ID。
114
+
115
+ :param instance_id: The instance_id of this ListInstanceErrorLogsRequest.
116
+ :type instance_id: str
117
+ """
118
+ self._instance_id = instance_id
119
+
120
+ @property
121
+ def offset(self):
122
+ """Gets the offset of this ListInstanceErrorLogsRequest.
123
+
124
+ 索引位置,偏移量。从第一条数据偏移offset条数据后开始查询,默认为0(偏移0条数据,表示从第一条数据开始查询),必须为数字,不能为负数。例如:该参数指定为0,limit指定为10,则只展示第1-10条数据。
125
+
126
+ :return: The offset of this ListInstanceErrorLogsRequest.
127
+ :rtype: int
128
+ """
129
+ return self._offset
130
+
131
+ @offset.setter
132
+ def offset(self, offset):
133
+ """Sets the offset of this ListInstanceErrorLogsRequest.
134
+
135
+ 索引位置,偏移量。从第一条数据偏移offset条数据后开始查询,默认为0(偏移0条数据,表示从第一条数据开始查询),必须为数字,不能为负数。例如:该参数指定为0,limit指定为10,则只展示第1-10条数据。
136
+
137
+ :param offset: The offset of this ListInstanceErrorLogsRequest.
138
+ :type offset: int
139
+ """
140
+ self._offset = offset
141
+
142
+ @property
143
+ def limit(self):
144
+ """Gets the limit of this ListInstanceErrorLogsRequest.
145
+
146
+ 查询记录数。默认为10,不能为负数,最小值为1,最大值为100。例如该参数设定为10,则查询结果最多只显示10条记录。
147
+
148
+ :return: The limit of this ListInstanceErrorLogsRequest.
149
+ :rtype: int
150
+ """
151
+ return self._limit
152
+
153
+ @limit.setter
154
+ def limit(self, limit):
155
+ """Sets the limit of this ListInstanceErrorLogsRequest.
156
+
157
+ 查询记录数。默认为10,不能为负数,最小值为1,最大值为100。例如该参数设定为10,则查询结果最多只显示10条记录。
158
+
159
+ :param limit: The limit of this ListInstanceErrorLogsRequest.
160
+ :type limit: int
161
+ """
162
+ self._limit = limit
163
+
164
+ @property
165
+ def start_time(self):
166
+ """Gets the start_time of this ListInstanceErrorLogsRequest.
167
+
168
+ 开始时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
169
+
170
+ :return: The start_time of this ListInstanceErrorLogsRequest.
171
+ :rtype: str
172
+ """
173
+ return self._start_time
174
+
175
+ @start_time.setter
176
+ def start_time(self, start_time):
177
+ """Sets the start_time of this ListInstanceErrorLogsRequest.
178
+
179
+ 开始时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
180
+
181
+ :param start_time: The start_time of this ListInstanceErrorLogsRequest.
182
+ :type start_time: str
183
+ """
184
+ self._start_time = start_time
185
+
186
+ @property
187
+ def end_time(self):
188
+ """Gets the end_time of this ListInstanceErrorLogsRequest.
189
+
190
+ 结束时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。只能查询当前时间前30天的错误日志。
191
+
192
+ :return: The end_time of this ListInstanceErrorLogsRequest.
193
+ :rtype: str
194
+ """
195
+ return self._end_time
196
+
197
+ @end_time.setter
198
+ def end_time(self, end_time):
199
+ """Sets the end_time of this ListInstanceErrorLogsRequest.
200
+
201
+ 结束时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。只能查询当前时间前30天的错误日志。
202
+
203
+ :param end_time: The end_time of this ListInstanceErrorLogsRequest.
204
+ :type end_time: str
205
+ """
206
+ self._end_time = end_time
207
+
208
+ def to_dict(self):
209
+ """Returns the model properties as a dict"""
210
+ result = {}
211
+
212
+ for attr, _ in six.iteritems(self.openapi_types):
213
+ value = getattr(self, attr)
214
+ if isinstance(value, list):
215
+ result[attr] = list(map(
216
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
217
+ value
218
+ ))
219
+ elif hasattr(value, "to_dict"):
220
+ result[attr] = value.to_dict()
221
+ elif isinstance(value, dict):
222
+ result[attr] = dict(map(
223
+ lambda item: (item[0], item[1].to_dict())
224
+ if hasattr(item[1], "to_dict") else item,
225
+ value.items()
226
+ ))
227
+ else:
228
+ if attr in self.sensitive_list:
229
+ result[attr] = "****"
230
+ else:
231
+ result[attr] = value
232
+
233
+ return result
234
+
235
+ def to_str(self):
236
+ """Returns the string representation of the model"""
237
+ import simplejson as json
238
+ if six.PY2:
239
+ import sys
240
+ reload(sys)
241
+ sys.setdefaultencoding("utf-8")
242
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
243
+
244
+ def __repr__(self):
245
+ """For `print`"""
246
+ return self.to_str()
247
+
248
+ def __eq__(self, other):
249
+ """Returns true if both objects are equal"""
250
+ if not isinstance(other, ListInstanceErrorLogsRequest):
251
+ return False
252
+
253
+ return self.__dict__ == other.__dict__
254
+
255
+ def __ne__(self, other):
256
+ """Returns true if both objects are not equal"""
257
+ return not self == other