tencentcloud-sdk-python-apm 3.0.1376__py2.py3-none-any.whl → 3.0.1378__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-apm might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apm/v20210622/models.py +60 -0
- {tencentcloud_sdk_python_apm-3.0.1376.dist-info → tencentcloud_sdk_python_apm-3.0.1378.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_apm-3.0.1378.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_apm-3.0.1376.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_apm-3.0.1376.dist-info → tencentcloud_sdk_python_apm-3.0.1378.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_apm-3.0.1376.dist-info → tencentcloud_sdk_python_apm-3.0.1378.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -758,6 +758,10 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
758
758
|
:type IsRemoteCommandExecutionAnalysis: int
|
|
759
759
|
:param _IsMemoryHijackingAnalysis: 是否开内存马执行检测(0=关, 1=开)
|
|
760
760
|
:type IsMemoryHijackingAnalysis: int
|
|
761
|
+
:param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
|
|
762
|
+
:type LogIndexType: int
|
|
763
|
+
:param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
764
|
+
:type LogTraceIdKey: str
|
|
761
765
|
"""
|
|
762
766
|
self._InstanceId = None
|
|
763
767
|
self._Name = None
|
|
@@ -798,6 +802,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
798
802
|
self._StopReason = None
|
|
799
803
|
self._IsRemoteCommandExecutionAnalysis = None
|
|
800
804
|
self._IsMemoryHijackingAnalysis = None
|
|
805
|
+
self._LogIndexType = None
|
|
806
|
+
self._LogTraceIdKey = None
|
|
801
807
|
|
|
802
808
|
@property
|
|
803
809
|
def InstanceId(self):
|
|
@@ -1234,6 +1240,28 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1234
1240
|
def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
|
|
1235
1241
|
self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
|
|
1236
1242
|
|
|
1243
|
+
@property
|
|
1244
|
+
def LogIndexType(self):
|
|
1245
|
+
"""CLS索引类型(0=全文索引,1=键值索引)
|
|
1246
|
+
:rtype: int
|
|
1247
|
+
"""
|
|
1248
|
+
return self._LogIndexType
|
|
1249
|
+
|
|
1250
|
+
@LogIndexType.setter
|
|
1251
|
+
def LogIndexType(self, LogIndexType):
|
|
1252
|
+
self._LogIndexType = LogIndexType
|
|
1253
|
+
|
|
1254
|
+
@property
|
|
1255
|
+
def LogTraceIdKey(self):
|
|
1256
|
+
"""traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
1257
|
+
:rtype: str
|
|
1258
|
+
"""
|
|
1259
|
+
return self._LogTraceIdKey
|
|
1260
|
+
|
|
1261
|
+
@LogTraceIdKey.setter
|
|
1262
|
+
def LogTraceIdKey(self, LogTraceIdKey):
|
|
1263
|
+
self._LogTraceIdKey = LogTraceIdKey
|
|
1264
|
+
|
|
1237
1265
|
|
|
1238
1266
|
def _deserialize(self, params):
|
|
1239
1267
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1280,6 +1308,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1280
1308
|
self._StopReason = params.get("StopReason")
|
|
1281
1309
|
self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
|
|
1282
1310
|
self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
|
|
1311
|
+
self._LogIndexType = params.get("LogIndexType")
|
|
1312
|
+
self._LogTraceIdKey = params.get("LogTraceIdKey")
|
|
1283
1313
|
memeber_set = set(params.keys())
|
|
1284
1314
|
for name, value in vars(self).items():
|
|
1285
1315
|
property_name = name[1:]
|
|
@@ -3731,6 +3761,10 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3731
3761
|
:type IsRemoteCommandExecutionAnalysis: int
|
|
3732
3762
|
:param _IsMemoryHijackingAnalysis: 是否开启内存马检测
|
|
3733
3763
|
:type IsMemoryHijackingAnalysis: int
|
|
3764
|
+
:param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
|
|
3765
|
+
:type LogIndexType: int
|
|
3766
|
+
:param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
3767
|
+
:type LogTraceIdKey: str
|
|
3734
3768
|
"""
|
|
3735
3769
|
self._InstanceId = None
|
|
3736
3770
|
self._Name = None
|
|
@@ -3758,6 +3792,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3758
3792
|
self._IsInstrumentationVulnerabilityScan = None
|
|
3759
3793
|
self._IsRemoteCommandExecutionAnalysis = None
|
|
3760
3794
|
self._IsMemoryHijackingAnalysis = None
|
|
3795
|
+
self._LogIndexType = None
|
|
3796
|
+
self._LogTraceIdKey = None
|
|
3761
3797
|
|
|
3762
3798
|
@property
|
|
3763
3799
|
def InstanceId(self):
|
|
@@ -4045,6 +4081,28 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4045
4081
|
def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
|
|
4046
4082
|
self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
|
|
4047
4083
|
|
|
4084
|
+
@property
|
|
4085
|
+
def LogIndexType(self):
|
|
4086
|
+
"""CLS索引类型(0=全文索引,1=键值索引)
|
|
4087
|
+
:rtype: int
|
|
4088
|
+
"""
|
|
4089
|
+
return self._LogIndexType
|
|
4090
|
+
|
|
4091
|
+
@LogIndexType.setter
|
|
4092
|
+
def LogIndexType(self, LogIndexType):
|
|
4093
|
+
self._LogIndexType = LogIndexType
|
|
4094
|
+
|
|
4095
|
+
@property
|
|
4096
|
+
def LogTraceIdKey(self):
|
|
4097
|
+
"""traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
4098
|
+
:rtype: str
|
|
4099
|
+
"""
|
|
4100
|
+
return self._LogTraceIdKey
|
|
4101
|
+
|
|
4102
|
+
@LogTraceIdKey.setter
|
|
4103
|
+
def LogTraceIdKey(self, LogTraceIdKey):
|
|
4104
|
+
self._LogTraceIdKey = LogTraceIdKey
|
|
4105
|
+
|
|
4048
4106
|
|
|
4049
4107
|
def _deserialize(self, params):
|
|
4050
4108
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -4078,6 +4136,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4078
4136
|
self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
|
|
4079
4137
|
self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
|
|
4080
4138
|
self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
|
|
4139
|
+
self._LogIndexType = params.get("LogIndexType")
|
|
4140
|
+
self._LogTraceIdKey = params.get("LogTraceIdKey")
|
|
4081
4141
|
memeber_set = set(params.keys())
|
|
4082
4142
|
for name, value in vars(self).items():
|
|
4083
4143
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-apm
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1378
|
|
4
4
|
Summary: Tencent Cloud Apm 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.1378)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=AWlqrS_ezPlzoy13F5wDFGxuqr-8L3wgM3Qzt-YVCMo,631
|
|
2
|
+
tencentcloud/apm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/apm/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/apm/v20210622/apm_client.py,sha256=nFFknbBdefC-Obq2c7WbkD_zo2g6Q8VpldpTA8d3vDc,13218
|
|
5
|
+
tencentcloud/apm/v20210622/errorcodes.py,sha256=ciIcLaYfEH1s5Yy7P0cVqW9eOtcvLQHi0bcsC-_24ps,5073
|
|
6
|
+
tencentcloud/apm/v20210622/models.py,sha256=FDiV9zGkTuIyF9EZ0XwYskCxnivbQUntFVHHQ-y0aHQ,144663
|
|
7
|
+
tencentcloud_sdk_python_apm-3.0.1378.dist-info/METADATA,sha256=eqBxNUVHeOPmsOMGT0imWlQ-sjpbIH9-QjtgjHyz18s,1496
|
|
8
|
+
tencentcloud_sdk_python_apm-3.0.1378.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_apm-3.0.1378.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_apm-3.0.1378.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=RWHcg70bXJMLCvRm-IYCy0U-bEd0lSg93uM0LteNT1E,631
|
|
2
|
-
tencentcloud/apm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/apm/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/apm/v20210622/apm_client.py,sha256=nFFknbBdefC-Obq2c7WbkD_zo2g6Q8VpldpTA8d3vDc,13218
|
|
5
|
-
tencentcloud/apm/v20210622/errorcodes.py,sha256=ciIcLaYfEH1s5Yy7P0cVqW9eOtcvLQHi0bcsC-_24ps,5073
|
|
6
|
-
tencentcloud/apm/v20210622/models.py,sha256=dawae1EtzpOws7PgXXXQBDfMRn3rT4MyC-4ghFIL4fY,142659
|
|
7
|
-
tencentcloud_sdk_python_apm-3.0.1376.dist-info/METADATA,sha256=zuVlJT0jjkIDeN0QwzTdRYxs14zBnyHg8KtrXLvDi0g,1496
|
|
8
|
-
tencentcloud_sdk_python_apm-3.0.1376.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_apm-3.0.1376.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_apm-3.0.1376.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|