tencentcloud-sdk-python-cls 3.0.1198__tar.gz → 3.0.1200__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.1198 → tencentcloud-sdk-python-cls-3.0.1200}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud/cls/v20201016/models.py +28 -9
  5. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cls-3.0.1200/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cls-3.0.1198/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1198 → tencentcloud-sdk-python-cls-3.0.1200}/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.1198
3
+ Version: 3.0.1200
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.1198"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1200"],
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.1198'
17
+ __version__ = '3.0.1200'
@@ -7313,6 +7313,9 @@ class DataTransformTaskInfo(AbstractModel):
7313
7313
  :type DstResources: list of DataTransformResouceInfo
7314
7314
  :param _EtlContent: 加工逻辑函数。
7315
7315
  :type EtlContent: str
7316
+ :param _DataTransformType: 数据加工类型。0:标准加工任务;1:前置加工任务。
7317
+ 注意:此字段可能返回 null,表示取不到有效值。
7318
+ :type DataTransformType: int
7316
7319
  """
7317
7320
  self._Name = None
7318
7321
  self._TaskId = None
@@ -7327,6 +7330,7 @@ class DataTransformTaskInfo(AbstractModel):
7327
7330
  self._LogsetId = None
7328
7331
  self._DstResources = None
7329
7332
  self._EtlContent = None
7333
+ self._DataTransformType = None
7330
7334
 
7331
7335
  @property
7332
7336
  def Name(self):
@@ -7432,6 +7436,14 @@ class DataTransformTaskInfo(AbstractModel):
7432
7436
  def EtlContent(self, EtlContent):
7433
7437
  self._EtlContent = EtlContent
7434
7438
 
7439
+ @property
7440
+ def DataTransformType(self):
7441
+ return self._DataTransformType
7442
+
7443
+ @DataTransformType.setter
7444
+ def DataTransformType(self, DataTransformType):
7445
+ self._DataTransformType = DataTransformType
7446
+
7435
7447
 
7436
7448
  def _deserialize(self, params):
7437
7449
  self._Name = params.get("Name")
@@ -7452,6 +7464,7 @@ class DataTransformTaskInfo(AbstractModel):
7452
7464
  obj._deserialize(item)
7453
7465
  self._DstResources.append(obj)
7454
7466
  self._EtlContent = params.get("EtlContent")
7467
+ self._DataTransformType = params.get("DataTransformType")
7455
7468
  memeber_set = set(params.keys())
7456
7469
  for name, value in vars(self).items():
7457
7470
  property_name = name[1:]
@@ -9837,25 +9850,31 @@ class DescribeDataTransformInfoRequest(AbstractModel):
9837
9850
 
9838
9851
  def __init__(self):
9839
9852
  r"""
9840
- :param _Filters: <br><li> taskName
9841
-
9853
+ :param _Filters: - taskName
9842
9854
  按照【加工任务名称】进行过滤。
9843
9855
  类型:String
9844
-
9845
9856
  必选:否
9846
9857
 
9847
- <br><li> taskId
9848
-
9858
+ - taskId
9849
9859
  按照【加工任务id】进行过滤。
9850
9860
  类型:String
9851
-
9852
9861
  必选:否
9853
9862
 
9854
- <br><li> topicId
9855
-
9863
+ - topicId
9856
9864
  按照【源topicId】进行过滤。
9857
9865
  类型:String
9858
-
9866
+ 必选:否
9867
+ - status
9868
+ 按照【 任务运行状态】进行过滤。 1:准备中,2:运行中,3:停止中,4:已停止
9869
+ 类型:String
9870
+ 必选:否
9871
+ - hasServiceLog
9872
+ 按照【是否开启服务日志】进行过滤。 1:未开启,2:已开启
9873
+ 类型:String
9874
+ 必选:否
9875
+ - dstTopicType
9876
+ 按照【目标topic类型】进行过滤。 1:固定,2:动态
9877
+ 类型:String
9859
9878
  必选:否
9860
9879
 
9861
9880
  每次请求的Filters的上限为10,Filter.Values的上限为100。
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1198
3
+ Version: 3.0.1200
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.1200
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1198