tencentcloud-sdk-python-cls 3.0.1177__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.1177 → tencentcloud-sdk-python-cls-3.0.1178}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/models.py +29 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → 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.1177/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → tencentcloud-sdk-python-cls-3.0.1178}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1177 → 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:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1178
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1177
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|