tencentcloud-sdk-python-dlc 3.1.65__tar.gz → 3.1.70__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 (17) hide show
  1. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/dlc/v20210125/models.py +19 -4
  5. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_dlc-3.1.70/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_dlc-3.1.65/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/README.rst +0 -0
  9. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/dlc/v20210125/dlc_client_async.py +0 -0
  14. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud/dlc/v20210125/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dlc-3.1.65 → tencentcloud_sdk_python_dlc-3.1.70}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.65
3
+ Version: 3.1.70
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.65
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.70
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-dlc',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.65,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.70,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dlc SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.65'
17
+ __version__ = '3.1.70'
@@ -28603,17 +28603,20 @@ class Filter(AbstractModel):
28603
28603
 
28604
28604
  def __init__(self):
28605
28605
  r"""
28606
- :param _Name: 属性名称, 若存在多个Filter时,Filter间的关系为逻辑或(OR)关系。
28606
+ :param _Name: 筛选字段名,对应实体属性名(驼峰命名)
28607
28607
  :type Name: str
28608
- :param _Values: 属性值, 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
28608
+ :param _Operator: 筛选操作符:EQ/NE/GT/GE/LT/LE/LIKE/IN,默认EQ
28609
+ :type Operator: str
28610
+ :param _Values: 筛选值列表,EQ/NE/GT/GE/LT/LE/LIKE取第一个值,IN使用完整列表
28609
28611
  :type Values: list of str
28610
28612
  """
28611
28613
  self._Name = None
28614
+ self._Operator = None
28612
28615
  self._Values = None
28613
28616
 
28614
28617
  @property
28615
28618
  def Name(self):
28616
- r"""属性名称, 若存在多个Filter时,Filter间的关系为逻辑或(OR)关系。
28619
+ r"""筛选字段名,对应实体属性名(驼峰命名)
28617
28620
  :rtype: str
28618
28621
  """
28619
28622
  return self._Name
@@ -28622,9 +28625,20 @@ class Filter(AbstractModel):
28622
28625
  def Name(self, Name):
28623
28626
  self._Name = Name
28624
28627
 
28628
+ @property
28629
+ def Operator(self):
28630
+ r"""筛选操作符:EQ/NE/GT/GE/LT/LE/LIKE/IN,默认EQ
28631
+ :rtype: str
28632
+ """
28633
+ return self._Operator
28634
+
28635
+ @Operator.setter
28636
+ def Operator(self, Operator):
28637
+ self._Operator = Operator
28638
+
28625
28639
  @property
28626
28640
  def Values(self):
28627
- r"""属性值, 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
28641
+ r"""筛选值列表,EQ/NE/GT/GE/LT/LE/LIKE取第一个值,IN使用完整列表
28628
28642
  :rtype: list of str
28629
28643
  """
28630
28644
  return self._Values
@@ -28636,6 +28650,7 @@ class Filter(AbstractModel):
28636
28650
 
28637
28651
  def _deserialize(self, params):
28638
28652
  self._Name = params.get("Name")
28653
+ self._Operator = params.get("Operator")
28639
28654
  self._Values = params.get("Values")
28640
28655
  memeber_set = set(params.keys())
28641
28656
  for name, value in vars(self).items():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.65
3
+ Version: 3.1.70
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.65
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.70
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.70
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.65