huaweicloudsdkdwr 3.1.150__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.150.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/METADATA +2 -2
- huaweicloudsdkdwr-3.1.152.dist-info/RECORD +169 -0
- huaweicloudsdkdwr-3.1.150.dist-info/RECORD +0 -80
- {huaweicloudsdkdwr-3.1.150.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdwr-3.1.150.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdwr-3.1.150.dist-info → huaweicloudsdkdwr-3.1.152.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
import six
|
|
4
|
+
|
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class CreateStoreData:
|
|
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
|
+
'id': 'str',
|
|
21
|
+
'job_id': 'str',
|
|
22
|
+
'store_name': 'str',
|
|
23
|
+
'status': 'str',
|
|
24
|
+
'region': 'str',
|
|
25
|
+
'availability_zones': 'list[str]',
|
|
26
|
+
'flavor': 'Flavor',
|
|
27
|
+
'charge_info': 'ChargeInfo',
|
|
28
|
+
'description': 'str'
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
attribute_map = {
|
|
32
|
+
'id': 'id',
|
|
33
|
+
'job_id': 'job_id',
|
|
34
|
+
'store_name': 'store_name',
|
|
35
|
+
'status': 'status',
|
|
36
|
+
'region': 'region',
|
|
37
|
+
'availability_zones': 'availability_zones',
|
|
38
|
+
'flavor': 'flavor',
|
|
39
|
+
'charge_info': 'charge_info',
|
|
40
|
+
'description': 'description'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
def __init__(self, id=None, job_id=None, store_name=None, status=None, region=None, availability_zones=None, flavor=None, charge_info=None, description=None):
|
|
44
|
+
r"""CreateStoreData
|
|
45
|
+
|
|
46
|
+
The model defined in huaweicloud sdk
|
|
47
|
+
|
|
48
|
+
:param id: 知识仓实例id
|
|
49
|
+
:type id: str
|
|
50
|
+
:param job_id: 知识仓实例创建的任务id。
|
|
51
|
+
:type job_id: str
|
|
52
|
+
:param store_name: 知识仓实例名称。
|
|
53
|
+
:type store_name: str
|
|
54
|
+
:param status: 状态。如:CREATING。
|
|
55
|
+
:type status: str
|
|
56
|
+
:param region: 区域ID。 取值范围:非空,请参见地区和终端节点。 取值范围:非空,请参见地区和终端节点。
|
|
57
|
+
:type region: str
|
|
58
|
+
:param availability_zones: 可用区ID
|
|
59
|
+
:type availability_zones: list[str]
|
|
60
|
+
:param flavor:
|
|
61
|
+
:type flavor: :class:`huaweicloudsdkdwr.v1.Flavor`
|
|
62
|
+
:param charge_info:
|
|
63
|
+
:type charge_info: :class:`huaweicloudsdkdwr.v1.ChargeInfo`
|
|
64
|
+
:param description: 知识仓实例描述信息。有效长度0-255
|
|
65
|
+
:type description: str
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
self._id = None
|
|
71
|
+
self._job_id = None
|
|
72
|
+
self._store_name = None
|
|
73
|
+
self._status = None
|
|
74
|
+
self._region = None
|
|
75
|
+
self._availability_zones = None
|
|
76
|
+
self._flavor = None
|
|
77
|
+
self._charge_info = None
|
|
78
|
+
self._description = None
|
|
79
|
+
self.discriminator = None
|
|
80
|
+
|
|
81
|
+
self.id = id
|
|
82
|
+
self.job_id = job_id
|
|
83
|
+
self.store_name = store_name
|
|
84
|
+
self.status = status
|
|
85
|
+
if region is not None:
|
|
86
|
+
self.region = region
|
|
87
|
+
if availability_zones is not None:
|
|
88
|
+
self.availability_zones = availability_zones
|
|
89
|
+
if flavor is not None:
|
|
90
|
+
self.flavor = flavor
|
|
91
|
+
if charge_info is not None:
|
|
92
|
+
self.charge_info = charge_info
|
|
93
|
+
if description is not None:
|
|
94
|
+
self.description = description
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
def id(self):
|
|
98
|
+
r"""Gets the id of this CreateStoreData.
|
|
99
|
+
|
|
100
|
+
知识仓实例id
|
|
101
|
+
|
|
102
|
+
:return: The id of this CreateStoreData.
|
|
103
|
+
:rtype: str
|
|
104
|
+
"""
|
|
105
|
+
return self._id
|
|
106
|
+
|
|
107
|
+
@id.setter
|
|
108
|
+
def id(self, id):
|
|
109
|
+
r"""Sets the id of this CreateStoreData.
|
|
110
|
+
|
|
111
|
+
知识仓实例id
|
|
112
|
+
|
|
113
|
+
:param id: The id of this CreateStoreData.
|
|
114
|
+
:type id: str
|
|
115
|
+
"""
|
|
116
|
+
self._id = id
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
def job_id(self):
|
|
120
|
+
r"""Gets the job_id of this CreateStoreData.
|
|
121
|
+
|
|
122
|
+
知识仓实例创建的任务id。
|
|
123
|
+
|
|
124
|
+
:return: The job_id of this CreateStoreData.
|
|
125
|
+
:rtype: str
|
|
126
|
+
"""
|
|
127
|
+
return self._job_id
|
|
128
|
+
|
|
129
|
+
@job_id.setter
|
|
130
|
+
def job_id(self, job_id):
|
|
131
|
+
r"""Sets the job_id of this CreateStoreData.
|
|
132
|
+
|
|
133
|
+
知识仓实例创建的任务id。
|
|
134
|
+
|
|
135
|
+
:param job_id: The job_id of this CreateStoreData.
|
|
136
|
+
:type job_id: str
|
|
137
|
+
"""
|
|
138
|
+
self._job_id = job_id
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
def store_name(self):
|
|
142
|
+
r"""Gets the store_name of this CreateStoreData.
|
|
143
|
+
|
|
144
|
+
知识仓实例名称。
|
|
145
|
+
|
|
146
|
+
:return: The store_name of this CreateStoreData.
|
|
147
|
+
:rtype: str
|
|
148
|
+
"""
|
|
149
|
+
return self._store_name
|
|
150
|
+
|
|
151
|
+
@store_name.setter
|
|
152
|
+
def store_name(self, store_name):
|
|
153
|
+
r"""Sets the store_name of this CreateStoreData.
|
|
154
|
+
|
|
155
|
+
知识仓实例名称。
|
|
156
|
+
|
|
157
|
+
:param store_name: The store_name of this CreateStoreData.
|
|
158
|
+
:type store_name: str
|
|
159
|
+
"""
|
|
160
|
+
self._store_name = store_name
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
def status(self):
|
|
164
|
+
r"""Gets the status of this CreateStoreData.
|
|
165
|
+
|
|
166
|
+
状态。如:CREATING。
|
|
167
|
+
|
|
168
|
+
:return: The status of this CreateStoreData.
|
|
169
|
+
:rtype: str
|
|
170
|
+
"""
|
|
171
|
+
return self._status
|
|
172
|
+
|
|
173
|
+
@status.setter
|
|
174
|
+
def status(self, status):
|
|
175
|
+
r"""Sets the status of this CreateStoreData.
|
|
176
|
+
|
|
177
|
+
状态。如:CREATING。
|
|
178
|
+
|
|
179
|
+
:param status: The status of this CreateStoreData.
|
|
180
|
+
:type status: str
|
|
181
|
+
"""
|
|
182
|
+
self._status = status
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
def region(self):
|
|
186
|
+
r"""Gets the region of this CreateStoreData.
|
|
187
|
+
|
|
188
|
+
区域ID。 取值范围:非空,请参见地区和终端节点。 取值范围:非空,请参见地区和终端节点。
|
|
189
|
+
|
|
190
|
+
:return: The region of this CreateStoreData.
|
|
191
|
+
:rtype: str
|
|
192
|
+
"""
|
|
193
|
+
return self._region
|
|
194
|
+
|
|
195
|
+
@region.setter
|
|
196
|
+
def region(self, region):
|
|
197
|
+
r"""Sets the region of this CreateStoreData.
|
|
198
|
+
|
|
199
|
+
区域ID。 取值范围:非空,请参见地区和终端节点。 取值范围:非空,请参见地区和终端节点。
|
|
200
|
+
|
|
201
|
+
:param region: The region of this CreateStoreData.
|
|
202
|
+
:type region: str
|
|
203
|
+
"""
|
|
204
|
+
self._region = region
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
def availability_zones(self):
|
|
208
|
+
r"""Gets the availability_zones of this CreateStoreData.
|
|
209
|
+
|
|
210
|
+
可用区ID
|
|
211
|
+
|
|
212
|
+
:return: The availability_zones of this CreateStoreData.
|
|
213
|
+
:rtype: list[str]
|
|
214
|
+
"""
|
|
215
|
+
return self._availability_zones
|
|
216
|
+
|
|
217
|
+
@availability_zones.setter
|
|
218
|
+
def availability_zones(self, availability_zones):
|
|
219
|
+
r"""Sets the availability_zones of this CreateStoreData.
|
|
220
|
+
|
|
221
|
+
可用区ID
|
|
222
|
+
|
|
223
|
+
:param availability_zones: The availability_zones of this CreateStoreData.
|
|
224
|
+
:type availability_zones: list[str]
|
|
225
|
+
"""
|
|
226
|
+
self._availability_zones = availability_zones
|
|
227
|
+
|
|
228
|
+
@property
|
|
229
|
+
def flavor(self):
|
|
230
|
+
r"""Gets the flavor of this CreateStoreData.
|
|
231
|
+
|
|
232
|
+
:return: The flavor of this CreateStoreData.
|
|
233
|
+
:rtype: :class:`huaweicloudsdkdwr.v1.Flavor`
|
|
234
|
+
"""
|
|
235
|
+
return self._flavor
|
|
236
|
+
|
|
237
|
+
@flavor.setter
|
|
238
|
+
def flavor(self, flavor):
|
|
239
|
+
r"""Sets the flavor of this CreateStoreData.
|
|
240
|
+
|
|
241
|
+
:param flavor: The flavor of this CreateStoreData.
|
|
242
|
+
:type flavor: :class:`huaweicloudsdkdwr.v1.Flavor`
|
|
243
|
+
"""
|
|
244
|
+
self._flavor = flavor
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
def charge_info(self):
|
|
248
|
+
r"""Gets the charge_info of this CreateStoreData.
|
|
249
|
+
|
|
250
|
+
:return: The charge_info of this CreateStoreData.
|
|
251
|
+
:rtype: :class:`huaweicloudsdkdwr.v1.ChargeInfo`
|
|
252
|
+
"""
|
|
253
|
+
return self._charge_info
|
|
254
|
+
|
|
255
|
+
@charge_info.setter
|
|
256
|
+
def charge_info(self, charge_info):
|
|
257
|
+
r"""Sets the charge_info of this CreateStoreData.
|
|
258
|
+
|
|
259
|
+
:param charge_info: The charge_info of this CreateStoreData.
|
|
260
|
+
:type charge_info: :class:`huaweicloudsdkdwr.v1.ChargeInfo`
|
|
261
|
+
"""
|
|
262
|
+
self._charge_info = charge_info
|
|
263
|
+
|
|
264
|
+
@property
|
|
265
|
+
def description(self):
|
|
266
|
+
r"""Gets the description of this CreateStoreData.
|
|
267
|
+
|
|
268
|
+
知识仓实例描述信息。有效长度0-255
|
|
269
|
+
|
|
270
|
+
:return: The description of this CreateStoreData.
|
|
271
|
+
:rtype: str
|
|
272
|
+
"""
|
|
273
|
+
return self._description
|
|
274
|
+
|
|
275
|
+
@description.setter
|
|
276
|
+
def description(self, description):
|
|
277
|
+
r"""Sets the description of this CreateStoreData.
|
|
278
|
+
|
|
279
|
+
知识仓实例描述信息。有效长度0-255
|
|
280
|
+
|
|
281
|
+
:param description: The description of this CreateStoreData.
|
|
282
|
+
:type description: str
|
|
283
|
+
"""
|
|
284
|
+
self._description = description
|
|
285
|
+
|
|
286
|
+
def to_dict(self):
|
|
287
|
+
"""Returns the model properties as a dict"""
|
|
288
|
+
result = {}
|
|
289
|
+
|
|
290
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
|
291
|
+
value = getattr(self, attr)
|
|
292
|
+
if isinstance(value, list):
|
|
293
|
+
result[attr] = list(map(
|
|
294
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
295
|
+
value
|
|
296
|
+
))
|
|
297
|
+
elif hasattr(value, "to_dict"):
|
|
298
|
+
result[attr] = value.to_dict()
|
|
299
|
+
elif isinstance(value, dict):
|
|
300
|
+
result[attr] = dict(map(
|
|
301
|
+
lambda item: (item[0], item[1].to_dict())
|
|
302
|
+
if hasattr(item[1], "to_dict") else item,
|
|
303
|
+
value.items()
|
|
304
|
+
))
|
|
305
|
+
else:
|
|
306
|
+
if attr in self.sensitive_list:
|
|
307
|
+
result[attr] = "****"
|
|
308
|
+
else:
|
|
309
|
+
result[attr] = value
|
|
310
|
+
|
|
311
|
+
return result
|
|
312
|
+
|
|
313
|
+
def to_str(self):
|
|
314
|
+
"""Returns the string representation of the model"""
|
|
315
|
+
import simplejson as json
|
|
316
|
+
if six.PY2:
|
|
317
|
+
import sys
|
|
318
|
+
reload(sys)
|
|
319
|
+
sys.setdefaultencoding("utf-8")
|
|
320
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
|
321
|
+
|
|
322
|
+
def __repr__(self):
|
|
323
|
+
"""For `print`"""
|
|
324
|
+
return self.to_str()
|
|
325
|
+
|
|
326
|
+
def __eq__(self, other):
|
|
327
|
+
"""Returns true if both objects are equal"""
|
|
328
|
+
if not isinstance(other, CreateStoreData):
|
|
329
|
+
return False
|
|
330
|
+
|
|
331
|
+
return self.__dict__ == other.__dict__
|
|
332
|
+
|
|
333
|
+
def __ne__(self, other):
|
|
334
|
+
"""Returns true if both objects are not equal"""
|
|
335
|
+
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 CreateStoreRequest:
|
|
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': 'CreateStoreBody'
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
attribute_map = {
|
|
24
|
+
'body': 'body'
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
def __init__(self, body=None):
|
|
28
|
+
r"""CreateStoreRequest
|
|
29
|
+
|
|
30
|
+
The model defined in huaweicloud sdk
|
|
31
|
+
|
|
32
|
+
:param body: Body of the CreateStoreRequest
|
|
33
|
+
:type body: :class:`huaweicloudsdkdwr.v1.CreateStoreBody`
|
|
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 CreateStoreRequest.
|
|
47
|
+
|
|
48
|
+
:return: The body of this CreateStoreRequest.
|
|
49
|
+
:rtype: :class:`huaweicloudsdkdwr.v1.CreateStoreBody`
|
|
50
|
+
"""
|
|
51
|
+
return self._body
|
|
52
|
+
|
|
53
|
+
@body.setter
|
|
54
|
+
def body(self, body):
|
|
55
|
+
r"""Sets the body of this CreateStoreRequest.
|
|
56
|
+
|
|
57
|
+
:param body: The body of this CreateStoreRequest.
|
|
58
|
+
:type body: :class:`huaweicloudsdkdwr.v1.CreateStoreBody`
|
|
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, CreateStoreRequest):
|
|
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,170 @@
|
|
|
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 CreateStoreResponse(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': 'CreateStoreData'
|
|
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"""CreateStoreResponse
|
|
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: :class:`huaweicloudsdkdwr.v1.CreateStoreData`
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
super(CreateStoreResponse, 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 CreateStoreResponse.
|
|
62
|
+
|
|
63
|
+
返回码
|
|
64
|
+
|
|
65
|
+
:return: The code of this CreateStoreResponse.
|
|
66
|
+
:rtype: str
|
|
67
|
+
"""
|
|
68
|
+
return self._code
|
|
69
|
+
|
|
70
|
+
@code.setter
|
|
71
|
+
def code(self, code):
|
|
72
|
+
r"""Sets the code of this CreateStoreResponse.
|
|
73
|
+
|
|
74
|
+
返回码
|
|
75
|
+
|
|
76
|
+
:param code: The code of this CreateStoreResponse.
|
|
77
|
+
:type code: str
|
|
78
|
+
"""
|
|
79
|
+
self._code = code
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
def message(self):
|
|
83
|
+
r"""Gets the message of this CreateStoreResponse.
|
|
84
|
+
|
|
85
|
+
描述信息
|
|
86
|
+
|
|
87
|
+
:return: The message of this CreateStoreResponse.
|
|
88
|
+
:rtype: str
|
|
89
|
+
"""
|
|
90
|
+
return self._message
|
|
91
|
+
|
|
92
|
+
@message.setter
|
|
93
|
+
def message(self, message):
|
|
94
|
+
r"""Sets the message of this CreateStoreResponse.
|
|
95
|
+
|
|
96
|
+
描述信息
|
|
97
|
+
|
|
98
|
+
:param message: The message of this CreateStoreResponse.
|
|
99
|
+
:type message: str
|
|
100
|
+
"""
|
|
101
|
+
self._message = message
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
def data(self):
|
|
105
|
+
r"""Gets the data of this CreateStoreResponse.
|
|
106
|
+
|
|
107
|
+
:return: The data of this CreateStoreResponse.
|
|
108
|
+
:rtype: :class:`huaweicloudsdkdwr.v1.CreateStoreData`
|
|
109
|
+
"""
|
|
110
|
+
return self._data
|
|
111
|
+
|
|
112
|
+
@data.setter
|
|
113
|
+
def data(self, data):
|
|
114
|
+
r"""Sets the data of this CreateStoreResponse.
|
|
115
|
+
|
|
116
|
+
:param data: The data of this CreateStoreResponse.
|
|
117
|
+
:type data: :class:`huaweicloudsdkdwr.v1.CreateStoreData`
|
|
118
|
+
"""
|
|
119
|
+
self._data = data
|
|
120
|
+
|
|
121
|
+
def to_dict(self):
|
|
122
|
+
"""Returns the model properties as a dict"""
|
|
123
|
+
result = {}
|
|
124
|
+
|
|
125
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
|
126
|
+
value = getattr(self, attr)
|
|
127
|
+
if isinstance(value, list):
|
|
128
|
+
result[attr] = list(map(
|
|
129
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
130
|
+
value
|
|
131
|
+
))
|
|
132
|
+
elif hasattr(value, "to_dict"):
|
|
133
|
+
result[attr] = value.to_dict()
|
|
134
|
+
elif isinstance(value, dict):
|
|
135
|
+
result[attr] = dict(map(
|
|
136
|
+
lambda item: (item[0], item[1].to_dict())
|
|
137
|
+
if hasattr(item[1], "to_dict") else item,
|
|
138
|
+
value.items()
|
|
139
|
+
))
|
|
140
|
+
else:
|
|
141
|
+
if attr in self.sensitive_list:
|
|
142
|
+
result[attr] = "****"
|
|
143
|
+
else:
|
|
144
|
+
result[attr] = value
|
|
145
|
+
|
|
146
|
+
return result
|
|
147
|
+
|
|
148
|
+
def to_str(self):
|
|
149
|
+
"""Returns the string representation of the model"""
|
|
150
|
+
import simplejson as json
|
|
151
|
+
if six.PY2:
|
|
152
|
+
import sys
|
|
153
|
+
reload(sys)
|
|
154
|
+
sys.setdefaultencoding("utf-8")
|
|
155
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
|
156
|
+
|
|
157
|
+
def __repr__(self):
|
|
158
|
+
"""For `print`"""
|
|
159
|
+
return self.to_str()
|
|
160
|
+
|
|
161
|
+
def __eq__(self, other):
|
|
162
|
+
"""Returns true if both objects are equal"""
|
|
163
|
+
if not isinstance(other, CreateStoreResponse):
|
|
164
|
+
return False
|
|
165
|
+
|
|
166
|
+
return self.__dict__ == other.__dict__
|
|
167
|
+
|
|
168
|
+
def __ne__(self, other):
|
|
169
|
+
"""Returns true if both objects are not equal"""
|
|
170
|
+
return not self == other
|