tencentcloud-sdk-python-cls 3.0.1214__tar.gz → 3.0.1233__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.
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud/cls/v20201016/models.py +15 -3
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1233/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1214/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1214 → tencentcloud-sdk-python-cls-3.0.1233}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1233"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2746,7 +2746,7 @@ class ConsoleSharingConfig(AbstractModel):
|
|
|
2746
2746
|
:type Type: int
|
|
2747
2747
|
:param _DurationMilliseconds: 分享链接有效期,单位:毫秒,最长支持30天
|
|
2748
2748
|
:type DurationMilliseconds: int
|
|
2749
|
-
:param _Resources:
|
|
2749
|
+
:param _Resources: 允许访问的资源列表,目前仅支持一个Resource
|
|
2750
2750
|
:type Resources: list of str
|
|
2751
2751
|
:param _Domain: 分享链接域名,可选范围
|
|
2752
2752
|
- 公网匿名分享:填写clsshare.com
|
|
@@ -5385,6 +5385,8 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5385
5385
|
:type EnableFlag: int
|
|
5386
5386
|
:param _PreviewLogStatistics: 用于预览加工结果的测试数据
|
|
5387
5387
|
:type PreviewLogStatistics: list of PreviewLogStatistic
|
|
5388
|
+
:param _DataTransformType: 数据加工类型。0:标准加工任务; 1:前置加工任务。前置加工任务将采集的日志处理完成后,再写入日志主题。
|
|
5389
|
+
:type DataTransformType: int
|
|
5388
5390
|
"""
|
|
5389
5391
|
self._FuncType = None
|
|
5390
5392
|
self._SrcTopicId = None
|
|
@@ -5394,6 +5396,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5394
5396
|
self._DstResources = None
|
|
5395
5397
|
self._EnableFlag = None
|
|
5396
5398
|
self._PreviewLogStatistics = None
|
|
5399
|
+
self._DataTransformType = None
|
|
5397
5400
|
|
|
5398
5401
|
@property
|
|
5399
5402
|
def FuncType(self):
|
|
@@ -5459,6 +5462,14 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5459
5462
|
def PreviewLogStatistics(self, PreviewLogStatistics):
|
|
5460
5463
|
self._PreviewLogStatistics = PreviewLogStatistics
|
|
5461
5464
|
|
|
5465
|
+
@property
|
|
5466
|
+
def DataTransformType(self):
|
|
5467
|
+
return self._DataTransformType
|
|
5468
|
+
|
|
5469
|
+
@DataTransformType.setter
|
|
5470
|
+
def DataTransformType(self, DataTransformType):
|
|
5471
|
+
self._DataTransformType = DataTransformType
|
|
5472
|
+
|
|
5462
5473
|
|
|
5463
5474
|
def _deserialize(self, params):
|
|
5464
5475
|
self._FuncType = params.get("FuncType")
|
|
@@ -5479,6 +5490,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5479
5490
|
obj = PreviewLogStatistic()
|
|
5480
5491
|
obj._deserialize(item)
|
|
5481
5492
|
self._PreviewLogStatistics.append(obj)
|
|
5493
|
+
self._DataTransformType = params.get("DataTransformType")
|
|
5482
5494
|
memeber_set = set(params.keys())
|
|
5483
5495
|
for name, value in vars(self).items():
|
|
5484
5496
|
property_name = name[1:]
|
|
@@ -18677,10 +18689,11 @@ class MonitorTime(AbstractModel):
|
|
|
18677
18689
|
|
|
18678
18690
|
def __init__(self):
|
|
18679
18691
|
r"""
|
|
18680
|
-
:param _Type: 执行周期, 可选值:`Period`、`Fixed`。
|
|
18692
|
+
:param _Type: 执行周期, 可选值:`Period`、`Fixed`、`Cron`。
|
|
18681
18693
|
|
|
18682
18694
|
- Period:固定频率
|
|
18683
18695
|
- Fixed:固定时间
|
|
18696
|
+
- Cron:Cron表达式
|
|
18684
18697
|
:type Type: str
|
|
18685
18698
|
:param _Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
|
|
18686
18699
|
当type为`Period`,`Fixed`时,time字段生效。
|
|
@@ -21962,7 +21975,6 @@ id,地域,简称信息如下:
|
|
|
21962
21975
|
- 1, 广州,ap-guangzhou
|
|
21963
21976
|
- 4, 上海,ap-shanghai
|
|
21964
21977
|
- 5, 中国香港,ap-hongkong
|
|
21965
|
-
- 6, 多伦多,na-toronto
|
|
21966
21978
|
- 7, 上海金融,ap-shanghai-fsi
|
|
21967
21979
|
- 8, 北京,ap-beijing
|
|
21968
21980
|
- 9, 新加坡,ap-singapore
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1233
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1214
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|