tencentcloud-sdk-python-cls 3.0.1240__tar.gz → 3.0.1247__tar.gz

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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud/cls/v20201016/errorcodes.py +3 -0
  5. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud/cls/v20201016/models.py +12 -0
  6. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-cls-3.0.1247/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-cls-3.0.1240/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/README.rst +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud/cls/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud/cls/v20201016/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1240 → tencentcloud-sdk-python-cls-3.0.1247}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1240
3
+ Version: 3.0.1247
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cls',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1240"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1247"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cls SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1240'
17
+ __version__ = '3.0.1247'
@@ -122,6 +122,9 @@ INTERNALERROR_SEARCHERROR = 'InternalError.SearchError'
122
122
  # 检索失败
123
123
  INTERNALERROR_SEARCHFAILED = 'InternalError.SearchFailed'
124
124
 
125
+ # 内部错误服务器繁忙
126
+ INTERNALERROR_SERVERBUSY = 'InternalError.ServerBusy'
127
+
125
128
  # 参数错误。
126
129
  INVALIDPARAMETER = 'InvalidParameter'
127
130
 
@@ -12338,10 +12338,13 @@ class DescribeShippersRequest(AbstractModel):
12338
12338
  :type Offset: int
12339
12339
  :param _Limit: 分页单页的限制数目,默认值为20,最大值100
12340
12340
  :type Limit: int
12341
+ :param _PreciseSearch: 控制Filters相关字段是否为精确匹配。 0: 默认值,shipperName模糊匹配 1: shipperName 精确匹配
12342
+ :type PreciseSearch: int
12341
12343
  """
12342
12344
  self._Filters = None
12343
12345
  self._Offset = None
12344
12346
  self._Limit = None
12347
+ self._PreciseSearch = None
12345
12348
 
12346
12349
  @property
12347
12350
  def Filters(self):
@@ -12367,6 +12370,14 @@ class DescribeShippersRequest(AbstractModel):
12367
12370
  def Limit(self, Limit):
12368
12371
  self._Limit = Limit
12369
12372
 
12373
+ @property
12374
+ def PreciseSearch(self):
12375
+ return self._PreciseSearch
12376
+
12377
+ @PreciseSearch.setter
12378
+ def PreciseSearch(self, PreciseSearch):
12379
+ self._PreciseSearch = PreciseSearch
12380
+
12370
12381
 
12371
12382
  def _deserialize(self, params):
12372
12383
  if params.get("Filters") is not None:
@@ -12377,6 +12388,7 @@ class DescribeShippersRequest(AbstractModel):
12377
12388
  self._Filters.append(obj)
12378
12389
  self._Offset = params.get("Offset")
12379
12390
  self._Limit = params.get("Limit")
12391
+ self._PreciseSearch = params.get("PreciseSearch")
12380
12392
  memeber_set = set(params.keys())
12381
12393
  for name, value in vars(self).items():
12382
12394
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1240
3
+ Version: 3.0.1247
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1247
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1240