tencentcloud-sdk-python-cls 3.0.974__py2.py3-none-any.whl → 3.0.975__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/cls/v20201016/models.py +26 -0
- {tencentcloud_sdk_python_cls-3.0.974.dist-info → tencentcloud_sdk_python_cls-3.0.975.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_cls-3.0.975.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_cls-3.0.974.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_cls-3.0.974.dist-info → tencentcloud_sdk_python_cls-3.0.975.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cls-3.0.974.dist-info → tencentcloud_sdk_python_cls-3.0.975.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -10272,6 +10272,9 @@ class ExportInfo(AbstractModel):
|
|
|
10272
10272
|
:type CosPath: str
|
|
10273
10273
|
:param _CreateTime: 日志导出创建时间
|
|
10274
10274
|
:type CreateTime: str
|
|
10275
|
+
:param _SyntaxRule: 语法规则。 默认值为0。
|
|
10276
|
+
0:Lucene语法,1:CQL语法。
|
|
10277
|
+
:type SyntaxRule: int
|
|
10275
10278
|
"""
|
|
10276
10279
|
self._TopicId = None
|
|
10277
10280
|
self._ExportId = None
|
|
@@ -10286,6 +10289,7 @@ class ExportInfo(AbstractModel):
|
|
|
10286
10289
|
self._To = None
|
|
10287
10290
|
self._CosPath = None
|
|
10288
10291
|
self._CreateTime = None
|
|
10292
|
+
self._SyntaxRule = None
|
|
10289
10293
|
|
|
10290
10294
|
@property
|
|
10291
10295
|
def TopicId(self):
|
|
@@ -10391,6 +10395,14 @@ class ExportInfo(AbstractModel):
|
|
|
10391
10395
|
def CreateTime(self, CreateTime):
|
|
10392
10396
|
self._CreateTime = CreateTime
|
|
10393
10397
|
|
|
10398
|
+
@property
|
|
10399
|
+
def SyntaxRule(self):
|
|
10400
|
+
return self._SyntaxRule
|
|
10401
|
+
|
|
10402
|
+
@SyntaxRule.setter
|
|
10403
|
+
def SyntaxRule(self, SyntaxRule):
|
|
10404
|
+
self._SyntaxRule = SyntaxRule
|
|
10405
|
+
|
|
10394
10406
|
|
|
10395
10407
|
def _deserialize(self, params):
|
|
10396
10408
|
self._TopicId = params.get("TopicId")
|
|
@@ -10406,6 +10418,7 @@ class ExportInfo(AbstractModel):
|
|
|
10406
10418
|
self._To = params.get("To")
|
|
10407
10419
|
self._CosPath = params.get("CosPath")
|
|
10408
10420
|
self._CreateTime = params.get("CreateTime")
|
|
10421
|
+
self._SyntaxRule = params.get("SyntaxRule")
|
|
10409
10422
|
memeber_set = set(params.keys())
|
|
10410
10423
|
for name, value in vars(self).items():
|
|
10411
10424
|
property_name = name[1:]
|
|
@@ -12747,6 +12760,9 @@ class MachineInfo(AbstractModel):
|
|
|
12747
12760
|
r"""
|
|
12748
12761
|
:param _Ip: 机器的IP
|
|
12749
12762
|
:type Ip: str
|
|
12763
|
+
:param _InstanceID: 机器实例ID
|
|
12764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12765
|
+
:type InstanceID: str
|
|
12750
12766
|
:param _Status: 机器状态,0:异常,1:正常
|
|
12751
12767
|
:type Status: int
|
|
12752
12768
|
:param _OfflineTime: 机器离线时间,空为正常,异常返回具体时间
|
|
@@ -12763,6 +12779,7 @@ class MachineInfo(AbstractModel):
|
|
|
12763
12779
|
:type ErrMsg: str
|
|
12764
12780
|
"""
|
|
12765
12781
|
self._Ip = None
|
|
12782
|
+
self._InstanceID = None
|
|
12766
12783
|
self._Status = None
|
|
12767
12784
|
self._OfflineTime = None
|
|
12768
12785
|
self._AutoUpdate = None
|
|
@@ -12779,6 +12796,14 @@ class MachineInfo(AbstractModel):
|
|
|
12779
12796
|
def Ip(self, Ip):
|
|
12780
12797
|
self._Ip = Ip
|
|
12781
12798
|
|
|
12799
|
+
@property
|
|
12800
|
+
def InstanceID(self):
|
|
12801
|
+
return self._InstanceID
|
|
12802
|
+
|
|
12803
|
+
@InstanceID.setter
|
|
12804
|
+
def InstanceID(self, InstanceID):
|
|
12805
|
+
self._InstanceID = InstanceID
|
|
12806
|
+
|
|
12782
12807
|
@property
|
|
12783
12808
|
def Status(self):
|
|
12784
12809
|
return self._Status
|
|
@@ -12838,6 +12863,7 @@ class MachineInfo(AbstractModel):
|
|
|
12838
12863
|
|
|
12839
12864
|
def _deserialize(self, params):
|
|
12840
12865
|
self._Ip = params.get("Ip")
|
|
12866
|
+
self._InstanceID = params.get("InstanceID")
|
|
12841
12867
|
self._Status = params.get("Status")
|
|
12842
12868
|
self._OfflineTime = params.get("OfflineTime")
|
|
12843
12869
|
self._AutoUpdate = params.get("AutoUpdate")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.975
|
|
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 (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.975)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=SgQzuJ3VLEO45hrAsXOfAgBhEzsjCjFfrijpcF83ggk,630
|
|
2
|
+
tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/cls/v20201016/cls_client.py,sha256=U4U7kU0CKuFTHK8MLFjj6Au99cHKY0M4x8B_klfaQeo,85612
|
|
5
|
+
tencentcloud/cls/v20201016/errorcodes.py,sha256=ADBJ7QZPtpl7tsJ9t6lgKmxiV5kWmAou4UGvWC7Q2fc,9633
|
|
6
|
+
tencentcloud/cls/v20201016/models.py,sha256=OJFnE38JNS-CM7MPkuqv0H4lyDBfRMSx1RQWKzrzLFA,537257
|
|
7
|
+
tencentcloud_sdk_python_cls-3.0.975.dist-info/METADATA,sha256=oTosyzL6l_b-HniR3_fLB1zCgKEPUhUOcyffLJlVMHo,1490
|
|
8
|
+
tencentcloud_sdk_python_cls-3.0.975.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_cls-3.0.975.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_cls-3.0.975.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=xTMk9Gecg_K4I0i1MP3gzUEvrh-V3FNBxqYmkaww2lc,630
|
|
2
|
-
tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/cls/v20201016/cls_client.py,sha256=U4U7kU0CKuFTHK8MLFjj6Au99cHKY0M4x8B_klfaQeo,85612
|
|
5
|
-
tencentcloud/cls/v20201016/errorcodes.py,sha256=ADBJ7QZPtpl7tsJ9t6lgKmxiV5kWmAou4UGvWC7Q2fc,9633
|
|
6
|
-
tencentcloud/cls/v20201016/models.py,sha256=-51uCwRQOAsA-zr1q7ZsacMncnZjbSnEgJmerbcsu0A,536477
|
|
7
|
-
tencentcloud_sdk_python_cls-3.0.974.dist-info/METADATA,sha256=8zkJzKtKBKyGRIzKyXUQvotn2ydBsDPkfQJ9xtg0FZU,1490
|
|
8
|
-
tencentcloud_sdk_python_cls-3.0.974.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_cls-3.0.974.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_cls-3.0.974.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|