huaweicloudsdkimagesearch 3.1.160__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 (44) hide show
  1. huaweicloudsdkimagesearch/__init__.py +0 -0
  2. huaweicloudsdkimagesearch/v2/__init__.py +40 -0
  3. huaweicloudsdkimagesearch/v2/imagesearch_async_client.py +418 -0
  4. huaweicloudsdkimagesearch/v2/imagesearch_client.py +415 -0
  5. huaweicloudsdkimagesearch/v2/model/__init__.py +37 -0
  6. huaweicloudsdkimagesearch/v2/model/add_data_optional_param.py +202 -0
  7. huaweicloudsdkimagesearch/v2/model/add_data_param.py +342 -0
  8. huaweicloudsdkimagesearch/v2/model/add_data_rest_info.py +111 -0
  9. huaweicloudsdkimagesearch/v2/model/add_data_rest_info_image_info.py +115 -0
  10. huaweicloudsdkimagesearch/v2/model/add_data_rest_info_image_info_objects.py +173 -0
  11. huaweicloudsdkimagesearch/v2/model/check_info.py +169 -0
  12. huaweicloudsdkimagesearch/v2/model/check_param.py +227 -0
  13. huaweicloudsdkimagesearch/v2/model/check_rest_info.py +194 -0
  14. huaweicloudsdkimagesearch/v2/model/delete_info.py +144 -0
  15. huaweicloudsdkimagesearch/v2/model/delete_param.py +202 -0
  16. huaweicloudsdkimagesearch/v2/model/delete_rest_info.py +140 -0
  17. huaweicloudsdkimagesearch/v2/model/delete_rest_info_items.py +115 -0
  18. huaweicloudsdkimagesearch/v2/model/item_source.py +202 -0
  19. huaweicloudsdkimagesearch/v2/model/range_param.py +144 -0
  20. huaweicloudsdkimagesearch/v2/model/run_add_data_request.py +139 -0
  21. huaweicloudsdkimagesearch/v2/model/run_add_data_response.py +141 -0
  22. huaweicloudsdkimagesearch/v2/model/run_check_data_request.py +139 -0
  23. huaweicloudsdkimagesearch/v2/model/run_check_data_response.py +141 -0
  24. huaweicloudsdkimagesearch/v2/model/run_delete_data_request.py +139 -0
  25. huaweicloudsdkimagesearch/v2/model/run_delete_data_response.py +141 -0
  26. huaweicloudsdkimagesearch/v2/model/run_search_request.py +139 -0
  27. huaweicloudsdkimagesearch/v2/model/run_search_response.py +141 -0
  28. huaweicloudsdkimagesearch/v2/model/run_update_data_request.py +139 -0
  29. huaweicloudsdkimagesearch/v2/model/run_update_data_response.py +116 -0
  30. huaweicloudsdkimagesearch/v2/model/search_after_param.py +144 -0
  31. huaweicloudsdkimagesearch/v2/model/search_info.py +198 -0
  32. huaweicloudsdkimagesearch/v2/model/search_item.py +169 -0
  33. huaweicloudsdkimagesearch/v2/model/search_optional_param.py +318 -0
  34. huaweicloudsdkimagesearch/v2/model/search_param.py +425 -0
  35. huaweicloudsdkimagesearch/v2/model/search_rest_info.py +165 -0
  36. huaweicloudsdkimagesearch/v2/model/search_rest_info_image_info.py +202 -0
  37. huaweicloudsdkimagesearch/v2/model/update_param.py +201 -0
  38. huaweicloudsdkimagesearch/v2/region/__init__.py +0 -0
  39. huaweicloudsdkimagesearch/v2/region/imagesearch_region.py +32 -0
  40. huaweicloudsdkimagesearch-3.1.160.dist-info/LICENSE +13 -0
  41. huaweicloudsdkimagesearch-3.1.160.dist-info/METADATA +26 -0
  42. huaweicloudsdkimagesearch-3.1.160.dist-info/RECORD +44 -0
  43. huaweicloudsdkimagesearch-3.1.160.dist-info/WHEEL +5 -0
  44. huaweicloudsdkimagesearch-3.1.160.dist-info/top_level.txt +1 -0
@@ -0,0 +1,202 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class SearchRestInfoImageInfo:
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
+ 'box': 'str',
21
+ 'category': 'int',
22
+ 'category_name': 'str',
23
+ 'objects': 'list[AddDataRestInfoImageInfoObjects]'
24
+ }
25
+
26
+ attribute_map = {
27
+ 'box': 'box',
28
+ 'category': 'category',
29
+ 'category_name': 'category_name',
30
+ 'objects': 'objects'
31
+ }
32
+
33
+ def __init__(self, box=None, category=None, category_name=None, objects=None):
34
+ r"""SearchRestInfoImageInfo
35
+
36
+ The model defined in huaweicloud sdk
37
+
38
+ :param box: 用于搜索的主体目标框。
39
+ :type box: str
40
+ :param category: 用于搜索的主体类目序号。
41
+ :type category: int
42
+ :param category_name: 用于搜索的主体类目名称。
43
+ :type category_name: str
44
+ :param objects: 搜索图像中的所有主体列表。
45
+ :type objects: list[:class:`huaweicloudsdkimagesearch.v2.AddDataRestInfoImageInfoObjects`]
46
+ """
47
+
48
+
49
+
50
+ self._box = None
51
+ self._category = None
52
+ self._category_name = None
53
+ self._objects = None
54
+ self.discriminator = None
55
+
56
+ if box is not None:
57
+ self.box = box
58
+ if category is not None:
59
+ self.category = category
60
+ if category_name is not None:
61
+ self.category_name = category_name
62
+ if objects is not None:
63
+ self.objects = objects
64
+
65
+ @property
66
+ def box(self):
67
+ r"""Gets the box of this SearchRestInfoImageInfo.
68
+
69
+ 用于搜索的主体目标框。
70
+
71
+ :return: The box of this SearchRestInfoImageInfo.
72
+ :rtype: str
73
+ """
74
+ return self._box
75
+
76
+ @box.setter
77
+ def box(self, box):
78
+ r"""Sets the box of this SearchRestInfoImageInfo.
79
+
80
+ 用于搜索的主体目标框。
81
+
82
+ :param box: The box of this SearchRestInfoImageInfo.
83
+ :type box: str
84
+ """
85
+ self._box = box
86
+
87
+ @property
88
+ def category(self):
89
+ r"""Gets the category of this SearchRestInfoImageInfo.
90
+
91
+ 用于搜索的主体类目序号。
92
+
93
+ :return: The category of this SearchRestInfoImageInfo.
94
+ :rtype: int
95
+ """
96
+ return self._category
97
+
98
+ @category.setter
99
+ def category(self, category):
100
+ r"""Sets the category of this SearchRestInfoImageInfo.
101
+
102
+ 用于搜索的主体类目序号。
103
+
104
+ :param category: The category of this SearchRestInfoImageInfo.
105
+ :type category: int
106
+ """
107
+ self._category = category
108
+
109
+ @property
110
+ def category_name(self):
111
+ r"""Gets the category_name of this SearchRestInfoImageInfo.
112
+
113
+ 用于搜索的主体类目名称。
114
+
115
+ :return: The category_name of this SearchRestInfoImageInfo.
116
+ :rtype: str
117
+ """
118
+ return self._category_name
119
+
120
+ @category_name.setter
121
+ def category_name(self, category_name):
122
+ r"""Sets the category_name of this SearchRestInfoImageInfo.
123
+
124
+ 用于搜索的主体类目名称。
125
+
126
+ :param category_name: The category_name of this SearchRestInfoImageInfo.
127
+ :type category_name: str
128
+ """
129
+ self._category_name = category_name
130
+
131
+ @property
132
+ def objects(self):
133
+ r"""Gets the objects of this SearchRestInfoImageInfo.
134
+
135
+ 搜索图像中的所有主体列表。
136
+
137
+ :return: The objects of this SearchRestInfoImageInfo.
138
+ :rtype: list[:class:`huaweicloudsdkimagesearch.v2.AddDataRestInfoImageInfoObjects`]
139
+ """
140
+ return self._objects
141
+
142
+ @objects.setter
143
+ def objects(self, objects):
144
+ r"""Sets the objects of this SearchRestInfoImageInfo.
145
+
146
+ 搜索图像中的所有主体列表。
147
+
148
+ :param objects: The objects of this SearchRestInfoImageInfo.
149
+ :type objects: list[:class:`huaweicloudsdkimagesearch.v2.AddDataRestInfoImageInfoObjects`]
150
+ """
151
+ self._objects = objects
152
+
153
+ def to_dict(self):
154
+ """Returns the model properties as a dict"""
155
+ result = {}
156
+
157
+ for attr, _ in six.iteritems(self.openapi_types):
158
+ value = getattr(self, attr)
159
+ if isinstance(value, list):
160
+ result[attr] = list(map(
161
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
162
+ value
163
+ ))
164
+ elif hasattr(value, "to_dict"):
165
+ result[attr] = value.to_dict()
166
+ elif isinstance(value, dict):
167
+ result[attr] = dict(map(
168
+ lambda item: (item[0], item[1].to_dict())
169
+ if hasattr(item[1], "to_dict") else item,
170
+ value.items()
171
+ ))
172
+ else:
173
+ if attr in self.sensitive_list:
174
+ result[attr] = "****"
175
+ else:
176
+ result[attr] = value
177
+
178
+ return result
179
+
180
+ def to_str(self):
181
+ """Returns the string representation of the model"""
182
+ import simplejson as json
183
+ if six.PY2:
184
+ import sys
185
+ reload(sys)
186
+ sys.setdefaultencoding("utf-8")
187
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
188
+
189
+ def __repr__(self):
190
+ """For `print`"""
191
+ return self.to_str()
192
+
193
+ def __eq__(self, other):
194
+ """Returns true if both objects are equal"""
195
+ if not isinstance(other, SearchRestInfoImageInfo):
196
+ return False
197
+
198
+ return self.__dict__ == other.__dict__
199
+
200
+ def __ne__(self, other):
201
+ """Returns true if both objects are not equal"""
202
+ return not self == other
@@ -0,0 +1,201 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class UpdateParam:
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
+ 'item_id': 'str',
21
+ 'desc': 'str',
22
+ 'custom_tags': 'dict(str, str)',
23
+ 'custom_num_tags': 'dict(str, float)'
24
+ }
25
+
26
+ attribute_map = {
27
+ 'item_id': 'item_id',
28
+ 'desc': 'desc',
29
+ 'custom_tags': 'custom_tags',
30
+ 'custom_num_tags': 'custom_num_tags'
31
+ }
32
+
33
+ def __init__(self, item_id=None, desc=None, custom_tags=None, custom_num_tags=None):
34
+ r"""UpdateParam
35
+
36
+ The model defined in huaweicloud sdk
37
+
38
+ :param item_id: 数据的服务实例级唯一标识,字符长度范围为[1, 256]。
39
+ :type item_id: str
40
+ :param desc: 数据的描述信息,字符长度范围为[1, 2048]。
41
+ :type desc: str
42
+ :param custom_tags: 数据的自定义字符标签,用于进行条件过滤。格式为键值对{key:value}。 - key: 必须为服务实例custom_tags中已存在的key,可在创建服务实例时进行配置,或在更新服务实例时进行新增。 - value: 类型为字符串,字符长度范围为[1, 64]。
43
+ :type custom_tags: dict(str, str)
44
+ :param custom_num_tags: 数据的自定义数值标签,用于进行条件过滤。格式为键值对{key:value}。 - key: 必须为服务实例custom_num_tags中已存在的key,可在创建服务实例时进行配置,或在更新服务实例时进行新增。 - value: 类型为数值,格式为double。
45
+ :type custom_num_tags: dict(str, float)
46
+ """
47
+
48
+
49
+
50
+ self._item_id = None
51
+ self._desc = None
52
+ self._custom_tags = None
53
+ self._custom_num_tags = None
54
+ self.discriminator = None
55
+
56
+ self.item_id = item_id
57
+ if desc is not None:
58
+ self.desc = desc
59
+ if custom_tags is not None:
60
+ self.custom_tags = custom_tags
61
+ if custom_num_tags is not None:
62
+ self.custom_num_tags = custom_num_tags
63
+
64
+ @property
65
+ def item_id(self):
66
+ r"""Gets the item_id of this UpdateParam.
67
+
68
+ 数据的服务实例级唯一标识,字符长度范围为[1, 256]。
69
+
70
+ :return: The item_id of this UpdateParam.
71
+ :rtype: str
72
+ """
73
+ return self._item_id
74
+
75
+ @item_id.setter
76
+ def item_id(self, item_id):
77
+ r"""Sets the item_id of this UpdateParam.
78
+
79
+ 数据的服务实例级唯一标识,字符长度范围为[1, 256]。
80
+
81
+ :param item_id: The item_id of this UpdateParam.
82
+ :type item_id: str
83
+ """
84
+ self._item_id = item_id
85
+
86
+ @property
87
+ def desc(self):
88
+ r"""Gets the desc of this UpdateParam.
89
+
90
+ 数据的描述信息,字符长度范围为[1, 2048]。
91
+
92
+ :return: The desc of this UpdateParam.
93
+ :rtype: str
94
+ """
95
+ return self._desc
96
+
97
+ @desc.setter
98
+ def desc(self, desc):
99
+ r"""Sets the desc of this UpdateParam.
100
+
101
+ 数据的描述信息,字符长度范围为[1, 2048]。
102
+
103
+ :param desc: The desc of this UpdateParam.
104
+ :type desc: str
105
+ """
106
+ self._desc = desc
107
+
108
+ @property
109
+ def custom_tags(self):
110
+ r"""Gets the custom_tags of this UpdateParam.
111
+
112
+ 数据的自定义字符标签,用于进行条件过滤。格式为键值对{key:value}。 - key: 必须为服务实例custom_tags中已存在的key,可在创建服务实例时进行配置,或在更新服务实例时进行新增。 - value: 类型为字符串,字符长度范围为[1, 64]。
113
+
114
+ :return: The custom_tags of this UpdateParam.
115
+ :rtype: dict(str, str)
116
+ """
117
+ return self._custom_tags
118
+
119
+ @custom_tags.setter
120
+ def custom_tags(self, custom_tags):
121
+ r"""Sets the custom_tags of this UpdateParam.
122
+
123
+ 数据的自定义字符标签,用于进行条件过滤。格式为键值对{key:value}。 - key: 必须为服务实例custom_tags中已存在的key,可在创建服务实例时进行配置,或在更新服务实例时进行新增。 - value: 类型为字符串,字符长度范围为[1, 64]。
124
+
125
+ :param custom_tags: The custom_tags of this UpdateParam.
126
+ :type custom_tags: dict(str, str)
127
+ """
128
+ self._custom_tags = custom_tags
129
+
130
+ @property
131
+ def custom_num_tags(self):
132
+ r"""Gets the custom_num_tags of this UpdateParam.
133
+
134
+ 数据的自定义数值标签,用于进行条件过滤。格式为键值对{key:value}。 - key: 必须为服务实例custom_num_tags中已存在的key,可在创建服务实例时进行配置,或在更新服务实例时进行新增。 - value: 类型为数值,格式为double。
135
+
136
+ :return: The custom_num_tags of this UpdateParam.
137
+ :rtype: dict(str, float)
138
+ """
139
+ return self._custom_num_tags
140
+
141
+ @custom_num_tags.setter
142
+ def custom_num_tags(self, custom_num_tags):
143
+ r"""Sets the custom_num_tags of this UpdateParam.
144
+
145
+ 数据的自定义数值标签,用于进行条件过滤。格式为键值对{key:value}。 - key: 必须为服务实例custom_num_tags中已存在的key,可在创建服务实例时进行配置,或在更新服务实例时进行新增。 - value: 类型为数值,格式为double。
146
+
147
+ :param custom_num_tags: The custom_num_tags of this UpdateParam.
148
+ :type custom_num_tags: dict(str, float)
149
+ """
150
+ self._custom_num_tags = custom_num_tags
151
+
152
+ def to_dict(self):
153
+ """Returns the model properties as a dict"""
154
+ result = {}
155
+
156
+ for attr, _ in six.iteritems(self.openapi_types):
157
+ value = getattr(self, attr)
158
+ if isinstance(value, list):
159
+ result[attr] = list(map(
160
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
161
+ value
162
+ ))
163
+ elif hasattr(value, "to_dict"):
164
+ result[attr] = value.to_dict()
165
+ elif isinstance(value, dict):
166
+ result[attr] = dict(map(
167
+ lambda item: (item[0], item[1].to_dict())
168
+ if hasattr(item[1], "to_dict") else item,
169
+ value.items()
170
+ ))
171
+ else:
172
+ if attr in self.sensitive_list:
173
+ result[attr] = "****"
174
+ else:
175
+ result[attr] = value
176
+
177
+ return result
178
+
179
+ def to_str(self):
180
+ """Returns the string representation of the model"""
181
+ import simplejson as json
182
+ if six.PY2:
183
+ import sys
184
+ reload(sys)
185
+ sys.setdefaultencoding("utf-8")
186
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
187
+
188
+ def __repr__(self):
189
+ """For `print`"""
190
+ return self.to_str()
191
+
192
+ def __eq__(self, other):
193
+ """Returns true if both objects are equal"""
194
+ if not isinstance(other, UpdateParam):
195
+ return False
196
+
197
+ return self.__dict__ == other.__dict__
198
+
199
+ def __ne__(self, other):
200
+ """Returns true if both objects are not equal"""
201
+ return not self == other
File without changes
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+
3
+ from huaweicloudsdkcore.region.region import Region
4
+ from huaweicloudsdkcore.region.provider import RegionProviderChain
5
+
6
+ class ImageSearchRegion:
7
+ _PROVIDER = RegionProviderChain.get_default_region_provider_chain("IMAGESEARCH")
8
+
9
+ CN_NORTH_4 = Region("cn-north-4",
10
+ "https://mms.cn-north-4.myhuaweicloud.com",
11
+ "https://mms.cn-north-4.myhuaweicloud.cn")
12
+
13
+ static_fields = {
14
+ "cn-north-4": CN_NORTH_4,
15
+ }
16
+
17
+ @classmethod
18
+ def value_of(cls, region_id, static_fields=None):
19
+ if not region_id:
20
+ raise KeyError("Unexpected empty parameter: region_id")
21
+
22
+ fields = static_fields or cls.static_fields
23
+
24
+ region = cls._PROVIDER.get_region(region_id)
25
+ if region:
26
+ return region
27
+
28
+ if region_id in fields:
29
+ return fields.get(region_id)
30
+
31
+ raise KeyError("region_id '%s' is not in the following supported regions of service 'ImageSearch': [%s]" % (
32
+ region_id, ", ".join(sorted(fields.keys()))))
@@ -0,0 +1,13 @@
1
+ Copyright (c) Huawei Technologies Co., Ltd. 2020-present. All rights reserved.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.1
2
+ Name: huaweicloudsdkimagesearch
3
+ Version: 3.1.160
4
+ Summary: ImageSearch
5
+ Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
6
+ Author: HuaweiCloud SDK
7
+ Author-email: hwcloudsdk@huawei.com
8
+ License: Apache LICENSE 2.0
9
+ Keywords: huaweicloud,sdk,ImageSearch
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3.6
14
+ Classifier: Programming Language :: Python :: 3.7
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Software Development
21
+ Requires-Python: >=3.6
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: huaweicloudsdkcore>=3.1.160
25
+
26
+ See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
@@ -0,0 +1,44 @@
1
+ huaweicloudsdkimagesearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ huaweicloudsdkimagesearch/v2/__init__.py,sha256=NrU_nFyzdcmjEWrCJxDpbMm1oNevEncxY0JfxHkqRtE,2890
3
+ huaweicloudsdkimagesearch/v2/imagesearch_async_client.py,sha256=Wi-LnkWb8IuxIS4R6lzq3tYUcWym1HtqrVd5wPGsJI4,14234
4
+ huaweicloudsdkimagesearch/v2/imagesearch_client.py,sha256=AfGrN0NcC0RutAH9QKV5O65j1NX8GvDtgYBh4XfPO_g,14139
5
+ huaweicloudsdkimagesearch/v2/model/__init__.py,sha256=vd7Q2pDzMKI_wtiLlMptQfgR44kdkhqakKfWs4VecBQ,2756
6
+ huaweicloudsdkimagesearch/v2/model/add_data_optional_param.py,sha256=Yp_Ubw-IrzAR_F4PqaKRMzZLDtyKwU0e2-SdZao2_5Y,6989
7
+ huaweicloudsdkimagesearch/v2/model/add_data_param.py,sha256=AuwvCitkriSsN5sFXi3DkJIfNo5EhVowByRsiCVbK9k,14039
8
+ huaweicloudsdkimagesearch/v2/model/add_data_rest_info.py,sha256=GzGK9Nxn5WtCX_cqIcLLp4Llh5AKFcgY1TJnvSEpUkg,3237
9
+ huaweicloudsdkimagesearch/v2/model/add_data_rest_info_image_info.py,sha256=QRV14_3TGqD1yG4vnViR_DqlzvIBPHsWM1xWCzJMg_I,3375
10
+ huaweicloudsdkimagesearch/v2/model/add_data_rest_info_image_info_objects.py,sha256=sW5_R3z94l5HI_lD096Uvoo84lrDpff1iPH7PA70Qno,4851
11
+ huaweicloudsdkimagesearch/v2/model/check_info.py,sha256=ZmVAkyW9EfeWPjzjEbppcov7Y4J63e0u10n5NM8h2Sc,4741
12
+ huaweicloudsdkimagesearch/v2/model/check_param.py,sha256=n_xLr7okaG9tMRhLgQHeKokBRiaqO5zA2IyHi327JDY,9961
13
+ huaweicloudsdkimagesearch/v2/model/check_rest_info.py,sha256=qfYyxHB1TVen5zJEzRLAx__OowKlzy43gl7Iy8oSDLs,5981
14
+ huaweicloudsdkimagesearch/v2/model/delete_info.py,sha256=qhqR2yGf4N_O-wxjhOSymKqvUIQZF-sWtnKLEBCpVYc,4051
15
+ huaweicloudsdkimagesearch/v2/model/delete_param.py,sha256=GxEq--AOHAv1-05uWOgKUhwKlHpa9zp-uUJTzqIDpmw,9453
16
+ huaweicloudsdkimagesearch/v2/model/delete_rest_info.py,sha256=H8xijsfgnKucMpg6m3Qh8EISWTmwpC4ykHzQx0x29nI,4098
17
+ huaweicloudsdkimagesearch/v2/model/delete_rest_info_items.py,sha256=WW6ez9LaolFAuJXm7TnB2KFORbebNfQA9f1ZKPiAgXk,2954
18
+ huaweicloudsdkimagesearch/v2/model/item_source.py,sha256=x1p8QkO7J6glKIU-ds3m9tI6eLxqSoEiBc1h4a1tHdY,5618
19
+ huaweicloudsdkimagesearch/v2/model/range_param.py,sha256=Y6wfPTNopmK8TKxt1t-HVCGXbL1BVLvJzX592bKT8xI,3709
20
+ huaweicloudsdkimagesearch/v2/model/run_add_data_request.py,sha256=X_ABPr4-Ndli-s2OQhqGbdd5Saiw_pBm9fNwtf9tzus,4042
21
+ huaweicloudsdkimagesearch/v2/model/run_add_data_response.py,sha256=c8F_mhegY2qSCkPeWlz2IOaNUY-AViFDyqZdjPaXFag,3972
22
+ huaweicloudsdkimagesearch/v2/model/run_check_data_request.py,sha256=tqm-50ChrqvCT9aZ-njycHJUu4_RCEDjbtlHhvoO1Bs,4058
23
+ huaweicloudsdkimagesearch/v2/model/run_check_data_response.py,sha256=GGeRS7fJAdgYokZ5V5JWES9j5Moib1fV4-JrmEZv9P0,3988
24
+ huaweicloudsdkimagesearch/v2/model/run_delete_data_request.py,sha256=o1zq7_giCj0ZcVztyJlCcsVAyIPHg30AVUAWJBDdZHM,4074
25
+ huaweicloudsdkimagesearch/v2/model/run_delete_data_response.py,sha256=P5WGnLKPqyzM-iJBJWIj84u2xGY65SVEXzwICl9e644,4004
26
+ huaweicloudsdkimagesearch/v2/model/run_search_request.py,sha256=merp2h2qi2zMq_dm-ij7-nR0i0ASakspSYzgUs1ytPs,4026
27
+ huaweicloudsdkimagesearch/v2/model/run_search_response.py,sha256=mkWAqUj0G-BYRbD3_WiGDNeDB3UXYbDixymsHx41J6I,3938
28
+ huaweicloudsdkimagesearch/v2/model/run_update_data_request.py,sha256=Q-pmZ3whHEI_D_HJgojO_vbzlhcJ3CQpIZc1QbV5TcU,4074
29
+ huaweicloudsdkimagesearch/v2/model/run_update_data_response.py,sha256=1i1_Oz8X7yFbpf2Ei9pP37uvw1ShQPCkHwgOKD4AUb8,3225
30
+ huaweicloudsdkimagesearch/v2/model/search_after_param.py,sha256=9BzYIPkcQ-ZCnlIw3TwjSybO0fM488HEzBMjlHNc9OM,3648
31
+ huaweicloudsdkimagesearch/v2/model/search_info.py,sha256=0NHmPzZay1-S6v63NkypT_fGt5uzNO9D9AZpihaTbU0,5595
32
+ huaweicloudsdkimagesearch/v2/model/search_item.py,sha256=YiF1nZTM3Nau8w_CMIyGeVKpSUflCrRxE-enmStHSbw,4347
33
+ huaweicloudsdkimagesearch/v2/model/search_optional_param.py,sha256=EXiRN8TsQzwV5lidw7y3OTIM8ELMIOUzW_FN2AiicTU,11390
34
+ huaweicloudsdkimagesearch/v2/model/search_param.py,sha256=dQ7D1LXV-9OtiJjdGWkaGLDYFt9lWcRAsBntJn0Wujk,18483
35
+ huaweicloudsdkimagesearch/v2/model/search_rest_info.py,sha256=3ZmHWWv6CvWphRn1QUroKuE8wujsEgG9nYZOiAbSeU0,4987
36
+ huaweicloudsdkimagesearch/v2/model/search_rest_info_image_info.py,sha256=rh9-6RyABxZBRK6QSL4zqltAgE9DdiSkvxbH9I_NQUQ,5951
37
+ huaweicloudsdkimagesearch/v2/model/update_param.py,sha256=zA73oBz7xu6AQhhkMaQ5oMdr2vsSnJRHdoZieRNQMqY,7381
38
+ huaweicloudsdkimagesearch/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ huaweicloudsdkimagesearch/v2/region/imagesearch_region.py,sha256=OexympI67g0rbVe6eCF_6eTsMD8AZCAs8gUIwagcLoU,1052
40
+ huaweicloudsdkimagesearch-3.1.160.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
41
+ huaweicloudsdkimagesearch-3.1.160.dist-info/METADATA,sha256=DWpqExMt2X98Nm8fkwGVgtz7uz1vC_rQs6FWiyImbPk,1088
42
+ huaweicloudsdkimagesearch-3.1.160.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
43
+ huaweicloudsdkimagesearch-3.1.160.dist-info/top_level.txt,sha256=RGtCSYwOXh7T2iwkijZcpGyZyCg_ttwSjlgRMqkcng8,26
44
+ huaweicloudsdkimagesearch-3.1.160.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.45.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ huaweicloudsdkimagesearch