tencentcloud-sdk-python-apm 3.0.1373__py2.py3-none-any.whl → 3.0.1377__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 +90 -0
- {tencentcloud_sdk_python_apm-3.0.1373.dist-info → tencentcloud_sdk_python_apm-3.0.1377.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_apm-3.0.1377.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_apm-3.0.1373.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_apm-3.0.1373.dist-info → tencentcloud_sdk_python_apm-3.0.1377.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_apm-3.0.1373.dist-info → tencentcloud_sdk_python_apm-3.0.1377.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -754,6 +754,10 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
754
754
|
8: 账号欠费
|
|
755
755
|
}
|
|
756
756
|
:type StopReason: int
|
|
757
|
+
:param _IsRemoteCommandExecutionAnalysis: 是否开远程命令执行检测(0=关, 1=开)
|
|
758
|
+
:type IsRemoteCommandExecutionAnalysis: int
|
|
759
|
+
:param _IsMemoryHijackingAnalysis: 是否开内存马执行检测(0=关, 1=开)
|
|
760
|
+
:type IsMemoryHijackingAnalysis: int
|
|
757
761
|
"""
|
|
758
762
|
self._InstanceId = None
|
|
759
763
|
self._Name = None
|
|
@@ -792,6 +796,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
792
796
|
self._IsInstrumentationVulnerabilityScan = None
|
|
793
797
|
self._IsSqlInjectionAnalysis = None
|
|
794
798
|
self._StopReason = None
|
|
799
|
+
self._IsRemoteCommandExecutionAnalysis = None
|
|
800
|
+
self._IsMemoryHijackingAnalysis = None
|
|
795
801
|
|
|
796
802
|
@property
|
|
797
803
|
def InstanceId(self):
|
|
@@ -1206,6 +1212,28 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1206
1212
|
def StopReason(self, StopReason):
|
|
1207
1213
|
self._StopReason = StopReason
|
|
1208
1214
|
|
|
1215
|
+
@property
|
|
1216
|
+
def IsRemoteCommandExecutionAnalysis(self):
|
|
1217
|
+
"""是否开远程命令执行检测(0=关, 1=开)
|
|
1218
|
+
:rtype: int
|
|
1219
|
+
"""
|
|
1220
|
+
return self._IsRemoteCommandExecutionAnalysis
|
|
1221
|
+
|
|
1222
|
+
@IsRemoteCommandExecutionAnalysis.setter
|
|
1223
|
+
def IsRemoteCommandExecutionAnalysis(self, IsRemoteCommandExecutionAnalysis):
|
|
1224
|
+
self._IsRemoteCommandExecutionAnalysis = IsRemoteCommandExecutionAnalysis
|
|
1225
|
+
|
|
1226
|
+
@property
|
|
1227
|
+
def IsMemoryHijackingAnalysis(self):
|
|
1228
|
+
"""是否开内存马执行检测(0=关, 1=开)
|
|
1229
|
+
:rtype: int
|
|
1230
|
+
"""
|
|
1231
|
+
return self._IsMemoryHijackingAnalysis
|
|
1232
|
+
|
|
1233
|
+
@IsMemoryHijackingAnalysis.setter
|
|
1234
|
+
def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
|
|
1235
|
+
self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
|
|
1236
|
+
|
|
1209
1237
|
|
|
1210
1238
|
def _deserialize(self, params):
|
|
1211
1239
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1250,6 +1278,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1250
1278
|
self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
|
|
1251
1279
|
self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
|
|
1252
1280
|
self._StopReason = params.get("StopReason")
|
|
1281
|
+
self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
|
|
1282
|
+
self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
|
|
1253
1283
|
memeber_set = set(params.keys())
|
|
1254
1284
|
for name, value in vars(self).items():
|
|
1255
1285
|
property_name = name[1:]
|
|
@@ -3697,6 +3727,14 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3697
3727
|
:type IsSqlInjectionAnalysis: int
|
|
3698
3728
|
:param _IsInstrumentationVulnerabilityScan: 是否开启组件漏洞检测(0=关,1=开)
|
|
3699
3729
|
:type IsInstrumentationVulnerabilityScan: int
|
|
3730
|
+
:param _IsRemoteCommandExecutionAnalysis: 是否开启远程命令攻击检测
|
|
3731
|
+
:type IsRemoteCommandExecutionAnalysis: int
|
|
3732
|
+
:param _IsMemoryHijackingAnalysis: 是否开启内存马检测
|
|
3733
|
+
:type IsMemoryHijackingAnalysis: int
|
|
3734
|
+
:param _LogIndexType: 0=全文索引,1=键值索引
|
|
3735
|
+
:type LogIndexType: int
|
|
3736
|
+
:param _LogTraceIdKey: traceId的索引key
|
|
3737
|
+
:type LogTraceIdKey: str
|
|
3700
3738
|
"""
|
|
3701
3739
|
self._InstanceId = None
|
|
3702
3740
|
self._Name = None
|
|
@@ -3722,6 +3760,10 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3722
3760
|
self._DashboardTopicID = None
|
|
3723
3761
|
self._IsSqlInjectionAnalysis = None
|
|
3724
3762
|
self._IsInstrumentationVulnerabilityScan = None
|
|
3763
|
+
self._IsRemoteCommandExecutionAnalysis = None
|
|
3764
|
+
self._IsMemoryHijackingAnalysis = None
|
|
3765
|
+
self._LogIndexType = None
|
|
3766
|
+
self._LogTraceIdKey = None
|
|
3725
3767
|
|
|
3726
3768
|
@property
|
|
3727
3769
|
def InstanceId(self):
|
|
@@ -3987,6 +4029,50 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3987
4029
|
def IsInstrumentationVulnerabilityScan(self, IsInstrumentationVulnerabilityScan):
|
|
3988
4030
|
self._IsInstrumentationVulnerabilityScan = IsInstrumentationVulnerabilityScan
|
|
3989
4031
|
|
|
4032
|
+
@property
|
|
4033
|
+
def IsRemoteCommandExecutionAnalysis(self):
|
|
4034
|
+
"""是否开启远程命令攻击检测
|
|
4035
|
+
:rtype: int
|
|
4036
|
+
"""
|
|
4037
|
+
return self._IsRemoteCommandExecutionAnalysis
|
|
4038
|
+
|
|
4039
|
+
@IsRemoteCommandExecutionAnalysis.setter
|
|
4040
|
+
def IsRemoteCommandExecutionAnalysis(self, IsRemoteCommandExecutionAnalysis):
|
|
4041
|
+
self._IsRemoteCommandExecutionAnalysis = IsRemoteCommandExecutionAnalysis
|
|
4042
|
+
|
|
4043
|
+
@property
|
|
4044
|
+
def IsMemoryHijackingAnalysis(self):
|
|
4045
|
+
"""是否开启内存马检测
|
|
4046
|
+
:rtype: int
|
|
4047
|
+
"""
|
|
4048
|
+
return self._IsMemoryHijackingAnalysis
|
|
4049
|
+
|
|
4050
|
+
@IsMemoryHijackingAnalysis.setter
|
|
4051
|
+
def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
|
|
4052
|
+
self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
|
|
4053
|
+
|
|
4054
|
+
@property
|
|
4055
|
+
def LogIndexType(self):
|
|
4056
|
+
"""0=全文索引,1=键值索引
|
|
4057
|
+
:rtype: int
|
|
4058
|
+
"""
|
|
4059
|
+
return self._LogIndexType
|
|
4060
|
+
|
|
4061
|
+
@LogIndexType.setter
|
|
4062
|
+
def LogIndexType(self, LogIndexType):
|
|
4063
|
+
self._LogIndexType = LogIndexType
|
|
4064
|
+
|
|
4065
|
+
@property
|
|
4066
|
+
def LogTraceIdKey(self):
|
|
4067
|
+
"""traceId的索引key
|
|
4068
|
+
:rtype: str
|
|
4069
|
+
"""
|
|
4070
|
+
return self._LogTraceIdKey
|
|
4071
|
+
|
|
4072
|
+
@LogTraceIdKey.setter
|
|
4073
|
+
def LogTraceIdKey(self, LogTraceIdKey):
|
|
4074
|
+
self._LogTraceIdKey = LogTraceIdKey
|
|
4075
|
+
|
|
3990
4076
|
|
|
3991
4077
|
def _deserialize(self, params):
|
|
3992
4078
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -4018,6 +4104,10 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
4018
4104
|
self._DashboardTopicID = params.get("DashboardTopicID")
|
|
4019
4105
|
self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
|
|
4020
4106
|
self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
|
|
4107
|
+
self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
|
|
4108
|
+
self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
|
|
4109
|
+
self._LogIndexType = params.get("LogIndexType")
|
|
4110
|
+
self._LogTraceIdKey = params.get("LogTraceIdKey")
|
|
4021
4111
|
memeber_set = set(params.keys())
|
|
4022
4112
|
for name, value in vars(self).items():
|
|
4023
4113
|
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.1377
|
|
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.1377)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=QOG6nOaQTBseW_Ad_7yMUZEUwj_wRRGZ_xlug1B2myw,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=1h4JnVdeZMJcZR-jonXc7nkz9TyNesTCgaykZ8mBEk8,143539
|
|
7
|
+
tencentcloud_sdk_python_apm-3.0.1377.dist-info/METADATA,sha256=GAM1uNJxAUZrRXZNViRv6aCQsyV3J-OYj7z7pCq2It8,1496
|
|
8
|
+
tencentcloud_sdk_python_apm-3.0.1377.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_apm-3.0.1377.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_apm-3.0.1377.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=VDgaxtoE5--DpMTQOJTR2uzsfVE7bOUufn8sEi3Mt9k,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=q1TuI0ZGnzKdRGeBtvW7qGehf7J42ZrUaKIlV3R146A,139999
|
|
7
|
-
tencentcloud_sdk_python_apm-3.0.1373.dist-info/METADATA,sha256=TKQluNbSv7BN2rHSNCmWrBoQFV4Z5xV_wclqYbKEeMk,1496
|
|
8
|
-
tencentcloud_sdk_python_apm-3.0.1373.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_apm-3.0.1373.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_apm-3.0.1373.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|