tencentcloud-sdk-python-cls 3.0.1176__tar.gz → 3.0.1178__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.1176 → tencentcloud-sdk-python-cls-3.0.1178}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/models.py +62 -3
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1178/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1176/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1176 → tencentcloud-sdk-python-cls-3.0.1178}/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.1178"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -919,6 +919,15 @@ class AlarmTargetInfo(AbstractModel):
|
|
|
919
919
|
:type StartTimeOffset: int
|
|
920
920
|
:param _EndTimeOffset: 查询范围终止时间相对于告警执行时间的偏移,单位为分钟,取值为非正,须大于StartTimeOffset,最大值为0,最小值为-1440。
|
|
921
921
|
:type EndTimeOffset: int
|
|
922
|
+
:param _SyntaxRule: 检索语法规则,默认值为0。
|
|
923
|
+
0:Lucene语法,1:CQL语法。
|
|
924
|
+
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
|
925
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
926
|
+
:type SyntaxRule: int
|
|
927
|
+
:param _BizType: 主题类型。
|
|
928
|
+
0: 日志主题,1: 指标主题
|
|
929
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
930
|
+
:type BizType: int
|
|
922
931
|
"""
|
|
923
932
|
self._LogsetId = None
|
|
924
933
|
self._LogsetName = None
|
|
@@ -928,6 +937,8 @@ class AlarmTargetInfo(AbstractModel):
|
|
|
928
937
|
self._Number = None
|
|
929
938
|
self._StartTimeOffset = None
|
|
930
939
|
self._EndTimeOffset = None
|
|
940
|
+
self._SyntaxRule = None
|
|
941
|
+
self._BizType = None
|
|
931
942
|
|
|
932
943
|
@property
|
|
933
944
|
def LogsetId(self):
|
|
@@ -993,6 +1004,22 @@ class AlarmTargetInfo(AbstractModel):
|
|
|
993
1004
|
def EndTimeOffset(self, EndTimeOffset):
|
|
994
1005
|
self._EndTimeOffset = EndTimeOffset
|
|
995
1006
|
|
|
1007
|
+
@property
|
|
1008
|
+
def SyntaxRule(self):
|
|
1009
|
+
return self._SyntaxRule
|
|
1010
|
+
|
|
1011
|
+
@SyntaxRule.setter
|
|
1012
|
+
def SyntaxRule(self, SyntaxRule):
|
|
1013
|
+
self._SyntaxRule = SyntaxRule
|
|
1014
|
+
|
|
1015
|
+
@property
|
|
1016
|
+
def BizType(self):
|
|
1017
|
+
return self._BizType
|
|
1018
|
+
|
|
1019
|
+
@BizType.setter
|
|
1020
|
+
def BizType(self, BizType):
|
|
1021
|
+
self._BizType = BizType
|
|
1022
|
+
|
|
996
1023
|
|
|
997
1024
|
def _deserialize(self, params):
|
|
998
1025
|
self._LogsetId = params.get("LogsetId")
|
|
@@ -1003,6 +1030,8 @@ class AlarmTargetInfo(AbstractModel):
|
|
|
1003
1030
|
self._Number = params.get("Number")
|
|
1004
1031
|
self._StartTimeOffset = params.get("StartTimeOffset")
|
|
1005
1032
|
self._EndTimeOffset = params.get("EndTimeOffset")
|
|
1033
|
+
self._SyntaxRule = params.get("SyntaxRule")
|
|
1034
|
+
self._BizType = params.get("BizType")
|
|
1006
1035
|
memeber_set = set(params.keys())
|
|
1007
1036
|
for name, value in vars(self).items():
|
|
1008
1037
|
property_name = name[1:]
|
|
@@ -3652,7 +3681,7 @@ class CreateAlarmRequest(AbstractModel):
|
|
|
3652
3681
|
:type AlarmTargets: list of AlarmTarget
|
|
3653
3682
|
:param _MonitorTime: 监控任务运行时间点。
|
|
3654
3683
|
:type MonitorTime: :class:`tencentcloud.cls.v20201016.models.MonitorTime`
|
|
3655
|
-
:param _TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为
|
|
3684
|
+
:param _TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000。
|
|
3656
3685
|
:type TriggerCount: int
|
|
3657
3686
|
:param _AlarmPeriod: 告警重复的周期,单位是分钟。取值范围是0~1440。
|
|
3658
3687
|
:type AlarmPeriod: int
|
|
@@ -15181,7 +15210,7 @@ class ModifyAlarmRequest(AbstractModel):
|
|
|
15181
15210
|
注意:
|
|
15182
15211
|
- Condition和AlarmLevel是一组配置,MultiConditions是另一组配置,2组配置互斥。
|
|
15183
15212
|
:type MultiConditions: list of MultiCondition
|
|
15184
|
-
:param _TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为
|
|
15213
|
+
:param _TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为2000。
|
|
15185
15214
|
:type TriggerCount: int
|
|
15186
15215
|
:param _AlarmPeriod: 告警重复的周期。单位是分钟。取值范围是0~1440。
|
|
15187
15216
|
:type AlarmPeriod: int
|
|
@@ -17655,6 +17684,8 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
17655
17684
|
:param _IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
|
|
17656
17685
|
开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
|
|
17657
17686
|
:type IsWebTracking: bool
|
|
17687
|
+
:param _Extends: 日志主题扩展信息
|
|
17688
|
+
:type Extends: :class:`tencentcloud.cls.v20201016.models.TopicExtendInfo`
|
|
17658
17689
|
:param _PartitionCount: 日志主题分区数量
|
|
17659
17690
|
:type PartitionCount: int
|
|
17660
17691
|
"""
|
|
@@ -17668,6 +17699,7 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
17668
17699
|
self._Describes = None
|
|
17669
17700
|
self._HotPeriod = None
|
|
17670
17701
|
self._IsWebTracking = None
|
|
17702
|
+
self._Extends = None
|
|
17671
17703
|
self._PartitionCount = None
|
|
17672
17704
|
|
|
17673
17705
|
@property
|
|
@@ -17750,6 +17782,14 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
17750
17782
|
def IsWebTracking(self, IsWebTracking):
|
|
17751
17783
|
self._IsWebTracking = IsWebTracking
|
|
17752
17784
|
|
|
17785
|
+
@property
|
|
17786
|
+
def Extends(self):
|
|
17787
|
+
return self._Extends
|
|
17788
|
+
|
|
17789
|
+
@Extends.setter
|
|
17790
|
+
def Extends(self, Extends):
|
|
17791
|
+
self._Extends = Extends
|
|
17792
|
+
|
|
17753
17793
|
@property
|
|
17754
17794
|
def PartitionCount(self):
|
|
17755
17795
|
return self._PartitionCount
|
|
@@ -17775,6 +17815,9 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
17775
17815
|
self._Describes = params.get("Describes")
|
|
17776
17816
|
self._HotPeriod = params.get("HotPeriod")
|
|
17777
17817
|
self._IsWebTracking = params.get("IsWebTracking")
|
|
17818
|
+
if params.get("Extends") is not None:
|
|
17819
|
+
self._Extends = TopicExtendInfo()
|
|
17820
|
+
self._Extends._deserialize(params.get("Extends"))
|
|
17778
17821
|
self._PartitionCount = params.get("PartitionCount")
|
|
17779
17822
|
memeber_set = set(params.keys())
|
|
17780
17823
|
for name, value in vars(self).items():
|
|
@@ -17818,12 +17861,13 @@ class MonitorTime(AbstractModel):
|
|
|
17818
17861
|
|
|
17819
17862
|
def __init__(self):
|
|
17820
17863
|
r"""
|
|
17821
|
-
:param _Type: 执行周期,
|
|
17864
|
+
:param _Type: 执行周期, 可选值:`Period`、`Fixed`。
|
|
17822
17865
|
|
|
17823
17866
|
- Period:固定频率
|
|
17824
17867
|
- Fixed:固定时间
|
|
17825
17868
|
:type Type: str
|
|
17826
17869
|
:param _Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
|
|
17870
|
+
当type为`Period`,`Fixed`时,time字段生效。
|
|
17827
17871
|
:type Time: int
|
|
17828
17872
|
"""
|
|
17829
17873
|
self._Type = None
|
|
@@ -21196,6 +21240,9 @@ HotPeriod=0为没有开启日志沉降。
|
|
|
21196
21240
|
开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
|
|
21197
21241
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
21198
21242
|
:type IsWebTracking: bool
|
|
21243
|
+
:param _Extends: 日志主题扩展信息
|
|
21244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
21245
|
+
:type Extends: :class:`tencentcloud.cls.v20201016.models.TopicExtendInfo`
|
|
21199
21246
|
"""
|
|
21200
21247
|
self._LogsetId = None
|
|
21201
21248
|
self._TopicId = None
|
|
@@ -21215,6 +21262,7 @@ HotPeriod=0为没有开启日志沉降。
|
|
|
21215
21262
|
self._HotPeriod = None
|
|
21216
21263
|
self._BizType = None
|
|
21217
21264
|
self._IsWebTracking = None
|
|
21265
|
+
self._Extends = None
|
|
21218
21266
|
|
|
21219
21267
|
@property
|
|
21220
21268
|
def LogsetId(self):
|
|
@@ -21360,6 +21408,14 @@ HotPeriod=0为没有开启日志沉降。
|
|
|
21360
21408
|
def IsWebTracking(self, IsWebTracking):
|
|
21361
21409
|
self._IsWebTracking = IsWebTracking
|
|
21362
21410
|
|
|
21411
|
+
@property
|
|
21412
|
+
def Extends(self):
|
|
21413
|
+
return self._Extends
|
|
21414
|
+
|
|
21415
|
+
@Extends.setter
|
|
21416
|
+
def Extends(self, Extends):
|
|
21417
|
+
self._Extends = Extends
|
|
21418
|
+
|
|
21363
21419
|
|
|
21364
21420
|
def _deserialize(self, params):
|
|
21365
21421
|
self._LogsetId = params.get("LogsetId")
|
|
@@ -21385,6 +21441,9 @@ HotPeriod=0为没有开启日志沉降。
|
|
|
21385
21441
|
self._HotPeriod = params.get("HotPeriod")
|
|
21386
21442
|
self._BizType = params.get("BizType")
|
|
21387
21443
|
self._IsWebTracking = params.get("IsWebTracking")
|
|
21444
|
+
if params.get("Extends") is not None:
|
|
21445
|
+
self._Extends = TopicExtendInfo()
|
|
21446
|
+
self._Extends._deserialize(params.get("Extends"))
|
|
21388
21447
|
memeber_set = set(params.keys())
|
|
21389
21448
|
for name, value in vars(self).items():
|
|
21390
21449
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1178
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1176
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|