huaweicloudsdkimagesearch 3.1.38__py2.py3-none-any.whl → 3.1.40__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 huaweicloudsdkimagesearch might be problematic. Click here for more details.

Files changed (30) hide show
  1. huaweicloudsdkimagesearch/v1/imagesearch_async_client.py +25 -75
  2. huaweicloudsdkimagesearch/v1/imagesearch_client.py +25 -75
  3. huaweicloudsdkimagesearch/v1/model/add_picture_request_req.py +0 -3
  4. huaweicloudsdkimagesearch/v1/model/create_instance_req.py +0 -3
  5. huaweicloudsdkimagesearch/v1/model/delete_picture_req.py +0 -3
  6. huaweicloudsdkimagesearch/v1/model/run_add_picture_request.py +0 -3
  7. huaweicloudsdkimagesearch/v1/model/run_add_picture_response.py +0 -2
  8. huaweicloudsdkimagesearch/v1/model/run_check_picture_request.py +0 -3
  9. huaweicloudsdkimagesearch/v1/model/run_check_picture_response.py +0 -2
  10. huaweicloudsdkimagesearch/v1/model/run_create_instance_request.py +0 -3
  11. huaweicloudsdkimagesearch/v1/model/run_create_instance_response.py +0 -2
  12. huaweicloudsdkimagesearch/v1/model/run_delete_instance_request.py +0 -3
  13. huaweicloudsdkimagesearch/v1/model/run_delete_instance_response.py +0 -2
  14. huaweicloudsdkimagesearch/v1/model/run_delete_picture_request.py +0 -3
  15. huaweicloudsdkimagesearch/v1/model/run_delete_picture_response.py +0 -2
  16. huaweicloudsdkimagesearch/v1/model/run_modify_picture_req.py +0 -3
  17. huaweicloudsdkimagesearch/v1/model/run_modify_picture_request.py +0 -3
  18. huaweicloudsdkimagesearch/v1/model/run_modify_picture_response.py +0 -2
  19. huaweicloudsdkimagesearch/v1/model/run_query_instance_request.py +0 -3
  20. huaweicloudsdkimagesearch/v1/model/run_query_instance_response.py +0 -2
  21. huaweicloudsdkimagesearch/v1/model/run_search_picture_request.py +0 -3
  22. huaweicloudsdkimagesearch/v1/model/run_search_picture_response.py +0 -2
  23. huaweicloudsdkimagesearch/v1/model/search_box_detail.py +0 -3
  24. huaweicloudsdkimagesearch/v1/model/search_picture_item.py +0 -3
  25. huaweicloudsdkimagesearch/v1/model/search_picture_req.py +0 -3
  26. {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/METADATA +2 -2
  27. {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/RECORD +30 -30
  28. {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/LICENSE +0 -0
  29. {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/WHEEL +0 -0
  30. {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/top_level.txt +0 -0
@@ -2,35 +2,17 @@
2
2
 
3
3
  from __future__ import absolute_import
4
4
 
5
- import datetime
6
- import re
7
5
  import importlib
8
6
 
9
- import six
10
-
11
7
  from huaweicloudsdkcore.client import Client, ClientBuilder
12
- from huaweicloudsdkcore.exceptions import exceptions
13
8
  from huaweicloudsdkcore.utils import http_utils
14
9
  from huaweicloudsdkcore.sdk_stream_request import SdkStreamRequest
15
10
 
16
11
 
17
12
  class ImageSearchAsyncClient(Client):
18
- PRIMITIVE_TYPES = (float, bool, bytes, six.text_type) + six.integer_types
19
- NATIVE_TYPES_MAPPING = {
20
- 'int': int,
21
- 'long': int if six.PY3 else long,
22
- 'float': float,
23
- 'str': str,
24
- 'bool': bool,
25
- 'date': datetime.date,
26
- 'datetime': datetime.datetime,
27
- 'object': object,
28
- }
29
-
30
13
  def __init__(self):
31
14
  super(ImageSearchAsyncClient, self).__init__()
32
15
  self.model_package = importlib.import_module("huaweicloudsdkimagesearch.v1.model")
33
- self.preset_headers = {'User-Agent': 'HuaweiCloud-SDK-Python'}
34
16
 
35
17
  @classmethod
36
18
  def new_builder(cls, clazz=None):
@@ -57,14 +39,10 @@ class ImageSearchAsyncClient(Client):
57
39
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunAddPictureRequest`
58
40
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunAddPictureResponse`
59
41
  """
60
- return self.run_add_picture_with_http_info(request)
42
+ return self._run_add_picture_with_http_info(request)
61
43
 
62
- def run_add_picture_with_http_info(self, request):
63
- all_params = ['instance_name', 'run_add_picture_request_body']
64
- local_var_params = {}
65
- for attr in request.attribute_map:
66
- if hasattr(request, attr):
67
- local_var_params[attr] = getattr(request, attr)
44
+ def _run_add_picture_with_http_info(self, request):
45
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
68
46
 
69
47
  cname = None
70
48
 
@@ -120,14 +98,10 @@ class ImageSearchAsyncClient(Client):
120
98
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunCheckPictureRequest`
121
99
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunCheckPictureResponse`
122
100
  """
123
- return self.run_check_picture_with_http_info(request)
101
+ return self._run_check_picture_with_http_info(request)
124
102
 
125
- def run_check_picture_with_http_info(self, request):
126
- all_params = ['instance_name', 'run_check_picture_request_body']
127
- local_var_params = {}
128
- for attr in request.attribute_map:
129
- if hasattr(request, attr):
130
- local_var_params[attr] = getattr(request, attr)
103
+ def _run_check_picture_with_http_info(self, request):
104
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
131
105
 
132
106
  cname = None
133
107
 
@@ -183,14 +157,10 @@ class ImageSearchAsyncClient(Client):
183
157
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunCreateInstanceRequest`
184
158
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunCreateInstanceResponse`
185
159
  """
186
- return self.run_create_instance_with_http_info(request)
160
+ return self._run_create_instance_with_http_info(request)
187
161
 
188
- def run_create_instance_with_http_info(self, request):
189
- all_params = ['run_create_instance_request_body']
190
- local_var_params = {}
191
- for attr in request.attribute_map:
192
- if hasattr(request, attr):
193
- local_var_params[attr] = getattr(request, attr)
162
+ def _run_create_instance_with_http_info(self, request):
163
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
194
164
 
195
165
  cname = None
196
166
 
@@ -244,14 +214,10 @@ class ImageSearchAsyncClient(Client):
244
214
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunDeleteInstanceRequest`
245
215
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunDeleteInstanceResponse`
246
216
  """
247
- return self.run_delete_instance_with_http_info(request)
217
+ return self._run_delete_instance_with_http_info(request)
248
218
 
249
- def run_delete_instance_with_http_info(self, request):
250
- all_params = ['instance_name']
251
- local_var_params = {}
252
- for attr in request.attribute_map:
253
- if hasattr(request, attr):
254
- local_var_params[attr] = getattr(request, attr)
219
+ def _run_delete_instance_with_http_info(self, request):
220
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
255
221
 
256
222
  cname = None
257
223
 
@@ -305,14 +271,10 @@ class ImageSearchAsyncClient(Client):
305
271
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunDeletePictureRequest`
306
272
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunDeletePictureResponse`
307
273
  """
308
- return self.run_delete_picture_with_http_info(request)
274
+ return self._run_delete_picture_with_http_info(request)
309
275
 
310
- def run_delete_picture_with_http_info(self, request):
311
- all_params = ['instance_name', 'run_delete_picture_request_body']
312
- local_var_params = {}
313
- for attr in request.attribute_map:
314
- if hasattr(request, attr):
315
- local_var_params[attr] = getattr(request, attr)
276
+ def _run_delete_picture_with_http_info(self, request):
277
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
316
278
 
317
279
  cname = None
318
280
 
@@ -368,14 +330,10 @@ class ImageSearchAsyncClient(Client):
368
330
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunModifyPictureRequest`
369
331
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunModifyPictureResponse`
370
332
  """
371
- return self.run_modify_picture_with_http_info(request)
333
+ return self._run_modify_picture_with_http_info(request)
372
334
 
373
- def run_modify_picture_with_http_info(self, request):
374
- all_params = ['instance_name', 'run_modify_picture_request_body']
375
- local_var_params = {}
376
- for attr in request.attribute_map:
377
- if hasattr(request, attr):
378
- local_var_params[attr] = getattr(request, attr)
335
+ def _run_modify_picture_with_http_info(self, request):
336
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
379
337
 
380
338
  cname = None
381
339
 
@@ -431,14 +389,10 @@ class ImageSearchAsyncClient(Client):
431
389
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunQueryInstanceRequest`
432
390
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunQueryInstanceResponse`
433
391
  """
434
- return self.run_query_instance_with_http_info(request)
392
+ return self._run_query_instance_with_http_info(request)
435
393
 
436
- def run_query_instance_with_http_info(self, request):
437
- all_params = ['instance_name']
438
- local_var_params = {}
439
- for attr in request.attribute_map:
440
- if hasattr(request, attr):
441
- local_var_params[attr] = getattr(request, attr)
394
+ def _run_query_instance_with_http_info(self, request):
395
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
442
396
 
443
397
  cname = None
444
398
 
@@ -492,14 +446,10 @@ class ImageSearchAsyncClient(Client):
492
446
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunSearchPictureRequest`
493
447
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunSearchPictureResponse`
494
448
  """
495
- return self.run_search_picture_with_http_info(request)
496
-
497
- def run_search_picture_with_http_info(self, request):
498
- all_params = ['instance_name', 'run_search_picture_request_body']
499
- local_var_params = {}
500
- for attr in request.attribute_map:
501
- if hasattr(request, attr):
502
- local_var_params[attr] = getattr(request, attr)
449
+ return self._run_search_picture_with_http_info(request)
450
+
451
+ def _run_search_picture_with_http_info(self, request):
452
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
503
453
 
504
454
  cname = None
505
455
 
@@ -2,35 +2,17 @@
2
2
 
3
3
  from __future__ import absolute_import
4
4
 
5
- import datetime
6
- import re
7
5
  import importlib
8
6
 
9
- import six
10
-
11
7
  from huaweicloudsdkcore.client import Client, ClientBuilder
12
- from huaweicloudsdkcore.exceptions import exceptions
13
8
  from huaweicloudsdkcore.utils import http_utils
14
9
  from huaweicloudsdkcore.sdk_stream_request import SdkStreamRequest
15
10
 
16
11
 
17
12
  class ImageSearchClient(Client):
18
- PRIMITIVE_TYPES = (float, bool, bytes, six.text_type) + six.integer_types
19
- NATIVE_TYPES_MAPPING = {
20
- 'int': int,
21
- 'long': int if six.PY3 else long,
22
- 'float': float,
23
- 'str': str,
24
- 'bool': bool,
25
- 'date': datetime.date,
26
- 'datetime': datetime.datetime,
27
- 'object': object,
28
- }
29
-
30
13
  def __init__(self):
31
14
  super(ImageSearchClient, self).__init__()
32
15
  self.model_package = importlib.import_module("huaweicloudsdkimagesearch.v1.model")
33
- self.preset_headers = {'User-Agent': 'HuaweiCloud-SDK-Python'}
34
16
 
35
17
  @classmethod
36
18
  def new_builder(cls, clazz=None):
@@ -56,14 +38,10 @@ class ImageSearchClient(Client):
56
38
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunAddPictureRequest`
57
39
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunAddPictureResponse`
58
40
  """
59
- return self.run_add_picture_with_http_info(request)
41
+ return self._run_add_picture_with_http_info(request)
60
42
 
61
- def run_add_picture_with_http_info(self, request):
62
- all_params = ['instance_name', 'run_add_picture_request_body']
63
- local_var_params = {}
64
- for attr in request.attribute_map:
65
- if hasattr(request, attr):
66
- local_var_params[attr] = getattr(request, attr)
43
+ def _run_add_picture_with_http_info(self, request):
44
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
67
45
 
68
46
  cname = None
69
47
 
@@ -118,14 +96,10 @@ class ImageSearchClient(Client):
118
96
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunCheckPictureRequest`
119
97
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunCheckPictureResponse`
120
98
  """
121
- return self.run_check_picture_with_http_info(request)
99
+ return self._run_check_picture_with_http_info(request)
122
100
 
123
- def run_check_picture_with_http_info(self, request):
124
- all_params = ['instance_name', 'run_check_picture_request_body']
125
- local_var_params = {}
126
- for attr in request.attribute_map:
127
- if hasattr(request, attr):
128
- local_var_params[attr] = getattr(request, attr)
101
+ def _run_check_picture_with_http_info(self, request):
102
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
129
103
 
130
104
  cname = None
131
105
 
@@ -180,14 +154,10 @@ class ImageSearchClient(Client):
180
154
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunCreateInstanceRequest`
181
155
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunCreateInstanceResponse`
182
156
  """
183
- return self.run_create_instance_with_http_info(request)
157
+ return self._run_create_instance_with_http_info(request)
184
158
 
185
- def run_create_instance_with_http_info(self, request):
186
- all_params = ['run_create_instance_request_body']
187
- local_var_params = {}
188
- for attr in request.attribute_map:
189
- if hasattr(request, attr):
190
- local_var_params[attr] = getattr(request, attr)
159
+ def _run_create_instance_with_http_info(self, request):
160
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
191
161
 
192
162
  cname = None
193
163
 
@@ -240,14 +210,10 @@ class ImageSearchClient(Client):
240
210
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunDeleteInstanceRequest`
241
211
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunDeleteInstanceResponse`
242
212
  """
243
- return self.run_delete_instance_with_http_info(request)
213
+ return self._run_delete_instance_with_http_info(request)
244
214
 
245
- def run_delete_instance_with_http_info(self, request):
246
- all_params = ['instance_name']
247
- local_var_params = {}
248
- for attr in request.attribute_map:
249
- if hasattr(request, attr):
250
- local_var_params[attr] = getattr(request, attr)
215
+ def _run_delete_instance_with_http_info(self, request):
216
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
251
217
 
252
218
  cname = None
253
219
 
@@ -300,14 +266,10 @@ class ImageSearchClient(Client):
300
266
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunDeletePictureRequest`
301
267
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunDeletePictureResponse`
302
268
  """
303
- return self.run_delete_picture_with_http_info(request)
269
+ return self._run_delete_picture_with_http_info(request)
304
270
 
305
- def run_delete_picture_with_http_info(self, request):
306
- all_params = ['instance_name', 'run_delete_picture_request_body']
307
- local_var_params = {}
308
- for attr in request.attribute_map:
309
- if hasattr(request, attr):
310
- local_var_params[attr] = getattr(request, attr)
271
+ def _run_delete_picture_with_http_info(self, request):
272
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
311
273
 
312
274
  cname = None
313
275
 
@@ -362,14 +324,10 @@ class ImageSearchClient(Client):
362
324
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunModifyPictureRequest`
363
325
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunModifyPictureResponse`
364
326
  """
365
- return self.run_modify_picture_with_http_info(request)
327
+ return self._run_modify_picture_with_http_info(request)
366
328
 
367
- def run_modify_picture_with_http_info(self, request):
368
- all_params = ['instance_name', 'run_modify_picture_request_body']
369
- local_var_params = {}
370
- for attr in request.attribute_map:
371
- if hasattr(request, attr):
372
- local_var_params[attr] = getattr(request, attr)
329
+ def _run_modify_picture_with_http_info(self, request):
330
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
373
331
 
374
332
  cname = None
375
333
 
@@ -424,14 +382,10 @@ class ImageSearchClient(Client):
424
382
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunQueryInstanceRequest`
425
383
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunQueryInstanceResponse`
426
384
  """
427
- return self.run_query_instance_with_http_info(request)
385
+ return self._run_query_instance_with_http_info(request)
428
386
 
429
- def run_query_instance_with_http_info(self, request):
430
- all_params = ['instance_name']
431
- local_var_params = {}
432
- for attr in request.attribute_map:
433
- if hasattr(request, attr):
434
- local_var_params[attr] = getattr(request, attr)
387
+ def _run_query_instance_with_http_info(self, request):
388
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
435
389
 
436
390
  cname = None
437
391
 
@@ -484,14 +438,10 @@ class ImageSearchClient(Client):
484
438
  :type request: :class:`huaweicloudsdkimagesearch.v1.RunSearchPictureRequest`
485
439
  :rtype: :class:`huaweicloudsdkimagesearch.v1.RunSearchPictureResponse`
486
440
  """
487
- return self.run_search_picture_with_http_info(request)
488
-
489
- def run_search_picture_with_http_info(self, request):
490
- all_params = ['instance_name', 'run_search_picture_request_body']
491
- local_var_params = {}
492
- for attr in request.attribute_map:
493
- if hasattr(request, attr):
494
- local_var_params[attr] = getattr(request, attr)
441
+ return self._run_search_picture_with_http_info(request)
442
+
443
+ def _run_search_picture_with_http_info(self, request):
444
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
495
445
 
496
446
  cname = None
497
447
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,9 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
5
  from huaweicloudsdkcore.sdk_response import SdkResponse
8
6
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,10 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- import re
4
3
  import six
5
4
 
6
-
7
-
8
5
  from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
9
6
 
10
7
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkimagesearch
3
- Version: 3.1.38
3
+ Version: 3.1.40
4
4
  Summary: ImageSearch
5
5
  Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
6
6
  Author: HuaweiCloud SDK
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
22
22
  Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
- Requires-Dist: huaweicloudsdkcore (>=3.1.38)
25
+ Requires-Dist: huaweicloudsdkcore (>=3.1.40)
26
26
 
27
27
  See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
@@ -1,35 +1,35 @@
1
1
  huaweicloudsdkimagesearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  huaweicloudsdkimagesearch/v1/__init__.py,sha256=3IwRs86Ea9n7jOJ2y1YtLmXc4FhkCh4eBTNTVz36aB4,2460
3
- huaweicloudsdkimagesearch/v1/imagesearch_async_client.py,sha256=GN9B-E_iaV8pgTZkOADsjKKyedy9TwdN8Tg0ZYxd2L4,19892
4
- huaweicloudsdkimagesearch/v1/imagesearch_client.py,sha256=2y-cX2MnKMTa7yb2Sjg1LbEpQhV9aGZeQ9-Fa6e9Tss,19789
3
+ huaweicloudsdkimagesearch/v1/imagesearch_async_client.py,sha256=w56ovN1XX0ZGDFvWHNyIhk3NtPZfiVKClLScN1PoQco,18442
4
+ huaweicloudsdkimagesearch/v1/imagesearch_client.py,sha256=j99oiQJghCs9EhwOSsWzoBvR-Wl8sIyYTeCeZb-uvhs,18339
5
5
  huaweicloudsdkimagesearch/v1/model/__init__.py,sha256=MtZ6hBy5hF77xKa9ktBJy7QYXKXe61C5LZyjGZH_fH8,2267
6
- huaweicloudsdkimagesearch/v1/model/add_picture_request_req.py,sha256=bTEWwfz5ILgX4Tmhx0x11l6cOy1l60CIVDa8rPx1xHs,7193
7
- huaweicloudsdkimagesearch/v1/model/create_instance_req.py,sha256=MTNSZGi21FMMgB9dy4Zy12K_DNWXbMn7VOFJaZZA8qU,7757
8
- huaweicloudsdkimagesearch/v1/model/delete_picture_req.py,sha256=0GELxbrZb2_JgXXbK6SvFHItHtAjuMenVySx8sBNaJw,3105
9
- huaweicloudsdkimagesearch/v1/model/run_add_picture_request.py,sha256=L4SG3DHOnL7b-zQONmf6nB-ig3xyZf86GvHJfO_nhDg,4004
10
- huaweicloudsdkimagesearch/v1/model/run_add_picture_response.py,sha256=bkuUqeIo6kJURUVChwTtu6UXd_J-ZuuqBNRH1d4oENU,3335
11
- huaweicloudsdkimagesearch/v1/model/run_check_picture_request.py,sha256=N7134UyfDBAN55snte5x4UaEnl__00RVyIj0E8f2Fkw,4012
12
- huaweicloudsdkimagesearch/v1/model/run_check_picture_response.py,sha256=kH1Y7ApCH-XaRzvPQ7SRlcIduaBRKH5-CIOGujtT2Gs,3679
13
- huaweicloudsdkimagesearch/v1/model/run_create_instance_request.py,sha256=H50-1gayo1EokEVWqTr25mOPoMQ5frGKtLyMXq7lDrg,3179
14
- huaweicloudsdkimagesearch/v1/model/run_create_instance_response.py,sha256=haERAy8wKMwZLX2Cx-6lI-z-Q2dpjggyUIWSk9uiEHU,9819
15
- huaweicloudsdkimagesearch/v1/model/run_delete_instance_request.py,sha256=99SSRfMiIzt46bQlyuvWUNwOAAMl6BHquakuTZ4gYFo,3203
16
- huaweicloudsdkimagesearch/v1/model/run_delete_instance_response.py,sha256=lXt65-G2ZHkl_aL4dhT1sWPEpFrEAB076DZb7YRIRhw,3367
17
- huaweicloudsdkimagesearch/v1/model/run_delete_picture_request.py,sha256=P_kdgSsgWvPCjAjUCyjprpN8-X8KWsIeQQY8WZWXpuo,4024
18
- huaweicloudsdkimagesearch/v1/model/run_delete_picture_response.py,sha256=vtK-9WmL9AQfiQ95CKfnLrLCRqm_QBQaq7XLCdWhjBE,3359
19
- huaweicloudsdkimagesearch/v1/model/run_modify_picture_req.py,sha256=VyQortQd8-t76kvgUkxdGN6JFzmKJhigetagzQ5rBh0,4162
20
- huaweicloudsdkimagesearch/v1/model/run_modify_picture_request.py,sha256=0HUFm0Qt2edPj1R5bQne1Iy_1AWB3qXkkxF2szl5e1I,4036
21
- huaweicloudsdkimagesearch/v1/model/run_modify_picture_response.py,sha256=LQShey6Vv-j3ixNDBcMAeYY4I_x3b_q6fmxkkqx-VXE,3359
22
- huaweicloudsdkimagesearch/v1/model/run_query_instance_request.py,sha256=dcc9gPa18R30BeOPgF3afQXbeSVFEkQHp4Qi4anY3-w,3196
23
- huaweicloudsdkimagesearch/v1/model/run_query_instance_response.py,sha256=3k1yjNFQNa1JgkJM98J9_t9uoIG-WRpo7i4tzsg38Ps,9783
24
- huaweicloudsdkimagesearch/v1/model/run_search_picture_request.py,sha256=U-SPyiyStkvEetToQS1zelCp3Vq_r8D0Jf6_KpwCNOw,4024
25
- huaweicloudsdkimagesearch/v1/model/run_search_picture_response.py,sha256=EawIdhoT0cqyApItnMcy13fid-hR4pah4Y1q3A13d1k,4149
26
- huaweicloudsdkimagesearch/v1/model/search_box_detail.py,sha256=cDibUUNDvFsGcCKd72DGn8CMkhM1CrmtRmKoBuvcmhE,5216
27
- huaweicloudsdkimagesearch/v1/model/search_picture_item.py,sha256=AujQfV-fuBAf2l6Eeahmqm_stXZmlm-M2U7ryxA7QAg,4622
28
- huaweicloudsdkimagesearch/v1/model/search_picture_req.py,sha256=P4q0IaLoFEQf1HI-7htneDmXy-plDMrhK6JnIMHC82M,10332
6
+ huaweicloudsdkimagesearch/v1/model/add_picture_request_req.py,sha256=f1eZGKLmju3zpUi1W9VMXIDElUrRfISO1HXs8Apkky8,7181
7
+ huaweicloudsdkimagesearch/v1/model/create_instance_req.py,sha256=DKPpVMk_We6RIcR0JSgdI2nBbwhDBYocvmEhXCvV0Qo,7745
8
+ huaweicloudsdkimagesearch/v1/model/delete_picture_req.py,sha256=n_kdE0Np73_Hedzloz6Qsi1BejVYBkOhakBcRkTv1OM,3093
9
+ huaweicloudsdkimagesearch/v1/model/run_add_picture_request.py,sha256=5kJ81bJ-zAsbFyF7tKLZHkbp0P12DcLRbfHVfZ09yp4,3992
10
+ huaweicloudsdkimagesearch/v1/model/run_add_picture_response.py,sha256=0r2uOMPGN6KXDHv8h4vxQ3wnmQdk875SIx2Bqgr5O5A,3324
11
+ huaweicloudsdkimagesearch/v1/model/run_check_picture_request.py,sha256=iUNh2bAJzJnvINcwEjdbSRMXpw3sWlQJCqffs5h1Iwk,4000
12
+ huaweicloudsdkimagesearch/v1/model/run_check_picture_response.py,sha256=HCCClqhN3BemB-Ml6UK0JD-tnTEEFzwRvwlJauW_ggA,3668
13
+ huaweicloudsdkimagesearch/v1/model/run_create_instance_request.py,sha256=oj5sek_M1AAziVUoM8UhyjhsAuzL8Q_jukgRBTm5DxA,3167
14
+ huaweicloudsdkimagesearch/v1/model/run_create_instance_response.py,sha256=qY235atobeuaMXDJgcMR_4MJh_Jz5JMKjUXD0L2mkGE,9808
15
+ huaweicloudsdkimagesearch/v1/model/run_delete_instance_request.py,sha256=MzOJHarsUnitK1u-ScnZddzniwlF2nBVc-gbT_oeE4g,3191
16
+ huaweicloudsdkimagesearch/v1/model/run_delete_instance_response.py,sha256=KDScLzYbeATFzoJKVpCXG082vFy6o2i2AQ-1BBeuLUY,3356
17
+ huaweicloudsdkimagesearch/v1/model/run_delete_picture_request.py,sha256=Onni-WgE8sTXWsRWhLpYseUlHg5ly5mZaDZY02JDbks,4012
18
+ huaweicloudsdkimagesearch/v1/model/run_delete_picture_response.py,sha256=L8jiaZvrIbU_LgWQyU5ujuxOx2ctxgSP2GIUfccGock,3348
19
+ huaweicloudsdkimagesearch/v1/model/run_modify_picture_req.py,sha256=PdTwINulhwvKmwxpgMKQ2ijNsAhCzqJKFiGZ1D7M-Tw,4150
20
+ huaweicloudsdkimagesearch/v1/model/run_modify_picture_request.py,sha256=Z7_WRctHYoyKXpEW0RI2Bcr_ctuip1HHT5S5olyFlQ8,4024
21
+ huaweicloudsdkimagesearch/v1/model/run_modify_picture_response.py,sha256=PI-d-71ReK3T3SkBe0x36laD8oX9rhdkZ11BZXaNyLk,3348
22
+ huaweicloudsdkimagesearch/v1/model/run_query_instance_request.py,sha256=3B_AoiuK6sI-QjspTjqSTzWJguGX4OLQGnAE1MBwuwc,3184
23
+ huaweicloudsdkimagesearch/v1/model/run_query_instance_response.py,sha256=6ZcjV8dBQ1M_cWsy_rreGflPcEhCWWkvOek9kzWgbe0,9772
24
+ huaweicloudsdkimagesearch/v1/model/run_search_picture_request.py,sha256=neBUBsKEpcbY6XwZXLLRbl3dlnWx9pFafhQIc3LpYio,4012
25
+ huaweicloudsdkimagesearch/v1/model/run_search_picture_response.py,sha256=WIMNDlMJVDymzlXpmnzpI1SBY6i2lPnzlQCh4EXSROU,4138
26
+ huaweicloudsdkimagesearch/v1/model/search_box_detail.py,sha256=2LJkxT8sCR4pRjpJW_K45o8cqVz_iASRsGcFhDeA1-I,5204
27
+ huaweicloudsdkimagesearch/v1/model/search_picture_item.py,sha256=UZt_uJdbEyAyjpfIkBD6nZDByqeShL7Bvm6xUF2GZVU,4610
28
+ huaweicloudsdkimagesearch/v1/model/search_picture_req.py,sha256=FJZXUMyOjO0kIk4Veue02LTzNhOl6HFwV-36-csXH2I,10320
29
29
  huaweicloudsdkimagesearch/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
30
  huaweicloudsdkimagesearch/v1/region/imagesearch_region.py,sha256=QVm01wYm9DEnFnljXcyjqNIRka9mp9_hSlYzgMzX5CI,1471
31
- huaweicloudsdkimagesearch-3.1.38.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
32
- huaweicloudsdkimagesearch-3.1.38.dist-info/METADATA,sha256=WlTYHSgwd_gV7obiKiWc960NVipPBYfqy9oTwFvorJk,1160
33
- huaweicloudsdkimagesearch-3.1.38.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
34
- huaweicloudsdkimagesearch-3.1.38.dist-info/top_level.txt,sha256=RGtCSYwOXh7T2iwkijZcpGyZyCg_ttwSjlgRMqkcng8,26
35
- huaweicloudsdkimagesearch-3.1.38.dist-info/RECORD,,
31
+ huaweicloudsdkimagesearch-3.1.40.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
32
+ huaweicloudsdkimagesearch-3.1.40.dist-info/METADATA,sha256=MPfayiLO9Yf6xj1uQwERqeQTiCO9J3EFKiWMxAsDjrI,1160
33
+ huaweicloudsdkimagesearch-3.1.40.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
34
+ huaweicloudsdkimagesearch-3.1.40.dist-info/top_level.txt,sha256=RGtCSYwOXh7T2iwkijZcpGyZyCg_ttwSjlgRMqkcng8,26
35
+ huaweicloudsdkimagesearch-3.1.40.dist-info/RECORD,,