tencentcloud-sdk-python-apm 3.0.1449__tar.gz → 3.0.1458__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.1449 → tencentcloud-sdk-python-apm-3.0.1458}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud/apm/v20210622/models.py +15 -0
  5. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-apm-3.0.1458/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-apm-3.0.1449/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/README.rst +0 -0
  9. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud/apm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud/apm/v20210622/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-apm-3.0.1449 → tencentcloud-sdk-python-apm-3.0.1458}/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.1449
3
+ Version: 3.0.1458
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.1449,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1458,<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.1449'
17
+ __version__ = '3.0.1458'
@@ -595,6 +595,8 @@ class ApmField(AbstractModel):
595
595
  :type CompareVal: str
596
596
  :param _NameCN: 指标中文名
597
597
  :type NameCN: str
598
+ :param _NameEN: 指标英文名
599
+ :type NameEN: str
598
600
  """
599
601
  self._Key = None
600
602
  self._Value = None
@@ -603,6 +605,7 @@ class ApmField(AbstractModel):
603
605
  self._LastPeriodValue = None
604
606
  self._CompareVal = None
605
607
  self._NameCN = None
608
+ self._NameEN = None
606
609
 
607
610
  @property
608
611
  def Key(self):
@@ -683,6 +686,17 @@ class ApmField(AbstractModel):
683
686
  def NameCN(self, NameCN):
684
687
  self._NameCN = NameCN
685
688
 
689
+ @property
690
+ def NameEN(self):
691
+ """指标英文名
692
+ :rtype: str
693
+ """
694
+ return self._NameEN
695
+
696
+ @NameEN.setter
697
+ def NameEN(self, NameEN):
698
+ self._NameEN = NameEN
699
+
686
700
 
687
701
  def _deserialize(self, params):
688
702
  self._Key = params.get("Key")
@@ -702,6 +716,7 @@ class ApmField(AbstractModel):
702
716
  self._LastPeriodValue.append(obj)
703
717
  self._CompareVal = params.get("CompareVal")
704
718
  self._NameCN = params.get("NameCN")
719
+ self._NameEN = params.get("NameEN")
705
720
  memeber_set = set(params.keys())
706
721
  for name, value in vars(self).items():
707
722
  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.1449
3
+ Version: 3.0.1458
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.1458
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1449