tencentcloud-sdk-python-cls 3.0.985__tar.gz → 3.0.988__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.985 → tencentcloud-sdk-python-cls-3.0.988}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud/cls/v20201016/models.py +13 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.988/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.985/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.985 → tencentcloud-sdk-python-cls-3.0.988}/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.988"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -4045,6 +4045,9 @@ class CreateExportRequest(AbstractModel):
|
|
|
4045
4045
|
:type Order: str
|
|
4046
4046
|
:param _Format: 日志导出数据格式。json,csv,默认为json
|
|
4047
4047
|
:type Format: str
|
|
4048
|
+
:param _SyntaxRule: 语法规则, 默认值为0。
|
|
4049
|
+
0:Lucene语法,1:CQL语法。
|
|
4050
|
+
:type SyntaxRule: int
|
|
4048
4051
|
"""
|
|
4049
4052
|
self._TopicId = None
|
|
4050
4053
|
self._Count = None
|
|
@@ -4053,6 +4056,7 @@ class CreateExportRequest(AbstractModel):
|
|
|
4053
4056
|
self._To = None
|
|
4054
4057
|
self._Order = None
|
|
4055
4058
|
self._Format = None
|
|
4059
|
+
self._SyntaxRule = None
|
|
4056
4060
|
|
|
4057
4061
|
@property
|
|
4058
4062
|
def TopicId(self):
|
|
@@ -4110,6 +4114,14 @@ class CreateExportRequest(AbstractModel):
|
|
|
4110
4114
|
def Format(self, Format):
|
|
4111
4115
|
self._Format = Format
|
|
4112
4116
|
|
|
4117
|
+
@property
|
|
4118
|
+
def SyntaxRule(self):
|
|
4119
|
+
return self._SyntaxRule
|
|
4120
|
+
|
|
4121
|
+
@SyntaxRule.setter
|
|
4122
|
+
def SyntaxRule(self, SyntaxRule):
|
|
4123
|
+
self._SyntaxRule = SyntaxRule
|
|
4124
|
+
|
|
4113
4125
|
|
|
4114
4126
|
def _deserialize(self, params):
|
|
4115
4127
|
self._TopicId = params.get("TopicId")
|
|
@@ -4119,6 +4131,7 @@ class CreateExportRequest(AbstractModel):
|
|
|
4119
4131
|
self._To = params.get("To")
|
|
4120
4132
|
self._Order = params.get("Order")
|
|
4121
4133
|
self._Format = params.get("Format")
|
|
4134
|
+
self._SyntaxRule = params.get("SyntaxRule")
|
|
4122
4135
|
memeber_set = set(params.keys())
|
|
4123
4136
|
for name, value in vars(self).items():
|
|
4124
4137
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.988
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.985
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|