tencentcloud-sdk-python-apm 3.0.1416__tar.gz → 3.0.1438__tar.gz

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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/models.py +75 -0
  5. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-apm-3.0.1438/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-apm-3.0.1416/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/README.rst +0 -0
  9. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-apm-3.0.1416 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud_sdk_python_apm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1416
3
+ Version: 3.0.1438
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
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-apm',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1416"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1438,<4.0.0"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Apm SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1416'
17
+ __version__ = '3.0.1438'
@@ -563,6 +563,8 @@ class ApmField(AbstractModel):
563
563
  :type LastPeriodValue: list of APMKV
564
564
  :param _CompareVal: 同比指标值,已弃用,不建议使用
565
565
  :type CompareVal: str
566
+ :param _NameCN: 指标中文名
567
+ :type NameCN: str
566
568
  """
567
569
  self._Key = None
568
570
  self._Value = None
@@ -570,6 +572,7 @@ class ApmField(AbstractModel):
570
572
  self._CompareVals = None
571
573
  self._LastPeriodValue = None
572
574
  self._CompareVal = None
575
+ self._NameCN = None
573
576
 
574
577
  @property
575
578
  def Key(self):
@@ -639,6 +642,17 @@ class ApmField(AbstractModel):
639
642
  def CompareVal(self, CompareVal):
640
643
  self._CompareVal = CompareVal
641
644
 
645
+ @property
646
+ def NameCN(self):
647
+ """指标中文名
648
+ :rtype: str
649
+ """
650
+ return self._NameCN
651
+
652
+ @NameCN.setter
653
+ def NameCN(self, NameCN):
654
+ self._NameCN = NameCN
655
+
642
656
 
643
657
  def _deserialize(self, params):
644
658
  self._Key = params.get("Key")
@@ -657,6 +671,7 @@ class ApmField(AbstractModel):
657
671
  obj._deserialize(item)
658
672
  self._LastPeriodValue.append(obj)
659
673
  self._CompareVal = params.get("CompareVal")
674
+ self._NameCN = params.get("NameCN")
660
675
  memeber_set = set(params.keys())
661
676
  for name, value in vars(self).items():
662
677
  property_name = name[1:]
@@ -788,6 +803,10 @@ class ApmInstanceDetail(AbstractModel):
788
803
  :type IsDeserializationAnalysis: int
789
804
  :param _Token: 业务系统鉴权 token
790
805
  :type Token: str
806
+ :param _UrlLongSegmentThreshold: URL长分段收敛阈值
807
+ :type UrlLongSegmentThreshold: int
808
+ :param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
809
+ :type UrlNumberSegmentThreshold: int
791
810
  """
792
811
  self._InstanceId = None
793
812
  self._Name = None
@@ -843,6 +862,8 @@ class ApmInstanceDetail(AbstractModel):
843
862
  self._IsWebshellBackdoorAnalysis = None
844
863
  self._IsDeserializationAnalysis = None
845
864
  self._Token = None
865
+ self._UrlLongSegmentThreshold = None
866
+ self._UrlNumberSegmentThreshold = None
846
867
 
847
868
  @property
848
869
  def InstanceId(self):
@@ -1444,6 +1465,28 @@ class ApmInstanceDetail(AbstractModel):
1444
1465
  def Token(self, Token):
1445
1466
  self._Token = Token
1446
1467
 
1468
+ @property
1469
+ def UrlLongSegmentThreshold(self):
1470
+ """URL长分段收敛阈值
1471
+ :rtype: int
1472
+ """
1473
+ return self._UrlLongSegmentThreshold
1474
+
1475
+ @UrlLongSegmentThreshold.setter
1476
+ def UrlLongSegmentThreshold(self, UrlLongSegmentThreshold):
1477
+ self._UrlLongSegmentThreshold = UrlLongSegmentThreshold
1478
+
1479
+ @property
1480
+ def UrlNumberSegmentThreshold(self):
1481
+ """URL数字分段收敛阈值
1482
+ :rtype: int
1483
+ """
1484
+ return self._UrlNumberSegmentThreshold
1485
+
1486
+ @UrlNumberSegmentThreshold.setter
1487
+ def UrlNumberSegmentThreshold(self, UrlNumberSegmentThreshold):
1488
+ self._UrlNumberSegmentThreshold = UrlNumberSegmentThreshold
1489
+
1447
1490
 
1448
1491
  def _deserialize(self, params):
1449
1492
  self._InstanceId = params.get("InstanceId")
@@ -1505,6 +1548,8 @@ class ApmInstanceDetail(AbstractModel):
1505
1548
  self._IsWebshellBackdoorAnalysis = params.get("IsWebshellBackdoorAnalysis")
1506
1549
  self._IsDeserializationAnalysis = params.get("IsDeserializationAnalysis")
1507
1550
  self._Token = params.get("Token")
1551
+ self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
1552
+ self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
1508
1553
  memeber_set = set(params.keys())
1509
1554
  for name, value in vars(self).items():
1510
1555
  property_name = name[1:]
@@ -4198,6 +4243,10 @@ class ModifyApmInstanceRequest(AbstractModel):
4198
4243
  :type IsWebshellBackdoorAnalysis: int
4199
4244
  :param _IsDeserializationAnalysis: 是否开启反序列化检测(0-关闭,1-开启)
4200
4245
  :type IsDeserializationAnalysis: int
4246
+ :param _UrlLongSegmentThreshold: URL长分段收敛阈值
4247
+ :type UrlLongSegmentThreshold: int
4248
+ :param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
4249
+ :type UrlNumberSegmentThreshold: int
4201
4250
  """
4202
4251
  self._InstanceId = None
4203
4252
  self._Name = None
@@ -4239,6 +4288,8 @@ class ModifyApmInstanceRequest(AbstractModel):
4239
4288
  self._IsJNIInjectionAnalysis = None
4240
4289
  self._IsWebshellBackdoorAnalysis = None
4241
4290
  self._IsDeserializationAnalysis = None
4291
+ self._UrlLongSegmentThreshold = None
4292
+ self._UrlNumberSegmentThreshold = None
4242
4293
 
4243
4294
  @property
4244
4295
  def InstanceId(self):
@@ -4680,6 +4731,28 @@ class ModifyApmInstanceRequest(AbstractModel):
4680
4731
  def IsDeserializationAnalysis(self, IsDeserializationAnalysis):
4681
4732
  self._IsDeserializationAnalysis = IsDeserializationAnalysis
4682
4733
 
4734
+ @property
4735
+ def UrlLongSegmentThreshold(self):
4736
+ """URL长分段收敛阈值
4737
+ :rtype: int
4738
+ """
4739
+ return self._UrlLongSegmentThreshold
4740
+
4741
+ @UrlLongSegmentThreshold.setter
4742
+ def UrlLongSegmentThreshold(self, UrlLongSegmentThreshold):
4743
+ self._UrlLongSegmentThreshold = UrlLongSegmentThreshold
4744
+
4745
+ @property
4746
+ def UrlNumberSegmentThreshold(self):
4747
+ """URL数字分段收敛阈值
4748
+ :rtype: int
4749
+ """
4750
+ return self._UrlNumberSegmentThreshold
4751
+
4752
+ @UrlNumberSegmentThreshold.setter
4753
+ def UrlNumberSegmentThreshold(self, UrlNumberSegmentThreshold):
4754
+ self._UrlNumberSegmentThreshold = UrlNumberSegmentThreshold
4755
+
4683
4756
 
4684
4757
  def _deserialize(self, params):
4685
4758
  self._InstanceId = params.get("InstanceId")
@@ -4727,6 +4800,8 @@ class ModifyApmInstanceRequest(AbstractModel):
4727
4800
  self._IsJNIInjectionAnalysis = params.get("IsJNIInjectionAnalysis")
4728
4801
  self._IsWebshellBackdoorAnalysis = params.get("IsWebshellBackdoorAnalysis")
4729
4802
  self._IsDeserializationAnalysis = params.get("IsDeserializationAnalysis")
4803
+ self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
4804
+ self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
4730
4805
  memeber_set = set(params.keys())
4731
4806
  for name, value in vars(self).items():
4732
4807
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1416
3
+ Version: 3.0.1438
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.0.1438
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1416