tencentcloud-sdk-python-apm 3.0.1427__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.1427 → tencentcloud-sdk-python-apm-3.0.1438}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/models.py +15 -0
  5. {tencentcloud-sdk-python-apm-3.0.1427 → 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.1427/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/README.rst +0 -0
  9. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1427 → tencentcloud-sdk-python-apm-3.0.1438}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1427 → 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.1427 → 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.1427
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.1427,<4.0.0"],
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.1427'
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:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1427
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<4.0.0,>=3.0.1427