tencentcloud-sdk-python-apm 3.0.1374__py2.py3-none-any.whl → 3.0.1385__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1374'
17
+ __version__ = '3.0.1385'
@@ -754,6 +754,14 @@ 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
761
+ :param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
762
+ :type LogIndexType: int
763
+ :param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
764
+ :type LogTraceIdKey: str
757
765
  """
758
766
  self._InstanceId = None
759
767
  self._Name = None
@@ -792,6 +800,10 @@ class ApmInstanceDetail(AbstractModel):
792
800
  self._IsInstrumentationVulnerabilityScan = None
793
801
  self._IsSqlInjectionAnalysis = None
794
802
  self._StopReason = None
803
+ self._IsRemoteCommandExecutionAnalysis = None
804
+ self._IsMemoryHijackingAnalysis = None
805
+ self._LogIndexType = None
806
+ self._LogTraceIdKey = None
795
807
 
796
808
  @property
797
809
  def InstanceId(self):
@@ -1206,6 +1218,50 @@ class ApmInstanceDetail(AbstractModel):
1206
1218
  def StopReason(self, StopReason):
1207
1219
  self._StopReason = StopReason
1208
1220
 
1221
+ @property
1222
+ def IsRemoteCommandExecutionAnalysis(self):
1223
+ """是否开远程命令执行检测(0=关, 1=开)
1224
+ :rtype: int
1225
+ """
1226
+ return self._IsRemoteCommandExecutionAnalysis
1227
+
1228
+ @IsRemoteCommandExecutionAnalysis.setter
1229
+ def IsRemoteCommandExecutionAnalysis(self, IsRemoteCommandExecutionAnalysis):
1230
+ self._IsRemoteCommandExecutionAnalysis = IsRemoteCommandExecutionAnalysis
1231
+
1232
+ @property
1233
+ def IsMemoryHijackingAnalysis(self):
1234
+ """是否开内存马执行检测(0=关, 1=开)
1235
+ :rtype: int
1236
+ """
1237
+ return self._IsMemoryHijackingAnalysis
1238
+
1239
+ @IsMemoryHijackingAnalysis.setter
1240
+ def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
1241
+ self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
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
+
1209
1265
 
1210
1266
  def _deserialize(self, params):
1211
1267
  self._InstanceId = params.get("InstanceId")
@@ -1250,6 +1306,10 @@ class ApmInstanceDetail(AbstractModel):
1250
1306
  self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
1251
1307
  self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
1252
1308
  self._StopReason = params.get("StopReason")
1309
+ self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
1310
+ self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
1311
+ self._LogIndexType = params.get("LogIndexType")
1312
+ self._LogTraceIdKey = params.get("LogTraceIdKey")
1253
1313
  memeber_set = set(params.keys())
1254
1314
  for name, value in vars(self).items():
1255
1315
  property_name = name[1:]
@@ -3697,6 +3757,14 @@ class ModifyApmInstanceRequest(AbstractModel):
3697
3757
  :type IsSqlInjectionAnalysis: int
3698
3758
  :param _IsInstrumentationVulnerabilityScan: 是否开启组件漏洞检测(0=关,1=开)
3699
3759
  :type IsInstrumentationVulnerabilityScan: int
3760
+ :param _IsRemoteCommandExecutionAnalysis: 是否开启远程命令攻击检测
3761
+ :type IsRemoteCommandExecutionAnalysis: int
3762
+ :param _IsMemoryHijackingAnalysis: 是否开启内存马检测
3763
+ :type IsMemoryHijackingAnalysis: int
3764
+ :param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
3765
+ :type LogIndexType: int
3766
+ :param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
3767
+ :type LogTraceIdKey: str
3700
3768
  """
3701
3769
  self._InstanceId = None
3702
3770
  self._Name = None
@@ -3722,6 +3790,10 @@ class ModifyApmInstanceRequest(AbstractModel):
3722
3790
  self._DashboardTopicID = None
3723
3791
  self._IsSqlInjectionAnalysis = None
3724
3792
  self._IsInstrumentationVulnerabilityScan = None
3793
+ self._IsRemoteCommandExecutionAnalysis = None
3794
+ self._IsMemoryHijackingAnalysis = None
3795
+ self._LogIndexType = None
3796
+ self._LogTraceIdKey = None
3725
3797
 
3726
3798
  @property
3727
3799
  def InstanceId(self):
@@ -3987,6 +4059,50 @@ class ModifyApmInstanceRequest(AbstractModel):
3987
4059
  def IsInstrumentationVulnerabilityScan(self, IsInstrumentationVulnerabilityScan):
3988
4060
  self._IsInstrumentationVulnerabilityScan = IsInstrumentationVulnerabilityScan
3989
4061
 
4062
+ @property
4063
+ def IsRemoteCommandExecutionAnalysis(self):
4064
+ """是否开启远程命令攻击检测
4065
+ :rtype: int
4066
+ """
4067
+ return self._IsRemoteCommandExecutionAnalysis
4068
+
4069
+ @IsRemoteCommandExecutionAnalysis.setter
4070
+ def IsRemoteCommandExecutionAnalysis(self, IsRemoteCommandExecutionAnalysis):
4071
+ self._IsRemoteCommandExecutionAnalysis = IsRemoteCommandExecutionAnalysis
4072
+
4073
+ @property
4074
+ def IsMemoryHijackingAnalysis(self):
4075
+ """是否开启内存马检测
4076
+ :rtype: int
4077
+ """
4078
+ return self._IsMemoryHijackingAnalysis
4079
+
4080
+ @IsMemoryHijackingAnalysis.setter
4081
+ def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
4082
+ self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
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
+
3990
4106
 
3991
4107
  def _deserialize(self, params):
3992
4108
  self._InstanceId = params.get("InstanceId")
@@ -4018,6 +4134,10 @@ class ModifyApmInstanceRequest(AbstractModel):
4018
4134
  self._DashboardTopicID = params.get("DashboardTopicID")
4019
4135
  self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
4020
4136
  self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
4137
+ self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
4138
+ self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
4139
+ self._LogIndexType = params.get("LogIndexType")
4140
+ self._LogTraceIdKey = params.get("LogTraceIdKey")
4021
4141
  memeber_set = set(params.keys())
4022
4142
  for name, value in vars(self).items():
4023
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.1374
3
+ Version: 3.0.1385
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.1374)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1385)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=mqRzA54xCLAXZMSsQG-FyS1nCCBBDzjYkD-lkTsPb64,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.1385.dist-info/METADATA,sha256=kuqBuLBM8ZU8gOUHZmojJSjohgJhBuJXvlZ9xX778k4,1496
8
+ tencentcloud_sdk_python_apm-3.0.1385.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_apm-3.0.1385.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_apm-3.0.1385.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=CvoCNO4FZjddn7Ydjpg3-LGcZZSfmlKWu7fctstoSqU,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.1374.dist-info/METADATA,sha256=T2mJhbhuwL3FDIZ6Cd2WTld0JAMOicWd2YwPL6vWDPY,1496
8
- tencentcloud_sdk_python_apm-3.0.1374.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_apm-3.0.1374.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_apm-3.0.1374.dist-info/RECORD,,