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.
- huaweicloudsdkimagesearch/v1/imagesearch_async_client.py +25 -75
- huaweicloudsdkimagesearch/v1/imagesearch_client.py +25 -75
- huaweicloudsdkimagesearch/v1/model/add_picture_request_req.py +0 -3
- huaweicloudsdkimagesearch/v1/model/create_instance_req.py +0 -3
- huaweicloudsdkimagesearch/v1/model/delete_picture_req.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_add_picture_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_add_picture_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_check_picture_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_check_picture_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_create_instance_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_create_instance_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_delete_instance_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_delete_instance_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_delete_picture_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_delete_picture_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_modify_picture_req.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_modify_picture_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_modify_picture_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_query_instance_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_query_instance_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/run_search_picture_request.py +0 -3
- huaweicloudsdkimagesearch/v1/model/run_search_picture_response.py +0 -2
- huaweicloudsdkimagesearch/v1/model/search_box_detail.py +0 -3
- huaweicloudsdkimagesearch/v1/model/search_picture_item.py +0 -3
- huaweicloudsdkimagesearch/v1/model/search_picture_req.py +0 -3
- {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/METADATA +2 -2
- {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/RECORD +30 -30
- {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/LICENSE +0 -0
- {huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/WHEEL +0 -0
- {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.
|
|
42
|
+
return self._run_add_picture_with_http_info(request)
|
|
61
43
|
|
|
62
|
-
def
|
|
63
|
-
|
|
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.
|
|
101
|
+
return self._run_check_picture_with_http_info(request)
|
|
124
102
|
|
|
125
|
-
def
|
|
126
|
-
|
|
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.
|
|
160
|
+
return self._run_create_instance_with_http_info(request)
|
|
187
161
|
|
|
188
|
-
def
|
|
189
|
-
|
|
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.
|
|
217
|
+
return self._run_delete_instance_with_http_info(request)
|
|
248
218
|
|
|
249
|
-
def
|
|
250
|
-
|
|
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.
|
|
274
|
+
return self._run_delete_picture_with_http_info(request)
|
|
309
275
|
|
|
310
|
-
def
|
|
311
|
-
|
|
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.
|
|
333
|
+
return self._run_modify_picture_with_http_info(request)
|
|
372
334
|
|
|
373
|
-
def
|
|
374
|
-
|
|
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.
|
|
392
|
+
return self._run_query_instance_with_http_info(request)
|
|
435
393
|
|
|
436
|
-
def
|
|
437
|
-
|
|
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.
|
|
496
|
-
|
|
497
|
-
def
|
|
498
|
-
|
|
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.
|
|
41
|
+
return self._run_add_picture_with_http_info(request)
|
|
60
42
|
|
|
61
|
-
def
|
|
62
|
-
|
|
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.
|
|
99
|
+
return self._run_check_picture_with_http_info(request)
|
|
122
100
|
|
|
123
|
-
def
|
|
124
|
-
|
|
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.
|
|
157
|
+
return self._run_create_instance_with_http_info(request)
|
|
184
158
|
|
|
185
|
-
def
|
|
186
|
-
|
|
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.
|
|
213
|
+
return self._run_delete_instance_with_http_info(request)
|
|
244
214
|
|
|
245
|
-
def
|
|
246
|
-
|
|
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.
|
|
269
|
+
return self._run_delete_picture_with_http_info(request)
|
|
304
270
|
|
|
305
|
-
def
|
|
306
|
-
|
|
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.
|
|
327
|
+
return self._run_modify_picture_with_http_info(request)
|
|
366
328
|
|
|
367
|
-
def
|
|
368
|
-
|
|
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.
|
|
385
|
+
return self._run_query_instance_with_http_info(request)
|
|
428
386
|
|
|
429
|
-
def
|
|
430
|
-
|
|
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.
|
|
488
|
-
|
|
489
|
-
def
|
|
490
|
-
|
|
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
|
|
{huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huaweicloudsdkimagesearch
|
|
3
|
-
Version: 3.1.
|
|
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.
|
|
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).
|
{huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/RECORD
RENAMED
|
@@ -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=
|
|
4
|
-
huaweicloudsdkimagesearch/v1/imagesearch_client.py,sha256=
|
|
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=
|
|
7
|
-
huaweicloudsdkimagesearch/v1/model/create_instance_req.py,sha256=
|
|
8
|
-
huaweicloudsdkimagesearch/v1/model/delete_picture_req.py,sha256=
|
|
9
|
-
huaweicloudsdkimagesearch/v1/model/run_add_picture_request.py,sha256=
|
|
10
|
-
huaweicloudsdkimagesearch/v1/model/run_add_picture_response.py,sha256=
|
|
11
|
-
huaweicloudsdkimagesearch/v1/model/run_check_picture_request.py,sha256=
|
|
12
|
-
huaweicloudsdkimagesearch/v1/model/run_check_picture_response.py,sha256=
|
|
13
|
-
huaweicloudsdkimagesearch/v1/model/run_create_instance_request.py,sha256=
|
|
14
|
-
huaweicloudsdkimagesearch/v1/model/run_create_instance_response.py,sha256=
|
|
15
|
-
huaweicloudsdkimagesearch/v1/model/run_delete_instance_request.py,sha256=
|
|
16
|
-
huaweicloudsdkimagesearch/v1/model/run_delete_instance_response.py,sha256=
|
|
17
|
-
huaweicloudsdkimagesearch/v1/model/run_delete_picture_request.py,sha256=
|
|
18
|
-
huaweicloudsdkimagesearch/v1/model/run_delete_picture_response.py,sha256=
|
|
19
|
-
huaweicloudsdkimagesearch/v1/model/run_modify_picture_req.py,sha256=
|
|
20
|
-
huaweicloudsdkimagesearch/v1/model/run_modify_picture_request.py,sha256=
|
|
21
|
-
huaweicloudsdkimagesearch/v1/model/run_modify_picture_response.py,sha256=
|
|
22
|
-
huaweicloudsdkimagesearch/v1/model/run_query_instance_request.py,sha256=
|
|
23
|
-
huaweicloudsdkimagesearch/v1/model/run_query_instance_response.py,sha256=
|
|
24
|
-
huaweicloudsdkimagesearch/v1/model/run_search_picture_request.py,sha256=
|
|
25
|
-
huaweicloudsdkimagesearch/v1/model/run_search_picture_response.py,sha256=
|
|
26
|
-
huaweicloudsdkimagesearch/v1/model/search_box_detail.py,sha256=
|
|
27
|
-
huaweicloudsdkimagesearch/v1/model/search_picture_item.py,sha256=
|
|
28
|
-
huaweicloudsdkimagesearch/v1/model/search_picture_req.py,sha256=
|
|
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.
|
|
32
|
-
huaweicloudsdkimagesearch-3.1.
|
|
33
|
-
huaweicloudsdkimagesearch-3.1.
|
|
34
|
-
huaweicloudsdkimagesearch-3.1.
|
|
35
|
-
huaweicloudsdkimagesearch-3.1.
|
|
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,,
|
{huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/LICENSE
RENAMED
|
File without changes
|
{huaweicloudsdkimagesearch-3.1.38.dist-info → huaweicloudsdkimagesearch-3.1.40.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|