tencentcloud-sdk-python-apm 3.0.1408__tar.gz → 3.0.1411__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.
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/setup.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud/apm/v20210622/models.py +15 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-apm-3.0.1411/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-apm-3.0.1408/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/README.rst +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/setup.cfg +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1408 → tencentcloud-sdk-python-apm-3.0.1411}/tencentcloud_sdk_python_apm.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1411"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Apm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3648,12 +3648,15 @@ class Line(AbstractModel):
|
|
|
3648
3648
|
:type DataSerial: list of float
|
|
3649
3649
|
:param _Tags: 维度列表
|
|
3650
3650
|
:type Tags: list of ApmTag
|
|
3651
|
+
:param _MetricUnit: 指标数据单位
|
|
3652
|
+
:type MetricUnit: str
|
|
3651
3653
|
"""
|
|
3652
3654
|
self._MetricName = None
|
|
3653
3655
|
self._MetricNameCN = None
|
|
3654
3656
|
self._TimeSerial = None
|
|
3655
3657
|
self._DataSerial = None
|
|
3656
3658
|
self._Tags = None
|
|
3659
|
+
self._MetricUnit = None
|
|
3657
3660
|
|
|
3658
3661
|
@property
|
|
3659
3662
|
def MetricName(self):
|
|
@@ -3710,6 +3713,17 @@ class Line(AbstractModel):
|
|
|
3710
3713
|
def Tags(self, Tags):
|
|
3711
3714
|
self._Tags = Tags
|
|
3712
3715
|
|
|
3716
|
+
@property
|
|
3717
|
+
def MetricUnit(self):
|
|
3718
|
+
"""指标数据单位
|
|
3719
|
+
:rtype: str
|
|
3720
|
+
"""
|
|
3721
|
+
return self._MetricUnit
|
|
3722
|
+
|
|
3723
|
+
@MetricUnit.setter
|
|
3724
|
+
def MetricUnit(self, MetricUnit):
|
|
3725
|
+
self._MetricUnit = MetricUnit
|
|
3726
|
+
|
|
3713
3727
|
|
|
3714
3728
|
def _deserialize(self, params):
|
|
3715
3729
|
self._MetricName = params.get("MetricName")
|
|
@@ -3722,6 +3736,7 @@ class Line(AbstractModel):
|
|
|
3722
3736
|
obj = ApmTag()
|
|
3723
3737
|
obj._deserialize(item)
|
|
3724
3738
|
self._Tags.append(obj)
|
|
3739
|
+
self._MetricUnit = params.get("MetricUnit")
|
|
3725
3740
|
memeber_set = set(params.keys())
|
|
3726
3741
|
for name, value in vars(self).items():
|
|
3727
3742
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1411
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1408
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|