huaweicloudsdkdwr 3.1.151__py2.py3-none-any.whl → 3.1.152__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.
Potentially problematic release.
This version of huaweicloudsdkdwr might be problematic. Click here for more details.
- huaweicloudsdkdwr/v1/__init__.py +91 -0
- huaweicloudsdkdwr/v1/dwr_async_client.py +1519 -0
- huaweicloudsdkdwr/v1/dwr_client.py +1516 -0
- huaweicloudsdkdwr/v1/model/__init__.py +88 -0
- huaweicloudsdkdwr/v1/model/build_progress.py +231 -0
- huaweicloudsdkdwr/v1/model/charge_info.py +230 -0
- huaweicloudsdkdwr/v1/model/collection_base_info.py +142 -0
- huaweicloudsdkdwr/v1/model/create_collection_body.py +281 -0
- huaweicloudsdkdwr/v1/model/create_collection_request.py +111 -0
- huaweicloudsdkdwr/v1/model/create_collection_response.py +145 -0
- huaweicloudsdkdwr/v1/model/create_index_body.py +166 -0
- huaweicloudsdkdwr/v1/model/create_index_request.py +111 -0
- huaweicloudsdkdwr/v1/model/create_index_response.py +145 -0
- huaweicloudsdkdwr/v1/model/create_store_body.py +248 -0
- huaweicloudsdkdwr/v1/model/create_store_data.py +335 -0
- huaweicloudsdkdwr/v1/model/create_store_request.py +111 -0
- huaweicloudsdkdwr/v1/model/create_store_response.py +170 -0
- huaweicloudsdkdwr/v1/model/decribe_collection_data.py +315 -0
- huaweicloudsdkdwr/v1/model/delete_collection_request.py +111 -0
- huaweicloudsdkdwr/v1/model/delete_collection_response.py +145 -0
- huaweicloudsdkdwr/v1/model/delete_entities_body.py +170 -0
- huaweicloudsdkdwr/v1/model/delete_entities_request.py +111 -0
- huaweicloudsdkdwr/v1/model/delete_entities_response.py +145 -0
- huaweicloudsdkdwr/v1/model/delete_index_body.py +170 -0
- huaweicloudsdkdwr/v1/model/delete_index_request.py +111 -0
- huaweicloudsdkdwr/v1/model/delete_index_response.py +145 -0
- huaweicloudsdkdwr/v1/model/delete_store_data.py +114 -0
- huaweicloudsdkdwr/v1/model/delete_store_request.py +111 -0
- huaweicloudsdkdwr/v1/model/delete_store_response.py +170 -0
- huaweicloudsdkdwr/v1/model/describe_collection_request.py +111 -0
- huaweicloudsdkdwr/v1/model/describe_collection_response.py +170 -0
- huaweicloudsdkdwr/v1/model/describe_index_body.py +170 -0
- huaweicloudsdkdwr/v1/model/describe_index_request.py +111 -0
- huaweicloudsdkdwr/v1/model/describe_index_response.py +170 -0
- huaweicloudsdkdwr/v1/model/describe_index_respose_data.py +171 -0
- huaweicloudsdkdwr/v1/model/describe_job_body.py +114 -0
- huaweicloudsdkdwr/v1/model/describe_job_request.py +111 -0
- huaweicloudsdkdwr/v1/model/describe_job_response.py +170 -0
- huaweicloudsdkdwr/v1/model/describe_store_data.py +364 -0
- huaweicloudsdkdwr/v1/model/describe_store_request.py +111 -0
- huaweicloudsdkdwr/v1/model/describe_store_response.py +170 -0
- huaweicloudsdkdwr/v1/model/field.py +229 -0
- huaweicloudsdkdwr/v1/model/field_data.py +198 -0
- huaweicloudsdkdwr/v1/model/flavor.py +142 -0
- huaweicloudsdkdwr/v1/model/get_index_progress_body.py +170 -0
- huaweicloudsdkdwr/v1/model/get_index_progress_response_data.py +167 -0
- huaweicloudsdkdwr/v1/model/get_progress_request.py +111 -0
- huaweicloudsdkdwr/v1/model/get_progress_response.py +170 -0
- huaweicloudsdkdwr/v1/model/hybrid_search_body.py +278 -0
- huaweicloudsdkdwr/v1/model/hybrid_search_request.py +111 -0
- huaweicloudsdkdwr/v1/model/hybrid_search_response.py +174 -0
- huaweicloudsdkdwr/v1/model/index_desc.py +200 -0
- huaweicloudsdkdwr/v1/model/index_params.py +171 -0
- huaweicloudsdkdwr/v1/model/insert_entities_body.py +170 -0
- huaweicloudsdkdwr/v1/model/insert_entities_request.py +111 -0
- huaweicloudsdkdwr/v1/model/insert_entities_response.py +170 -0
- huaweicloudsdkdwr/v1/model/insert_entities_response_data.py +143 -0
- huaweicloudsdkdwr/v1/model/job_data.py +316 -0
- huaweicloudsdkdwr/v1/model/list_collection_data.py +143 -0
- huaweicloudsdkdwr/v1/model/list_collection_details.py +260 -0
- huaweicloudsdkdwr/v1/model/list_collections_body.py +143 -0
- huaweicloudsdkdwr/v1/model/list_collections_request.py +111 -0
- huaweicloudsdkdwr/v1/model/list_collections_response.py +170 -0
- huaweicloudsdkdwr/v1/model/list_jobs_data.py +115 -0
- huaweicloudsdkdwr/v1/model/list_jobs_request.py +231 -0
- huaweicloudsdkdwr/v1/model/list_jobs_response.py +170 -0
- huaweicloudsdkdwr/v1/model/list_stores_request.py +84 -0
- huaweicloudsdkdwr/v1/model/list_stores_response.py +174 -0
- huaweicloudsdkdwr/v1/model/load_collection_body.py +142 -0
- huaweicloudsdkdwr/v1/model/load_collection_request.py +111 -0
- huaweicloudsdkdwr/v1/model/load_collection_response.py +145 -0
- huaweicloudsdkdwr/v1/model/primary_field.py +142 -0
- huaweicloudsdkdwr/v1/model/query_entities_body.py +257 -0
- huaweicloudsdkdwr/v1/model/query_entities_request.py +111 -0
- huaweicloudsdkdwr/v1/model/query_entities_response.py +174 -0
- huaweicloudsdkdwr/v1/model/release_collection_request.py +111 -0
- huaweicloudsdkdwr/v1/model/release_collection_response.py +145 -0
- huaweicloudsdkdwr/v1/model/rerank.py +143 -0
- huaweicloudsdkdwr/v1/model/search_entities_body.py +343 -0
- huaweicloudsdkdwr/v1/model/search_entities_request.py +111 -0
- huaweicloudsdkdwr/v1/model/search_entities_response.py +174 -0
- huaweicloudsdkdwr/v1/model/store_info.py +114 -0
- huaweicloudsdkdwr/v1/model/sub_search.py +258 -0
- huaweicloudsdkdwr/v1/model/upsert_entities_body.py +170 -0
- huaweicloudsdkdwr/v1/model/upsert_entities_request.py +111 -0
- huaweicloudsdkdwr/v1/model/upsert_entities_response.py +170 -0
- huaweicloudsdkdwr/v1/model/upsert_entities_response_data.py +143 -0
- huaweicloudsdkdwr/v1/region/__init__.py +0 -0
- huaweicloudsdkdwr/v1/region/dwr_region.py +37 -0
- huaweicloudsdkdwr/v3/region/dwr_region.py +6 -0
- {huaweicloudsdkdwr-3.1.151.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/METADATA +2 -2
- huaweicloudsdkdwr-3.1.152.dist-info/RECORD +169 -0
- huaweicloudsdkdwr-3.1.151.dist-info/RECORD +0 -80
- {huaweicloudsdkdwr-3.1.151.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdwr-3.1.151.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdwr-3.1.151.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
import six
|
|
4
|
+
|
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class HybridSearchBody:
|
|
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
|
+
'store_name': 'str',
|
|
21
|
+
'collection_name': 'str',
|
|
22
|
+
'output_fields': 'list[str]',
|
|
23
|
+
'top_k': 'int',
|
|
24
|
+
'offset': 'int',
|
|
25
|
+
'sub_search': 'list[SubSearch]',
|
|
26
|
+
'rerank': 'Rerank'
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
attribute_map = {
|
|
30
|
+
'store_name': 'store_name',
|
|
31
|
+
'collection_name': 'collection_name',
|
|
32
|
+
'output_fields': 'output_fields',
|
|
33
|
+
'top_k': 'top_k',
|
|
34
|
+
'offset': 'offset',
|
|
35
|
+
'sub_search': 'sub_search',
|
|
36
|
+
'rerank': 'rerank'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
def __init__(self, store_name=None, collection_name=None, output_fields=None, top_k=None, offset=None, sub_search=None, rerank=None):
|
|
40
|
+
r"""HybridSearchBody
|
|
41
|
+
|
|
42
|
+
The model defined in huaweicloud sdk
|
|
43
|
+
|
|
44
|
+
:param store_name: 知识仓实例名称
|
|
45
|
+
:type store_name: str
|
|
46
|
+
:param collection_name: collection名称
|
|
47
|
+
:type collection_name: str
|
|
48
|
+
:param output_fields: 配置需返回的字段。
|
|
49
|
+
:type output_fields: list[str]
|
|
50
|
+
:param top_k: 返回个数限制
|
|
51
|
+
:type top_k: int
|
|
52
|
+
:param offset: 搜索结果中要跳过的entity数。
|
|
53
|
+
:type offset: int
|
|
54
|
+
:param sub_search:
|
|
55
|
+
:type sub_search: list[:class:`huaweicloudsdkdwr.v1.SubSearch`]
|
|
56
|
+
:param rerank:
|
|
57
|
+
:type rerank: :class:`huaweicloudsdkdwr.v1.Rerank`
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
self._store_name = None
|
|
63
|
+
self._collection_name = None
|
|
64
|
+
self._output_fields = None
|
|
65
|
+
self._top_k = None
|
|
66
|
+
self._offset = None
|
|
67
|
+
self._sub_search = None
|
|
68
|
+
self._rerank = None
|
|
69
|
+
self.discriminator = None
|
|
70
|
+
|
|
71
|
+
self.store_name = store_name
|
|
72
|
+
self.collection_name = collection_name
|
|
73
|
+
if output_fields is not None:
|
|
74
|
+
self.output_fields = output_fields
|
|
75
|
+
if top_k is not None:
|
|
76
|
+
self.top_k = top_k
|
|
77
|
+
if offset is not None:
|
|
78
|
+
self.offset = offset
|
|
79
|
+
self.sub_search = sub_search
|
|
80
|
+
if rerank is not None:
|
|
81
|
+
self.rerank = rerank
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
def store_name(self):
|
|
85
|
+
r"""Gets the store_name of this HybridSearchBody.
|
|
86
|
+
|
|
87
|
+
知识仓实例名称
|
|
88
|
+
|
|
89
|
+
:return: The store_name of this HybridSearchBody.
|
|
90
|
+
:rtype: str
|
|
91
|
+
"""
|
|
92
|
+
return self._store_name
|
|
93
|
+
|
|
94
|
+
@store_name.setter
|
|
95
|
+
def store_name(self, store_name):
|
|
96
|
+
r"""Sets the store_name of this HybridSearchBody.
|
|
97
|
+
|
|
98
|
+
知识仓实例名称
|
|
99
|
+
|
|
100
|
+
:param store_name: The store_name of this HybridSearchBody.
|
|
101
|
+
:type store_name: str
|
|
102
|
+
"""
|
|
103
|
+
self._store_name = store_name
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
def collection_name(self):
|
|
107
|
+
r"""Gets the collection_name of this HybridSearchBody.
|
|
108
|
+
|
|
109
|
+
collection名称
|
|
110
|
+
|
|
111
|
+
:return: The collection_name of this HybridSearchBody.
|
|
112
|
+
:rtype: str
|
|
113
|
+
"""
|
|
114
|
+
return self._collection_name
|
|
115
|
+
|
|
116
|
+
@collection_name.setter
|
|
117
|
+
def collection_name(self, collection_name):
|
|
118
|
+
r"""Sets the collection_name of this HybridSearchBody.
|
|
119
|
+
|
|
120
|
+
collection名称
|
|
121
|
+
|
|
122
|
+
:param collection_name: The collection_name of this HybridSearchBody.
|
|
123
|
+
:type collection_name: str
|
|
124
|
+
"""
|
|
125
|
+
self._collection_name = collection_name
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def output_fields(self):
|
|
129
|
+
r"""Gets the output_fields of this HybridSearchBody.
|
|
130
|
+
|
|
131
|
+
配置需返回的字段。
|
|
132
|
+
|
|
133
|
+
:return: The output_fields of this HybridSearchBody.
|
|
134
|
+
:rtype: list[str]
|
|
135
|
+
"""
|
|
136
|
+
return self._output_fields
|
|
137
|
+
|
|
138
|
+
@output_fields.setter
|
|
139
|
+
def output_fields(self, output_fields):
|
|
140
|
+
r"""Sets the output_fields of this HybridSearchBody.
|
|
141
|
+
|
|
142
|
+
配置需返回的字段。
|
|
143
|
+
|
|
144
|
+
:param output_fields: The output_fields of this HybridSearchBody.
|
|
145
|
+
:type output_fields: list[str]
|
|
146
|
+
"""
|
|
147
|
+
self._output_fields = output_fields
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
def top_k(self):
|
|
151
|
+
r"""Gets the top_k of this HybridSearchBody.
|
|
152
|
+
|
|
153
|
+
返回个数限制
|
|
154
|
+
|
|
155
|
+
:return: The top_k of this HybridSearchBody.
|
|
156
|
+
:rtype: int
|
|
157
|
+
"""
|
|
158
|
+
return self._top_k
|
|
159
|
+
|
|
160
|
+
@top_k.setter
|
|
161
|
+
def top_k(self, top_k):
|
|
162
|
+
r"""Sets the top_k of this HybridSearchBody.
|
|
163
|
+
|
|
164
|
+
返回个数限制
|
|
165
|
+
|
|
166
|
+
:param top_k: The top_k of this HybridSearchBody.
|
|
167
|
+
:type top_k: int
|
|
168
|
+
"""
|
|
169
|
+
self._top_k = top_k
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
def offset(self):
|
|
173
|
+
r"""Gets the offset of this HybridSearchBody.
|
|
174
|
+
|
|
175
|
+
搜索结果中要跳过的entity数。
|
|
176
|
+
|
|
177
|
+
:return: The offset of this HybridSearchBody.
|
|
178
|
+
:rtype: int
|
|
179
|
+
"""
|
|
180
|
+
return self._offset
|
|
181
|
+
|
|
182
|
+
@offset.setter
|
|
183
|
+
def offset(self, offset):
|
|
184
|
+
r"""Sets the offset of this HybridSearchBody.
|
|
185
|
+
|
|
186
|
+
搜索结果中要跳过的entity数。
|
|
187
|
+
|
|
188
|
+
:param offset: The offset of this HybridSearchBody.
|
|
189
|
+
:type offset: int
|
|
190
|
+
"""
|
|
191
|
+
self._offset = offset
|
|
192
|
+
|
|
193
|
+
@property
|
|
194
|
+
def sub_search(self):
|
|
195
|
+
r"""Gets the sub_search of this HybridSearchBody.
|
|
196
|
+
|
|
197
|
+
:return: The sub_search of this HybridSearchBody.
|
|
198
|
+
:rtype: list[:class:`huaweicloudsdkdwr.v1.SubSearch`]
|
|
199
|
+
"""
|
|
200
|
+
return self._sub_search
|
|
201
|
+
|
|
202
|
+
@sub_search.setter
|
|
203
|
+
def sub_search(self, sub_search):
|
|
204
|
+
r"""Sets the sub_search of this HybridSearchBody.
|
|
205
|
+
|
|
206
|
+
:param sub_search: The sub_search of this HybridSearchBody.
|
|
207
|
+
:type sub_search: list[:class:`huaweicloudsdkdwr.v1.SubSearch`]
|
|
208
|
+
"""
|
|
209
|
+
self._sub_search = sub_search
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
def rerank(self):
|
|
213
|
+
r"""Gets the rerank of this HybridSearchBody.
|
|
214
|
+
|
|
215
|
+
:return: The rerank of this HybridSearchBody.
|
|
216
|
+
:rtype: :class:`huaweicloudsdkdwr.v1.Rerank`
|
|
217
|
+
"""
|
|
218
|
+
return self._rerank
|
|
219
|
+
|
|
220
|
+
@rerank.setter
|
|
221
|
+
def rerank(self, rerank):
|
|
222
|
+
r"""Sets the rerank of this HybridSearchBody.
|
|
223
|
+
|
|
224
|
+
:param rerank: The rerank of this HybridSearchBody.
|
|
225
|
+
:type rerank: :class:`huaweicloudsdkdwr.v1.Rerank`
|
|
226
|
+
"""
|
|
227
|
+
self._rerank = rerank
|
|
228
|
+
|
|
229
|
+
def to_dict(self):
|
|
230
|
+
"""Returns the model properties as a dict"""
|
|
231
|
+
result = {}
|
|
232
|
+
|
|
233
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
|
234
|
+
value = getattr(self, attr)
|
|
235
|
+
if isinstance(value, list):
|
|
236
|
+
result[attr] = list(map(
|
|
237
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
238
|
+
value
|
|
239
|
+
))
|
|
240
|
+
elif hasattr(value, "to_dict"):
|
|
241
|
+
result[attr] = value.to_dict()
|
|
242
|
+
elif isinstance(value, dict):
|
|
243
|
+
result[attr] = dict(map(
|
|
244
|
+
lambda item: (item[0], item[1].to_dict())
|
|
245
|
+
if hasattr(item[1], "to_dict") else item,
|
|
246
|
+
value.items()
|
|
247
|
+
))
|
|
248
|
+
else:
|
|
249
|
+
if attr in self.sensitive_list:
|
|
250
|
+
result[attr] = "****"
|
|
251
|
+
else:
|
|
252
|
+
result[attr] = value
|
|
253
|
+
|
|
254
|
+
return result
|
|
255
|
+
|
|
256
|
+
def to_str(self):
|
|
257
|
+
"""Returns the string representation of the model"""
|
|
258
|
+
import simplejson as json
|
|
259
|
+
if six.PY2:
|
|
260
|
+
import sys
|
|
261
|
+
reload(sys)
|
|
262
|
+
sys.setdefaultencoding("utf-8")
|
|
263
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
|
264
|
+
|
|
265
|
+
def __repr__(self):
|
|
266
|
+
"""For `print`"""
|
|
267
|
+
return self.to_str()
|
|
268
|
+
|
|
269
|
+
def __eq__(self, other):
|
|
270
|
+
"""Returns true if both objects are equal"""
|
|
271
|
+
if not isinstance(other, HybridSearchBody):
|
|
272
|
+
return False
|
|
273
|
+
|
|
274
|
+
return self.__dict__ == other.__dict__
|
|
275
|
+
|
|
276
|
+
def __ne__(self, other):
|
|
277
|
+
"""Returns true if both objects are not equal"""
|
|
278
|
+
return not self == other
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
import six
|
|
4
|
+
|
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class HybridSearchRequest:
|
|
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
|
+
'body': 'HybridSearchBody'
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
attribute_map = {
|
|
24
|
+
'body': 'body'
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
def __init__(self, body=None):
|
|
28
|
+
r"""HybridSearchRequest
|
|
29
|
+
|
|
30
|
+
The model defined in huaweicloud sdk
|
|
31
|
+
|
|
32
|
+
:param body: Body of the HybridSearchRequest
|
|
33
|
+
:type body: :class:`huaweicloudsdkdwr.v1.HybridSearchBody`
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
self._body = None
|
|
39
|
+
self.discriminator = None
|
|
40
|
+
|
|
41
|
+
if body is not None:
|
|
42
|
+
self.body = body
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def body(self):
|
|
46
|
+
r"""Gets the body of this HybridSearchRequest.
|
|
47
|
+
|
|
48
|
+
:return: The body of this HybridSearchRequest.
|
|
49
|
+
:rtype: :class:`huaweicloudsdkdwr.v1.HybridSearchBody`
|
|
50
|
+
"""
|
|
51
|
+
return self._body
|
|
52
|
+
|
|
53
|
+
@body.setter
|
|
54
|
+
def body(self, body):
|
|
55
|
+
r"""Sets the body of this HybridSearchRequest.
|
|
56
|
+
|
|
57
|
+
:param body: The body of this HybridSearchRequest.
|
|
58
|
+
:type body: :class:`huaweicloudsdkdwr.v1.HybridSearchBody`
|
|
59
|
+
"""
|
|
60
|
+
self._body = body
|
|
61
|
+
|
|
62
|
+
def to_dict(self):
|
|
63
|
+
"""Returns the model properties as a dict"""
|
|
64
|
+
result = {}
|
|
65
|
+
|
|
66
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
|
67
|
+
value = getattr(self, attr)
|
|
68
|
+
if isinstance(value, list):
|
|
69
|
+
result[attr] = list(map(
|
|
70
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
71
|
+
value
|
|
72
|
+
))
|
|
73
|
+
elif hasattr(value, "to_dict"):
|
|
74
|
+
result[attr] = value.to_dict()
|
|
75
|
+
elif isinstance(value, dict):
|
|
76
|
+
result[attr] = dict(map(
|
|
77
|
+
lambda item: (item[0], item[1].to_dict())
|
|
78
|
+
if hasattr(item[1], "to_dict") else item,
|
|
79
|
+
value.items()
|
|
80
|
+
))
|
|
81
|
+
else:
|
|
82
|
+
if attr in self.sensitive_list:
|
|
83
|
+
result[attr] = "****"
|
|
84
|
+
else:
|
|
85
|
+
result[attr] = value
|
|
86
|
+
|
|
87
|
+
return result
|
|
88
|
+
|
|
89
|
+
def to_str(self):
|
|
90
|
+
"""Returns the string representation of the model"""
|
|
91
|
+
import simplejson as json
|
|
92
|
+
if six.PY2:
|
|
93
|
+
import sys
|
|
94
|
+
reload(sys)
|
|
95
|
+
sys.setdefaultencoding("utf-8")
|
|
96
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
|
97
|
+
|
|
98
|
+
def __repr__(self):
|
|
99
|
+
"""For `print`"""
|
|
100
|
+
return self.to_str()
|
|
101
|
+
|
|
102
|
+
def __eq__(self, other):
|
|
103
|
+
"""Returns true if both objects are equal"""
|
|
104
|
+
if not isinstance(other, HybridSearchRequest):
|
|
105
|
+
return False
|
|
106
|
+
|
|
107
|
+
return self.__dict__ == other.__dict__
|
|
108
|
+
|
|
109
|
+
def __ne__(self, other):
|
|
110
|
+
"""Returns true if both objects are not equal"""
|
|
111
|
+
return not self == other
|
|
@@ -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 HybridSearchResponse(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
|
+
'code': 'str',
|
|
22
|
+
'message': 'str',
|
|
23
|
+
'data': 'dict(str, list[dict(str, object)])'
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
attribute_map = {
|
|
27
|
+
'code': 'code',
|
|
28
|
+
'message': 'message',
|
|
29
|
+
'data': 'data'
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
def __init__(self, code=None, message=None, data=None):
|
|
33
|
+
r"""HybridSearchResponse
|
|
34
|
+
|
|
35
|
+
The model defined in huaweicloud sdk
|
|
36
|
+
|
|
37
|
+
:param code: 返回码
|
|
38
|
+
:type code: str
|
|
39
|
+
:param message: 描述信息
|
|
40
|
+
:type message: str
|
|
41
|
+
:param data: 响应数据
|
|
42
|
+
:type data: dict(str, list[dict(str, object)])
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
super(HybridSearchResponse, self).__init__()
|
|
46
|
+
|
|
47
|
+
self._code = None
|
|
48
|
+
self._message = None
|
|
49
|
+
self._data = None
|
|
50
|
+
self.discriminator = None
|
|
51
|
+
|
|
52
|
+
if code is not None:
|
|
53
|
+
self.code = code
|
|
54
|
+
if message is not None:
|
|
55
|
+
self.message = message
|
|
56
|
+
if data is not None:
|
|
57
|
+
self.data = data
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
def code(self):
|
|
61
|
+
r"""Gets the code of this HybridSearchResponse.
|
|
62
|
+
|
|
63
|
+
返回码
|
|
64
|
+
|
|
65
|
+
:return: The code of this HybridSearchResponse.
|
|
66
|
+
:rtype: str
|
|
67
|
+
"""
|
|
68
|
+
return self._code
|
|
69
|
+
|
|
70
|
+
@code.setter
|
|
71
|
+
def code(self, code):
|
|
72
|
+
r"""Sets the code of this HybridSearchResponse.
|
|
73
|
+
|
|
74
|
+
返回码
|
|
75
|
+
|
|
76
|
+
:param code: The code of this HybridSearchResponse.
|
|
77
|
+
:type code: str
|
|
78
|
+
"""
|
|
79
|
+
self._code = code
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
def message(self):
|
|
83
|
+
r"""Gets the message of this HybridSearchResponse.
|
|
84
|
+
|
|
85
|
+
描述信息
|
|
86
|
+
|
|
87
|
+
:return: The message of this HybridSearchResponse.
|
|
88
|
+
:rtype: str
|
|
89
|
+
"""
|
|
90
|
+
return self._message
|
|
91
|
+
|
|
92
|
+
@message.setter
|
|
93
|
+
def message(self, message):
|
|
94
|
+
r"""Sets the message of this HybridSearchResponse.
|
|
95
|
+
|
|
96
|
+
描述信息
|
|
97
|
+
|
|
98
|
+
:param message: The message of this HybridSearchResponse.
|
|
99
|
+
:type message: str
|
|
100
|
+
"""
|
|
101
|
+
self._message = message
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
def data(self):
|
|
105
|
+
r"""Gets the data of this HybridSearchResponse.
|
|
106
|
+
|
|
107
|
+
响应数据
|
|
108
|
+
|
|
109
|
+
:return: The data of this HybridSearchResponse.
|
|
110
|
+
:rtype: dict(str, list[dict(str, object)])
|
|
111
|
+
"""
|
|
112
|
+
return self._data
|
|
113
|
+
|
|
114
|
+
@data.setter
|
|
115
|
+
def data(self, data):
|
|
116
|
+
r"""Sets the data of this HybridSearchResponse.
|
|
117
|
+
|
|
118
|
+
响应数据
|
|
119
|
+
|
|
120
|
+
:param data: The data of this HybridSearchResponse.
|
|
121
|
+
:type data: dict(str, list[dict(str, object)])
|
|
122
|
+
"""
|
|
123
|
+
self._data = data
|
|
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, HybridSearchResponse):
|
|
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
|