tencentcloud-sdk-python-apm 3.0.1415__py2.py3-none-any.whl → 3.0.1427__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.1415'
17
+ __version__ = '3.0.1427'
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -788,6 +788,10 @@ class ApmInstanceDetail(AbstractModel):
788
788
  :type IsDeserializationAnalysis: int
789
789
  :param _Token: 业务系统鉴权 token
790
790
  :type Token: str
791
+ :param _UrlLongSegmentThreshold: URL长分段收敛阈值
792
+ :type UrlLongSegmentThreshold: int
793
+ :param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
794
+ :type UrlNumberSegmentThreshold: int
791
795
  """
792
796
  self._InstanceId = None
793
797
  self._Name = None
@@ -843,6 +847,8 @@ class ApmInstanceDetail(AbstractModel):
843
847
  self._IsWebshellBackdoorAnalysis = None
844
848
  self._IsDeserializationAnalysis = None
845
849
  self._Token = None
850
+ self._UrlLongSegmentThreshold = None
851
+ self._UrlNumberSegmentThreshold = None
846
852
 
847
853
  @property
848
854
  def InstanceId(self):
@@ -1444,6 +1450,28 @@ class ApmInstanceDetail(AbstractModel):
1444
1450
  def Token(self, Token):
1445
1451
  self._Token = Token
1446
1452
 
1453
+ @property
1454
+ def UrlLongSegmentThreshold(self):
1455
+ """URL长分段收敛阈值
1456
+ :rtype: int
1457
+ """
1458
+ return self._UrlLongSegmentThreshold
1459
+
1460
+ @UrlLongSegmentThreshold.setter
1461
+ def UrlLongSegmentThreshold(self, UrlLongSegmentThreshold):
1462
+ self._UrlLongSegmentThreshold = UrlLongSegmentThreshold
1463
+
1464
+ @property
1465
+ def UrlNumberSegmentThreshold(self):
1466
+ """URL数字分段收敛阈值
1467
+ :rtype: int
1468
+ """
1469
+ return self._UrlNumberSegmentThreshold
1470
+
1471
+ @UrlNumberSegmentThreshold.setter
1472
+ def UrlNumberSegmentThreshold(self, UrlNumberSegmentThreshold):
1473
+ self._UrlNumberSegmentThreshold = UrlNumberSegmentThreshold
1474
+
1447
1475
 
1448
1476
  def _deserialize(self, params):
1449
1477
  self._InstanceId = params.get("InstanceId")
@@ -1505,6 +1533,8 @@ class ApmInstanceDetail(AbstractModel):
1505
1533
  self._IsWebshellBackdoorAnalysis = params.get("IsWebshellBackdoorAnalysis")
1506
1534
  self._IsDeserializationAnalysis = params.get("IsDeserializationAnalysis")
1507
1535
  self._Token = params.get("Token")
1536
+ self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
1537
+ self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
1508
1538
  memeber_set = set(params.keys())
1509
1539
  for name, value in vars(self).items():
1510
1540
  property_name = name[1:]
@@ -4198,6 +4228,10 @@ class ModifyApmInstanceRequest(AbstractModel):
4198
4228
  :type IsWebshellBackdoorAnalysis: int
4199
4229
  :param _IsDeserializationAnalysis: 是否开启反序列化检测(0-关闭,1-开启)
4200
4230
  :type IsDeserializationAnalysis: int
4231
+ :param _UrlLongSegmentThreshold: URL长分段收敛阈值
4232
+ :type UrlLongSegmentThreshold: int
4233
+ :param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
4234
+ :type UrlNumberSegmentThreshold: int
4201
4235
  """
4202
4236
  self._InstanceId = None
4203
4237
  self._Name = None
@@ -4239,6 +4273,8 @@ class ModifyApmInstanceRequest(AbstractModel):
4239
4273
  self._IsJNIInjectionAnalysis = None
4240
4274
  self._IsWebshellBackdoorAnalysis = None
4241
4275
  self._IsDeserializationAnalysis = None
4276
+ self._UrlLongSegmentThreshold = None
4277
+ self._UrlNumberSegmentThreshold = None
4242
4278
 
4243
4279
  @property
4244
4280
  def InstanceId(self):
@@ -4680,6 +4716,28 @@ class ModifyApmInstanceRequest(AbstractModel):
4680
4716
  def IsDeserializationAnalysis(self, IsDeserializationAnalysis):
4681
4717
  self._IsDeserializationAnalysis = IsDeserializationAnalysis
4682
4718
 
4719
+ @property
4720
+ def UrlLongSegmentThreshold(self):
4721
+ """URL长分段收敛阈值
4722
+ :rtype: int
4723
+ """
4724
+ return self._UrlLongSegmentThreshold
4725
+
4726
+ @UrlLongSegmentThreshold.setter
4727
+ def UrlLongSegmentThreshold(self, UrlLongSegmentThreshold):
4728
+ self._UrlLongSegmentThreshold = UrlLongSegmentThreshold
4729
+
4730
+ @property
4731
+ def UrlNumberSegmentThreshold(self):
4732
+ """URL数字分段收敛阈值
4733
+ :rtype: int
4734
+ """
4735
+ return self._UrlNumberSegmentThreshold
4736
+
4737
+ @UrlNumberSegmentThreshold.setter
4738
+ def UrlNumberSegmentThreshold(self, UrlNumberSegmentThreshold):
4739
+ self._UrlNumberSegmentThreshold = UrlNumberSegmentThreshold
4740
+
4683
4741
 
4684
4742
  def _deserialize(self, params):
4685
4743
  self._InstanceId = params.get("InstanceId")
@@ -4727,6 +4785,8 @@ class ModifyApmInstanceRequest(AbstractModel):
4727
4785
  self._IsJNIInjectionAnalysis = params.get("IsJNIInjectionAnalysis")
4728
4786
  self._IsWebshellBackdoorAnalysis = params.get("IsWebshellBackdoorAnalysis")
4729
4787
  self._IsDeserializationAnalysis = params.get("IsDeserializationAnalysis")
4788
+ self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
4789
+ self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
4730
4790
  memeber_set = set(params.keys())
4731
4791
  for name, value in vars(self).items():
4732
4792
  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.1415
3
+ Version: 3.0.1427
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.1415)
18
+ Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1427)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=f1iij0Y4CXOEqqB8aK9o40ZEt_EB7FvkFL34WiRI1tU,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=fosxP_2A5_upnzw-2Z0s_yuq1GkanfX1ehzKGL9J9rg,14060
5
+ tencentcloud/apm/v20210622/errorcodes.py,sha256=2q8PS4hm8homGP4ub10LhJQ_fvk4vpOB5SJfo0hWS9M,5282
6
+ tencentcloud/apm/v20210622/models.py,sha256=V8pxJWdP1a0wOj9k81us_h_2ZDpOLfKSOkt5UYA47f8,169463
7
+ tencentcloud_sdk_python_apm-3.0.1427.dist-info/METADATA,sha256=mo3_Tvbn9h38z4l73_fpRSgw2rNq-9BTH02W61vKbYc,1503
8
+ tencentcloud_sdk_python_apm-3.0.1427.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_apm-3.0.1427.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_apm-3.0.1427.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=he7CccLZ5YtPUymIh1eDwWvm0VG8KwZD3Mnb7l2vAAA,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=iyaAjNSQwHn2_650ZeLCqizJXlJ6VhcJY9ZD-Mu9Y9M,14087
5
- tencentcloud/apm/v20210622/errorcodes.py,sha256=VJodLF4nluYGLaxCulZPN_thSrKSm6UMpPnl_dF8P24,5309
6
- tencentcloud/apm/v20210622/models.py,sha256=dvH6ZUvO3PrN8vYj1XMqVu8E8EdrCA3_biEpLuq6QiM,167174
7
- tencentcloud_sdk_python_apm-3.0.1415.dist-info/METADATA,sha256=gtZObjE6p_C_grxX-hTpF3BmewCBwyLs3k33ebAhvoU,1496
8
- tencentcloud_sdk_python_apm-3.0.1415.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_apm-3.0.1415.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_apm-3.0.1415.dist-info/RECORD,,