tencentcloud-sdk-python-cls 3.1.130__tar.gz → 3.1.133__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.1.130 → tencentcloud_sdk_python_cls-3.1.133}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/setup.py +1 -1
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/cls/v20201016/models.py +85 -44
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cls-3.1.133/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cls-3.1.130/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/README.rst +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/cls/v20201016/cls_client_async.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cls-3.1.130 → tencentcloud_sdk_python_cls-3.1.133}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.133
|
|
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
|
|
@@ -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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.133
|
|
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-cls',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.133,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cls SDK for Python',
|
|
@@ -13525,6 +13525,8 @@ class CreateScheduledSqlRequest(AbstractModel):
|
|
|
13525
13525
|
:type ProcessDelay: int
|
|
13526
13526
|
:param _SrcTopicRegion: <p>源topicId的地域信息,支持地域见 <a href="https://cloud.tencent.com/document/api/614/56474#.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8">地域列表</a> 文档</p>
|
|
13527
13527
|
:type SrcTopicRegion: str
|
|
13528
|
+
:param _ProcessPeriodUnit: <p>调度时间单位</p><p>取值范围:[1, 2]</p><p>默认值:1</p><p>默认值为1(分钟),其他值2(秒)</p>
|
|
13529
|
+
:type ProcessPeriodUnit: int
|
|
13528
13530
|
:param _ProcessEndTime: <p>调度结束时间,当ProcessType=2时为必传字段, Unix时间戳,单位ms</p>
|
|
13529
13531
|
:type ProcessEndTime: int
|
|
13530
13532
|
:param _SyntaxRule: <p>查询语法规则。 默认值为0。0:Lucene语法,1:CQL语法</p>
|
|
@@ -13545,6 +13547,7 @@ class CreateScheduledSqlRequest(AbstractModel):
|
|
|
13545
13547
|
self._ProcessTimeWindow = None
|
|
13546
13548
|
self._ProcessDelay = None
|
|
13547
13549
|
self._SrcTopicRegion = None
|
|
13550
|
+
self._ProcessPeriodUnit = None
|
|
13548
13551
|
self._ProcessEndTime = None
|
|
13549
13552
|
self._SyntaxRule = None
|
|
13550
13553
|
self._HasServicesLog = None
|
|
@@ -13671,6 +13674,17 @@ class CreateScheduledSqlRequest(AbstractModel):
|
|
|
13671
13674
|
def SrcTopicRegion(self, SrcTopicRegion):
|
|
13672
13675
|
self._SrcTopicRegion = SrcTopicRegion
|
|
13673
13676
|
|
|
13677
|
+
@property
|
|
13678
|
+
def ProcessPeriodUnit(self):
|
|
13679
|
+
r"""<p>调度时间单位</p><p>取值范围:[1, 2]</p><p>默认值:1</p><p>默认值为1(分钟),其他值2(秒)</p>
|
|
13680
|
+
:rtype: int
|
|
13681
|
+
"""
|
|
13682
|
+
return self._ProcessPeriodUnit
|
|
13683
|
+
|
|
13684
|
+
@ProcessPeriodUnit.setter
|
|
13685
|
+
def ProcessPeriodUnit(self, ProcessPeriodUnit):
|
|
13686
|
+
self._ProcessPeriodUnit = ProcessPeriodUnit
|
|
13687
|
+
|
|
13674
13688
|
@property
|
|
13675
13689
|
def ProcessEndTime(self):
|
|
13676
13690
|
r"""<p>调度结束时间,当ProcessType=2时为必传字段, Unix时间戳,单位ms</p>
|
|
@@ -13730,6 +13744,7 @@ class CreateScheduledSqlRequest(AbstractModel):
|
|
|
13730
13744
|
self._ProcessTimeWindow = params.get("ProcessTimeWindow")
|
|
13731
13745
|
self._ProcessDelay = params.get("ProcessDelay")
|
|
13732
13746
|
self._SrcTopicRegion = params.get("SrcTopicRegion")
|
|
13747
|
+
self._ProcessPeriodUnit = params.get("ProcessPeriodUnit")
|
|
13733
13748
|
self._ProcessEndTime = params.get("ProcessEndTime")
|
|
13734
13749
|
self._SyntaxRule = params.get("SyntaxRule")
|
|
13735
13750
|
self._HasServicesLog = params.get("HasServicesLog")
|
|
@@ -42027,6 +42042,8 @@ class ModifyScheduledSqlRequest(AbstractModel):
|
|
|
42027
42042
|
:type HasServicesLog: int
|
|
42028
42043
|
:param _FullQuery: <p>全文检索查询标记。1:关闭,2:打开。</p>
|
|
42029
42044
|
:type FullQuery: int
|
|
42045
|
+
:param _ProcessPeriodUnit: <p>调度周期单位</p><p>取值范围:[1, 2]</p><p>默认值:1</p><p>默认值1(分钟),其他值2(秒)</p>
|
|
42046
|
+
:type ProcessPeriodUnit: int
|
|
42030
42047
|
"""
|
|
42031
42048
|
self._TaskId = None
|
|
42032
42049
|
self._SrcTopicId = None
|
|
@@ -42041,6 +42058,7 @@ class ModifyScheduledSqlRequest(AbstractModel):
|
|
|
42041
42058
|
self._SyntaxRule = None
|
|
42042
42059
|
self._HasServicesLog = None
|
|
42043
42060
|
self._FullQuery = None
|
|
42061
|
+
self._ProcessPeriodUnit = None
|
|
42044
42062
|
|
|
42045
42063
|
@property
|
|
42046
42064
|
def TaskId(self):
|
|
@@ -42185,6 +42203,17 @@ class ModifyScheduledSqlRequest(AbstractModel):
|
|
|
42185
42203
|
def FullQuery(self, FullQuery):
|
|
42186
42204
|
self._FullQuery = FullQuery
|
|
42187
42205
|
|
|
42206
|
+
@property
|
|
42207
|
+
def ProcessPeriodUnit(self):
|
|
42208
|
+
r"""<p>调度周期单位</p><p>取值范围:[1, 2]</p><p>默认值:1</p><p>默认值1(分钟),其他值2(秒)</p>
|
|
42209
|
+
:rtype: int
|
|
42210
|
+
"""
|
|
42211
|
+
return self._ProcessPeriodUnit
|
|
42212
|
+
|
|
42213
|
+
@ProcessPeriodUnit.setter
|
|
42214
|
+
def ProcessPeriodUnit(self, ProcessPeriodUnit):
|
|
42215
|
+
self._ProcessPeriodUnit = ProcessPeriodUnit
|
|
42216
|
+
|
|
42188
42217
|
|
|
42189
42218
|
def _deserialize(self, params):
|
|
42190
42219
|
self._TaskId = params.get("TaskId")
|
|
@@ -42202,6 +42231,7 @@ class ModifyScheduledSqlRequest(AbstractModel):
|
|
|
42202
42231
|
self._SyntaxRule = params.get("SyntaxRule")
|
|
42203
42232
|
self._HasServicesLog = params.get("HasServicesLog")
|
|
42204
42233
|
self._FullQuery = params.get("FullQuery")
|
|
42234
|
+
self._ProcessPeriodUnit = params.get("ProcessPeriodUnit")
|
|
42205
42235
|
memeber_set = set(params.keys())
|
|
42206
42236
|
for name, value in vars(self).items():
|
|
42207
42237
|
property_name = name[1:]
|
|
@@ -47610,48 +47640,48 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47610
47640
|
|
|
47611
47641
|
def __init__(self):
|
|
47612
47642
|
r"""
|
|
47613
|
-
:param _TaskId: ScheduledSql任务id
|
|
47643
|
+
:param _TaskId: <p>ScheduledSql任务id</p>
|
|
47614
47644
|
:type TaskId: str
|
|
47615
|
-
:param _Name: ScheduledSql
|
|
47645
|
+
:param _Name: <p>ScheduledSql任务名称</p>
|
|
47616
47646
|
:type Name: str
|
|
47617
|
-
:param _SrcTopicId:
|
|
47647
|
+
:param _SrcTopicId: <p>源日志主题id</p>
|
|
47618
47648
|
:type SrcTopicId: str
|
|
47619
|
-
:param _SrcTopicName:
|
|
47649
|
+
:param _SrcTopicName: <p>源日志主题名称</p>
|
|
47620
47650
|
:type SrcTopicName: str
|
|
47621
|
-
:param _DstResource:
|
|
47651
|
+
:param _DstResource: <p>定时SQL分析目标主题</p>
|
|
47622
47652
|
:type DstResource: :class:`tencentcloud.cls.v20201016.models.ScheduledSqlResouceInfo`
|
|
47623
|
-
:param _CreateTime:
|
|
47653
|
+
:param _CreateTime: <p>任务创建时间。格式:yyyy-MM-dd HH:mm:ss</p>
|
|
47624
47654
|
:type CreateTime: str
|
|
47625
|
-
:param _UpdateTime:
|
|
47655
|
+
:param _UpdateTime: <p>任务更新时间,格式:yyyy-MM-dd HH:mm:ss</p>
|
|
47626
47656
|
:type UpdateTime: str
|
|
47627
|
-
:param _Status:
|
|
47628
|
-
|
|
47629
|
-
5: 访问权限问题 6:内部故障 7:其他故障
|
|
47657
|
+
:param _Status: <p>任务状态,1:运行 2:停止 3:异常-找不到源日志主题 4:异常-找不到目标主题</p><p>5: 访问权限问题 6:内部故障 7:其他故障</p>
|
|
47630
47658
|
:type Status: int
|
|
47631
|
-
:param _EnableFlag:
|
|
47659
|
+
:param _EnableFlag: <p>任务启用状态,1开启, 2关闭</p>
|
|
47632
47660
|
:type EnableFlag: int
|
|
47633
|
-
:param _ScheduledSqlContent:
|
|
47661
|
+
:param _ScheduledSqlContent: <p>查询语句</p>
|
|
47634
47662
|
:type ScheduledSqlContent: str
|
|
47635
|
-
:param _ProcessStartTime:
|
|
47663
|
+
:param _ProcessStartTime: <p>调度开始时间,格式:yyyy-MM-dd HH:mm:ss</p>
|
|
47636
47664
|
:type ProcessStartTime: str
|
|
47637
|
-
:param _ProcessType:
|
|
47665
|
+
:param _ProcessType: <p>调度类型,1:持续运行 2:指定时间范围</p>
|
|
47638
47666
|
:type ProcessType: int
|
|
47639
|
-
:param _ProcessEndTime:
|
|
47667
|
+
:param _ProcessEndTime: <p>调度结束时间,格式:yyyy-MM-dd HH:mm:ss,当process_type=2时为必传字段</p>
|
|
47640
47668
|
:type ProcessEndTime: str
|
|
47641
|
-
:param _ProcessPeriod:
|
|
47669
|
+
:param _ProcessPeriod: <p>调度周期(分钟),1~1440分钟</p>
|
|
47642
47670
|
:type ProcessPeriod: int
|
|
47643
|
-
:param _ProcessTimeWindow:
|
|
47671
|
+
:param _ProcessTimeWindow: <p>查询的时间窗口. @m-15m, @m,意为近15分钟</p>
|
|
47644
47672
|
:type ProcessTimeWindow: str
|
|
47645
|
-
:param _ProcessDelay:
|
|
47673
|
+
:param _ProcessDelay: <p>执行延迟(秒),0~120秒,默认60秒</p>
|
|
47646
47674
|
:type ProcessDelay: int
|
|
47647
|
-
:param _SrcTopicRegion:
|
|
47675
|
+
:param _SrcTopicRegion: <p>源topicId的地域信息,支持地域见 <a href="https://cloud.tencent.com/document/api/614/56474#.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8">地域列表</a> 文档。</p>
|
|
47648
47676
|
:type SrcTopicRegion: str
|
|
47649
|
-
:param _SyntaxRule:
|
|
47677
|
+
:param _SyntaxRule: <p>语法规则,0:Lucene语法,1:CQL语法</p>
|
|
47650
47678
|
:type SyntaxRule: int
|
|
47651
|
-
:param _HasServicesLog:
|
|
47679
|
+
:param _HasServicesLog: <p>是否开启投递服务日志。1:关闭,2:开启。</p>
|
|
47652
47680
|
:type HasServicesLog: int
|
|
47653
|
-
:param _FullQuery:
|
|
47681
|
+
:param _FullQuery: <p>全文检索标记。1:关闭,2:打开。</p>
|
|
47654
47682
|
:type FullQuery: int
|
|
47683
|
+
:param _ProcessPeriodUnit: <p>调度周期时间单位</p><p>取值范围:[1, 2]</p><p>默认值:1</p><p>默认值1(分钟),其他值2(秒)</p>
|
|
47684
|
+
:type ProcessPeriodUnit: int
|
|
47655
47685
|
"""
|
|
47656
47686
|
self._TaskId = None
|
|
47657
47687
|
self._Name = None
|
|
@@ -47673,10 +47703,11 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47673
47703
|
self._SyntaxRule = None
|
|
47674
47704
|
self._HasServicesLog = None
|
|
47675
47705
|
self._FullQuery = None
|
|
47706
|
+
self._ProcessPeriodUnit = None
|
|
47676
47707
|
|
|
47677
47708
|
@property
|
|
47678
47709
|
def TaskId(self):
|
|
47679
|
-
r"""ScheduledSql任务id
|
|
47710
|
+
r"""<p>ScheduledSql任务id</p>
|
|
47680
47711
|
:rtype: str
|
|
47681
47712
|
"""
|
|
47682
47713
|
return self._TaskId
|
|
@@ -47687,7 +47718,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47687
47718
|
|
|
47688
47719
|
@property
|
|
47689
47720
|
def Name(self):
|
|
47690
|
-
r"""ScheduledSql
|
|
47721
|
+
r"""<p>ScheduledSql任务名称</p>
|
|
47691
47722
|
:rtype: str
|
|
47692
47723
|
"""
|
|
47693
47724
|
return self._Name
|
|
@@ -47698,7 +47729,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47698
47729
|
|
|
47699
47730
|
@property
|
|
47700
47731
|
def SrcTopicId(self):
|
|
47701
|
-
r"""
|
|
47732
|
+
r"""<p>源日志主题id</p>
|
|
47702
47733
|
:rtype: str
|
|
47703
47734
|
"""
|
|
47704
47735
|
return self._SrcTopicId
|
|
@@ -47709,7 +47740,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47709
47740
|
|
|
47710
47741
|
@property
|
|
47711
47742
|
def SrcTopicName(self):
|
|
47712
|
-
r"""
|
|
47743
|
+
r"""<p>源日志主题名称</p>
|
|
47713
47744
|
:rtype: str
|
|
47714
47745
|
"""
|
|
47715
47746
|
return self._SrcTopicName
|
|
@@ -47720,7 +47751,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47720
47751
|
|
|
47721
47752
|
@property
|
|
47722
47753
|
def DstResource(self):
|
|
47723
|
-
r"""
|
|
47754
|
+
r"""<p>定时SQL分析目标主题</p>
|
|
47724
47755
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ScheduledSqlResouceInfo`
|
|
47725
47756
|
"""
|
|
47726
47757
|
return self._DstResource
|
|
@@ -47731,7 +47762,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47731
47762
|
|
|
47732
47763
|
@property
|
|
47733
47764
|
def CreateTime(self):
|
|
47734
|
-
r"""
|
|
47765
|
+
r"""<p>任务创建时间。格式:yyyy-MM-dd HH:mm:ss</p>
|
|
47735
47766
|
:rtype: str
|
|
47736
47767
|
"""
|
|
47737
47768
|
return self._CreateTime
|
|
@@ -47742,7 +47773,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47742
47773
|
|
|
47743
47774
|
@property
|
|
47744
47775
|
def UpdateTime(self):
|
|
47745
|
-
r"""
|
|
47776
|
+
r"""<p>任务更新时间,格式:yyyy-MM-dd HH:mm:ss</p>
|
|
47746
47777
|
:rtype: str
|
|
47747
47778
|
"""
|
|
47748
47779
|
return self._UpdateTime
|
|
@@ -47753,9 +47784,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47753
47784
|
|
|
47754
47785
|
@property
|
|
47755
47786
|
def Status(self):
|
|
47756
|
-
r"""
|
|
47757
|
-
|
|
47758
|
-
5: 访问权限问题 6:内部故障 7:其他故障
|
|
47787
|
+
r"""<p>任务状态,1:运行 2:停止 3:异常-找不到源日志主题 4:异常-找不到目标主题</p><p>5: 访问权限问题 6:内部故障 7:其他故障</p>
|
|
47759
47788
|
:rtype: int
|
|
47760
47789
|
"""
|
|
47761
47790
|
return self._Status
|
|
@@ -47766,7 +47795,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47766
47795
|
|
|
47767
47796
|
@property
|
|
47768
47797
|
def EnableFlag(self):
|
|
47769
|
-
r"""
|
|
47798
|
+
r"""<p>任务启用状态,1开启, 2关闭</p>
|
|
47770
47799
|
:rtype: int
|
|
47771
47800
|
"""
|
|
47772
47801
|
return self._EnableFlag
|
|
@@ -47777,7 +47806,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47777
47806
|
|
|
47778
47807
|
@property
|
|
47779
47808
|
def ScheduledSqlContent(self):
|
|
47780
|
-
r"""
|
|
47809
|
+
r"""<p>查询语句</p>
|
|
47781
47810
|
:rtype: str
|
|
47782
47811
|
"""
|
|
47783
47812
|
return self._ScheduledSqlContent
|
|
@@ -47788,7 +47817,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47788
47817
|
|
|
47789
47818
|
@property
|
|
47790
47819
|
def ProcessStartTime(self):
|
|
47791
|
-
r"""
|
|
47820
|
+
r"""<p>调度开始时间,格式:yyyy-MM-dd HH:mm:ss</p>
|
|
47792
47821
|
:rtype: str
|
|
47793
47822
|
"""
|
|
47794
47823
|
return self._ProcessStartTime
|
|
@@ -47799,7 +47828,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47799
47828
|
|
|
47800
47829
|
@property
|
|
47801
47830
|
def ProcessType(self):
|
|
47802
|
-
r"""
|
|
47831
|
+
r"""<p>调度类型,1:持续运行 2:指定时间范围</p>
|
|
47803
47832
|
:rtype: int
|
|
47804
47833
|
"""
|
|
47805
47834
|
return self._ProcessType
|
|
@@ -47810,7 +47839,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47810
47839
|
|
|
47811
47840
|
@property
|
|
47812
47841
|
def ProcessEndTime(self):
|
|
47813
|
-
r"""
|
|
47842
|
+
r"""<p>调度结束时间,格式:yyyy-MM-dd HH:mm:ss,当process_type=2时为必传字段</p>
|
|
47814
47843
|
:rtype: str
|
|
47815
47844
|
"""
|
|
47816
47845
|
return self._ProcessEndTime
|
|
@@ -47821,7 +47850,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47821
47850
|
|
|
47822
47851
|
@property
|
|
47823
47852
|
def ProcessPeriod(self):
|
|
47824
|
-
r"""
|
|
47853
|
+
r"""<p>调度周期(分钟),1~1440分钟</p>
|
|
47825
47854
|
:rtype: int
|
|
47826
47855
|
"""
|
|
47827
47856
|
return self._ProcessPeriod
|
|
@@ -47832,7 +47861,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47832
47861
|
|
|
47833
47862
|
@property
|
|
47834
47863
|
def ProcessTimeWindow(self):
|
|
47835
|
-
r"""
|
|
47864
|
+
r"""<p>查询的时间窗口. @m-15m, @m,意为近15分钟</p>
|
|
47836
47865
|
:rtype: str
|
|
47837
47866
|
"""
|
|
47838
47867
|
return self._ProcessTimeWindow
|
|
@@ -47843,7 +47872,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47843
47872
|
|
|
47844
47873
|
@property
|
|
47845
47874
|
def ProcessDelay(self):
|
|
47846
|
-
r"""
|
|
47875
|
+
r"""<p>执行延迟(秒),0~120秒,默认60秒</p>
|
|
47847
47876
|
:rtype: int
|
|
47848
47877
|
"""
|
|
47849
47878
|
return self._ProcessDelay
|
|
@@ -47854,7 +47883,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47854
47883
|
|
|
47855
47884
|
@property
|
|
47856
47885
|
def SrcTopicRegion(self):
|
|
47857
|
-
r"""
|
|
47886
|
+
r"""<p>源topicId的地域信息,支持地域见 <a href="https://cloud.tencent.com/document/api/614/56474#.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8">地域列表</a> 文档。</p>
|
|
47858
47887
|
:rtype: str
|
|
47859
47888
|
"""
|
|
47860
47889
|
return self._SrcTopicRegion
|
|
@@ -47865,7 +47894,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47865
47894
|
|
|
47866
47895
|
@property
|
|
47867
47896
|
def SyntaxRule(self):
|
|
47868
|
-
r"""
|
|
47897
|
+
r"""<p>语法规则,0:Lucene语法,1:CQL语法</p>
|
|
47869
47898
|
:rtype: int
|
|
47870
47899
|
"""
|
|
47871
47900
|
return self._SyntaxRule
|
|
@@ -47876,7 +47905,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47876
47905
|
|
|
47877
47906
|
@property
|
|
47878
47907
|
def HasServicesLog(self):
|
|
47879
|
-
r"""
|
|
47908
|
+
r"""<p>是否开启投递服务日志。1:关闭,2:开启。</p>
|
|
47880
47909
|
:rtype: int
|
|
47881
47910
|
"""
|
|
47882
47911
|
return self._HasServicesLog
|
|
@@ -47887,7 +47916,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47887
47916
|
|
|
47888
47917
|
@property
|
|
47889
47918
|
def FullQuery(self):
|
|
47890
|
-
r"""
|
|
47919
|
+
r"""<p>全文检索标记。1:关闭,2:打开。</p>
|
|
47891
47920
|
:rtype: int
|
|
47892
47921
|
"""
|
|
47893
47922
|
return self._FullQuery
|
|
@@ -47896,6 +47925,17 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47896
47925
|
def FullQuery(self, FullQuery):
|
|
47897
47926
|
self._FullQuery = FullQuery
|
|
47898
47927
|
|
|
47928
|
+
@property
|
|
47929
|
+
def ProcessPeriodUnit(self):
|
|
47930
|
+
r"""<p>调度周期时间单位</p><p>取值范围:[1, 2]</p><p>默认值:1</p><p>默认值1(分钟),其他值2(秒)</p>
|
|
47931
|
+
:rtype: int
|
|
47932
|
+
"""
|
|
47933
|
+
return self._ProcessPeriodUnit
|
|
47934
|
+
|
|
47935
|
+
@ProcessPeriodUnit.setter
|
|
47936
|
+
def ProcessPeriodUnit(self, ProcessPeriodUnit):
|
|
47937
|
+
self._ProcessPeriodUnit = ProcessPeriodUnit
|
|
47938
|
+
|
|
47899
47939
|
|
|
47900
47940
|
def _deserialize(self, params):
|
|
47901
47941
|
self._TaskId = params.get("TaskId")
|
|
@@ -47920,6 +47960,7 @@ class ScheduledSqlTaskInfo(AbstractModel):
|
|
|
47920
47960
|
self._SyntaxRule = params.get("SyntaxRule")
|
|
47921
47961
|
self._HasServicesLog = params.get("HasServicesLog")
|
|
47922
47962
|
self._FullQuery = params.get("FullQuery")
|
|
47963
|
+
self._ProcessPeriodUnit = params.get("ProcessPeriodUnit")
|
|
47923
47964
|
memeber_set = set(params.keys())
|
|
47924
47965
|
for name, value in vars(self).items():
|
|
47925
47966
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.133
|
|
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
|
|
@@ -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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.133
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.133
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.130
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|