tencentcloud-sdk-python-cls 3.0.1165__tar.gz → 3.0.1166__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.1165 → tencentcloud-sdk-python-cls-3.0.1166}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud/cls/v20201016/models.py +25 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1166/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1165/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1165 → tencentcloud-sdk-python-cls-3.0.1166}/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.1166"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5147,6 +5147,8 @@ class CreateExportRequest(AbstractModel):
|
|
|
5147
5147
|
:param _SyntaxRule: 语法规则, 默认值为0。
|
|
5148
5148
|
0:Lucene语法,1:CQL语法。
|
|
5149
5149
|
:type SyntaxRule: int
|
|
5150
|
+
:param _DerivedFields: 导出字段
|
|
5151
|
+
:type DerivedFields: list of str
|
|
5150
5152
|
"""
|
|
5151
5153
|
self._TopicId = None
|
|
5152
5154
|
self._Count = None
|
|
@@ -5156,6 +5158,7 @@ class CreateExportRequest(AbstractModel):
|
|
|
5156
5158
|
self._Order = None
|
|
5157
5159
|
self._Format = None
|
|
5158
5160
|
self._SyntaxRule = None
|
|
5161
|
+
self._DerivedFields = None
|
|
5159
5162
|
|
|
5160
5163
|
@property
|
|
5161
5164
|
def TopicId(self):
|
|
@@ -5221,6 +5224,14 @@ class CreateExportRequest(AbstractModel):
|
|
|
5221
5224
|
def SyntaxRule(self, SyntaxRule):
|
|
5222
5225
|
self._SyntaxRule = SyntaxRule
|
|
5223
5226
|
|
|
5227
|
+
@property
|
|
5228
|
+
def DerivedFields(self):
|
|
5229
|
+
return self._DerivedFields
|
|
5230
|
+
|
|
5231
|
+
@DerivedFields.setter
|
|
5232
|
+
def DerivedFields(self, DerivedFields):
|
|
5233
|
+
self._DerivedFields = DerivedFields
|
|
5234
|
+
|
|
5224
5235
|
|
|
5225
5236
|
def _deserialize(self, params):
|
|
5226
5237
|
self._TopicId = params.get("TopicId")
|
|
@@ -5231,6 +5242,7 @@ class CreateExportRequest(AbstractModel):
|
|
|
5231
5242
|
self._Order = params.get("Order")
|
|
5232
5243
|
self._Format = params.get("Format")
|
|
5233
5244
|
self._SyntaxRule = params.get("SyntaxRule")
|
|
5245
|
+
self._DerivedFields = params.get("DerivedFields")
|
|
5234
5246
|
memeber_set = set(params.keys())
|
|
5235
5247
|
for name, value in vars(self).items():
|
|
5236
5248
|
property_name = name[1:]
|
|
@@ -11931,6 +11943,9 @@ class ExportInfo(AbstractModel):
|
|
|
11931
11943
|
:param _SyntaxRule: 语法规则。 默认值为0。
|
|
11932
11944
|
0:Lucene语法,1:CQL语法。
|
|
11933
11945
|
:type SyntaxRule: int
|
|
11946
|
+
:param _DerivedFields: 导出字段
|
|
11947
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11948
|
+
:type DerivedFields: list of str
|
|
11934
11949
|
"""
|
|
11935
11950
|
self._TopicId = None
|
|
11936
11951
|
self._ExportId = None
|
|
@@ -11946,6 +11961,7 @@ class ExportInfo(AbstractModel):
|
|
|
11946
11961
|
self._CosPath = None
|
|
11947
11962
|
self._CreateTime = None
|
|
11948
11963
|
self._SyntaxRule = None
|
|
11964
|
+
self._DerivedFields = None
|
|
11949
11965
|
|
|
11950
11966
|
@property
|
|
11951
11967
|
def TopicId(self):
|
|
@@ -12059,6 +12075,14 @@ class ExportInfo(AbstractModel):
|
|
|
12059
12075
|
def SyntaxRule(self, SyntaxRule):
|
|
12060
12076
|
self._SyntaxRule = SyntaxRule
|
|
12061
12077
|
|
|
12078
|
+
@property
|
|
12079
|
+
def DerivedFields(self):
|
|
12080
|
+
return self._DerivedFields
|
|
12081
|
+
|
|
12082
|
+
@DerivedFields.setter
|
|
12083
|
+
def DerivedFields(self, DerivedFields):
|
|
12084
|
+
self._DerivedFields = DerivedFields
|
|
12085
|
+
|
|
12062
12086
|
|
|
12063
12087
|
def _deserialize(self, params):
|
|
12064
12088
|
self._TopicId = params.get("TopicId")
|
|
@@ -12075,6 +12099,7 @@ class ExportInfo(AbstractModel):
|
|
|
12075
12099
|
self._CosPath = params.get("CosPath")
|
|
12076
12100
|
self._CreateTime = params.get("CreateTime")
|
|
12077
12101
|
self._SyntaxRule = params.get("SyntaxRule")
|
|
12102
|
+
self._DerivedFields = params.get("DerivedFields")
|
|
12078
12103
|
memeber_set = set(params.keys())
|
|
12079
12104
|
for name, value in vars(self).items():
|
|
12080
12105
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1166
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1165
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|