tencentcloud-sdk-python-cls 3.1.95__tar.gz → 3.1.99__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.95 → tencentcloud_sdk_python_cls-3.1.99}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/setup.py +1 -1
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/models.py +16 -62
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cls-3.1.99/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cls-3.1.95/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/README.rst +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/cls_client_async.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cls-3.1.95 → tencentcloud_sdk_python_cls-3.1.99}/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.99
|
|
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.99
|
|
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.99,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cls SDK for Python',
|
|
@@ -5756,32 +5756,15 @@ class ConsumerContent(AbstractModel):
|
|
|
5756
5756
|
|
|
5757
5757
|
def __init__(self):
|
|
5758
5758
|
r"""
|
|
5759
|
-
:param _EnableTag:
|
|
5760
|
-
当EnableTag为true时,表示投递TAG元信息。
|
|
5759
|
+
:param _EnableTag: <p>是否投递 TAG 信息。<br>当EnableTag为true时,表示投递TAG元信息。</p>
|
|
5761
5760
|
:type EnableTag: bool
|
|
5762
|
-
:param _MetaFields:
|
|
5761
|
+
:param _MetaFields: <p>需要投递的元数据列表,目前仅支持:__SOURCE__,__FILENAME__,__TIMESTAMP__,__HOSTNAME__和__PKGID__</p>
|
|
5763
5762
|
:type MetaFields: list of str
|
|
5764
|
-
:param _TagJsonNotTiled:
|
|
5765
|
-
TagJsonNotTiled用于标识tag信息是否json平铺。
|
|
5766
|
-
|
|
5767
|
-
TagJsonNotTiled为true时不平铺,示例:
|
|
5768
|
-
TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
5769
|
-
不平铺:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
5770
|
-
|
|
5771
|
-
TagJsonNotTiled为false时平铺,示例:
|
|
5772
|
-
TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
5773
|
-
平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
|
|
5763
|
+
:param _TagJsonNotTiled: <p>当EnableTag为true时,必须填写TagJsonNotTiled字段。<br>TagJsonNotTiled用于标识tag信息是否json平铺。</p><p>TagJsonNotTiled为true时不平铺,示例:<br>TAG信息:<code>{"__TAG__":{"fieldA":200,"fieldB":"text"}}</code><br>不平铺:<code>{"__TAG__":{"fieldA":200,"fieldB":"text"}}</code></p><p>TagJsonNotTiled为false时平铺,示例:<br>TAG信息:<code>{"__TAG__":{"fieldA":200,"fieldB":"text"}}</code><br>平铺:<code>{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}</code></p>
|
|
5774
5764
|
:type TagJsonNotTiled: bool
|
|
5775
|
-
:param _TimestampAccuracy:
|
|
5765
|
+
:param _TimestampAccuracy: <p>投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。</p>
|
|
5776
5766
|
:type TimestampAccuracy: int
|
|
5777
|
-
:param _JsonType:
|
|
5778
|
-
JsonType为0:和原始日志一致,不转义。示例:
|
|
5779
|
-
日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
|
5780
|
-
投递到Ckafka:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
|
5781
|
-
|
|
5782
|
-
JsonType为1:转义。示例:
|
|
5783
|
-
日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
|
5784
|
-
投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
|
|
5767
|
+
:param _JsonType: <p>投递Json格式。</p><p>枚举值:</p><ul><li>0: 转义。示例:<br>日志原文:<code>{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}</code><br>投递到Ckafka:<code>{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}</code></li><li>1: 和原始日志一致,不转义。示例:<br>日志原文:<code>{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}</code><br>投递到Ckafka:<code>{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}</code></li></ul>
|
|
5785
5768
|
:type JsonType: int
|
|
5786
5769
|
"""
|
|
5787
5770
|
self._EnableTag = None
|
|
@@ -5792,8 +5775,7 @@ JsonType为1:转义。示例:
|
|
|
5792
5775
|
|
|
5793
5776
|
@property
|
|
5794
5777
|
def EnableTag(self):
|
|
5795
|
-
r"""
|
|
5796
|
-
当EnableTag为true时,表示投递TAG元信息。
|
|
5778
|
+
r"""<p>是否投递 TAG 信息。<br>当EnableTag为true时,表示投递TAG元信息。</p>
|
|
5797
5779
|
:rtype: bool
|
|
5798
5780
|
"""
|
|
5799
5781
|
return self._EnableTag
|
|
@@ -5804,7 +5786,7 @@ JsonType为1:转义。示例:
|
|
|
5804
5786
|
|
|
5805
5787
|
@property
|
|
5806
5788
|
def MetaFields(self):
|
|
5807
|
-
r"""
|
|
5789
|
+
r"""<p>需要投递的元数据列表,目前仅支持:__SOURCE__,__FILENAME__,__TIMESTAMP__,__HOSTNAME__和__PKGID__</p>
|
|
5808
5790
|
:rtype: list of str
|
|
5809
5791
|
"""
|
|
5810
5792
|
return self._MetaFields
|
|
@@ -5815,16 +5797,7 @@ JsonType为1:转义。示例:
|
|
|
5815
5797
|
|
|
5816
5798
|
@property
|
|
5817
5799
|
def TagJsonNotTiled(self):
|
|
5818
|
-
r"""
|
|
5819
|
-
TagJsonNotTiled用于标识tag信息是否json平铺。
|
|
5820
|
-
|
|
5821
|
-
TagJsonNotTiled为true时不平铺,示例:
|
|
5822
|
-
TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
5823
|
-
不平铺:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
5824
|
-
|
|
5825
|
-
TagJsonNotTiled为false时平铺,示例:
|
|
5826
|
-
TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
5827
|
-
平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
|
|
5800
|
+
r"""<p>当EnableTag为true时,必须填写TagJsonNotTiled字段。<br>TagJsonNotTiled用于标识tag信息是否json平铺。</p><p>TagJsonNotTiled为true时不平铺,示例:<br>TAG信息:<code>{"__TAG__":{"fieldA":200,"fieldB":"text"}}</code><br>不平铺:<code>{"__TAG__":{"fieldA":200,"fieldB":"text"}}</code></p><p>TagJsonNotTiled为false时平铺,示例:<br>TAG信息:<code>{"__TAG__":{"fieldA":200,"fieldB":"text"}}</code><br>平铺:<code>{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}</code></p>
|
|
5828
5801
|
:rtype: bool
|
|
5829
5802
|
"""
|
|
5830
5803
|
return self._TagJsonNotTiled
|
|
@@ -5835,7 +5808,7 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
|
5835
5808
|
|
|
5836
5809
|
@property
|
|
5837
5810
|
def TimestampAccuracy(self):
|
|
5838
|
-
r"""
|
|
5811
|
+
r"""<p>投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。</p>
|
|
5839
5812
|
:rtype: int
|
|
5840
5813
|
"""
|
|
5841
5814
|
return self._TimestampAccuracy
|
|
@@ -5846,14 +5819,7 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
|
5846
5819
|
|
|
5847
5820
|
@property
|
|
5848
5821
|
def JsonType(self):
|
|
5849
|
-
r"""
|
|
5850
|
-
JsonType为0:和原始日志一致,不转义。示例:
|
|
5851
|
-
日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
|
5852
|
-
投递到Ckafka:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
|
5853
|
-
|
|
5854
|
-
JsonType为1:转义。示例:
|
|
5855
|
-
日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
|
5856
|
-
投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
|
|
5822
|
+
r"""<p>投递Json格式。</p><p>枚举值:</p><ul><li>0: 转义。示例:<br>日志原文:<code>{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}</code><br>投递到Ckafka:<code>{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}</code></li><li>1: 和原始日志一致,不转义。示例:<br>日志原文:<code>{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}</code><br>投递到Ckafka:<code>{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}</code></li></ul>
|
|
5857
5823
|
:rtype: int
|
|
5858
5824
|
"""
|
|
5859
5825
|
return self._JsonType
|
|
@@ -43152,17 +43118,11 @@ class MonitorTime(AbstractModel):
|
|
|
43152
43118
|
|
|
43153
43119
|
def __init__(self):
|
|
43154
43120
|
r"""
|
|
43155
|
-
:param _Type:
|
|
43156
|
-
|
|
43157
|
-
- Period:固定频率
|
|
43158
|
-
- Fixed:固定时间
|
|
43159
|
-
- Cron:Cron表达式
|
|
43121
|
+
:param _Type: <p>执行周期, 可选值:<code>Period</code>、<code>Fixed</code>、<code>Cron</code>。</p><ul><li>Period:固定频率</li><li>Fixed:固定时间</li><li>Cron:Cron表达式</li></ul>
|
|
43160
43122
|
:type Type: str
|
|
43161
|
-
:param _Time:
|
|
43162
|
-
当type为`Period`,`Fixed`时,time字段生效。
|
|
43123
|
+
:param _Time: <p>执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。<br>当type为<code>Period</code>,<code>Fixed</code>时,time字段生效。</p>
|
|
43163
43124
|
:type Time: int
|
|
43164
|
-
:param _CronExpression:
|
|
43165
|
-
当type为`Cron`时,CronExpression字段生效。
|
|
43125
|
+
:param _CronExpression: <p>执行的周期cron表达式。示例:<code>0/1 * * * *</code> 从左到右每个field的含义 Minutes field(分钟), Hours field(小时),Day of month field(日期),Month field(月份),Day of week field(星期), 不支持秒级别。当type为<code>Cron</code>时,CronExpression字段生效。</p>
|
|
43166
43126
|
:type CronExpression: str
|
|
43167
43127
|
"""
|
|
43168
43128
|
self._Type = None
|
|
@@ -43171,11 +43131,7 @@ class MonitorTime(AbstractModel):
|
|
|
43171
43131
|
|
|
43172
43132
|
@property
|
|
43173
43133
|
def Type(self):
|
|
43174
|
-
r"""
|
|
43175
|
-
|
|
43176
|
-
- Period:固定频率
|
|
43177
|
-
- Fixed:固定时间
|
|
43178
|
-
- Cron:Cron表达式
|
|
43134
|
+
r"""<p>执行周期, 可选值:<code>Period</code>、<code>Fixed</code>、<code>Cron</code>。</p><ul><li>Period:固定频率</li><li>Fixed:固定时间</li><li>Cron:Cron表达式</li></ul>
|
|
43179
43135
|
:rtype: str
|
|
43180
43136
|
"""
|
|
43181
43137
|
return self._Type
|
|
@@ -43186,8 +43142,7 @@ class MonitorTime(AbstractModel):
|
|
|
43186
43142
|
|
|
43187
43143
|
@property
|
|
43188
43144
|
def Time(self):
|
|
43189
|
-
r"""
|
|
43190
|
-
当type为`Period`,`Fixed`时,time字段生效。
|
|
43145
|
+
r"""<p>执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。<br>当type为<code>Period</code>,<code>Fixed</code>时,time字段生效。</p>
|
|
43191
43146
|
:rtype: int
|
|
43192
43147
|
"""
|
|
43193
43148
|
return self._Time
|
|
@@ -43198,8 +43153,7 @@ class MonitorTime(AbstractModel):
|
|
|
43198
43153
|
|
|
43199
43154
|
@property
|
|
43200
43155
|
def CronExpression(self):
|
|
43201
|
-
r"""
|
|
43202
|
-
当type为`Cron`时,CronExpression字段生效。
|
|
43156
|
+
r"""<p>执行的周期cron表达式。示例:<code>0/1 * * * *</code> 从左到右每个field的含义 Minutes field(分钟), Hours field(小时),Day of month field(日期),Month field(月份),Day of week field(星期), 不支持秒级别。当type为<code>Cron</code>时,CronExpression字段生效。</p>
|
|
43203
43157
|
:rtype: str
|
|
43204
43158
|
"""
|
|
43205
43159
|
return self._CronExpression
|
|
@@ -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.99
|
|
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.99
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.99
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.95
|
|
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
|