tencentcloud-sdk-python-apm 3.0.1396__py2.py3-none-any.whl → 3.0.1411__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 +1 -1
- tencentcloud/apm/v20210622/models.py +30 -0
- {tencentcloud_sdk_python_apm-3.0.1396.dist-info → tencentcloud_sdk_python_apm-3.0.1411.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_apm-3.0.1411.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_apm-3.0.1396.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_apm-3.0.1396.dist-info → tencentcloud_sdk_python_apm-3.0.1411.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_apm-3.0.1396.dist-info → tencentcloud_sdk_python_apm-3.0.1411.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -762,6 +762,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
762
762
|
:type LogIndexType: int
|
|
763
763
|
:param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
764
764
|
:type LogTraceIdKey: str
|
|
765
|
+
:param _Token: 业务系统鉴权 token
|
|
766
|
+
:type Token: str
|
|
765
767
|
"""
|
|
766
768
|
self._InstanceId = None
|
|
767
769
|
self._Name = None
|
|
@@ -804,6 +806,7 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
804
806
|
self._IsMemoryHijackingAnalysis = None
|
|
805
807
|
self._LogIndexType = None
|
|
806
808
|
self._LogTraceIdKey = None
|
|
809
|
+
self._Token = None
|
|
807
810
|
|
|
808
811
|
@property
|
|
809
812
|
def InstanceId(self):
|
|
@@ -1262,6 +1265,17 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1262
1265
|
def LogTraceIdKey(self, LogTraceIdKey):
|
|
1263
1266
|
self._LogTraceIdKey = LogTraceIdKey
|
|
1264
1267
|
|
|
1268
|
+
@property
|
|
1269
|
+
def Token(self):
|
|
1270
|
+
"""业务系统鉴权 token
|
|
1271
|
+
:rtype: str
|
|
1272
|
+
"""
|
|
1273
|
+
return self._Token
|
|
1274
|
+
|
|
1275
|
+
@Token.setter
|
|
1276
|
+
def Token(self, Token):
|
|
1277
|
+
self._Token = Token
|
|
1278
|
+
|
|
1265
1279
|
|
|
1266
1280
|
def _deserialize(self, params):
|
|
1267
1281
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1310,6 +1324,7 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1310
1324
|
self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
|
|
1311
1325
|
self._LogIndexType = params.get("LogIndexType")
|
|
1312
1326
|
self._LogTraceIdKey = params.get("LogTraceIdKey")
|
|
1327
|
+
self._Token = params.get("Token")
|
|
1313
1328
|
memeber_set = set(params.keys())
|
|
1314
1329
|
for name, value in vars(self).items():
|
|
1315
1330
|
property_name = name[1:]
|
|
@@ -3633,12 +3648,15 @@ class Line(AbstractModel):
|
|
|
3633
3648
|
:type DataSerial: list of float
|
|
3634
3649
|
:param _Tags: 维度列表
|
|
3635
3650
|
:type Tags: list of ApmTag
|
|
3651
|
+
:param _MetricUnit: 指标数据单位
|
|
3652
|
+
:type MetricUnit: str
|
|
3636
3653
|
"""
|
|
3637
3654
|
self._MetricName = None
|
|
3638
3655
|
self._MetricNameCN = None
|
|
3639
3656
|
self._TimeSerial = None
|
|
3640
3657
|
self._DataSerial = None
|
|
3641
3658
|
self._Tags = None
|
|
3659
|
+
self._MetricUnit = None
|
|
3642
3660
|
|
|
3643
3661
|
@property
|
|
3644
3662
|
def MetricName(self):
|
|
@@ -3695,6 +3713,17 @@ class Line(AbstractModel):
|
|
|
3695
3713
|
def Tags(self, Tags):
|
|
3696
3714
|
self._Tags = Tags
|
|
3697
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
|
+
|
|
3698
3727
|
|
|
3699
3728
|
def _deserialize(self, params):
|
|
3700
3729
|
self._MetricName = params.get("MetricName")
|
|
@@ -3707,6 +3736,7 @@ class Line(AbstractModel):
|
|
|
3707
3736
|
obj = ApmTag()
|
|
3708
3737
|
obj._deserialize(item)
|
|
3709
3738
|
self._Tags.append(obj)
|
|
3739
|
+
self._MetricUnit = params.get("MetricUnit")
|
|
3710
3740
|
memeber_set = set(params.keys())
|
|
3711
3741
|
for name, value in vars(self).items():
|
|
3712
3742
|
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.
|
|
3
|
+
Version: 3.0.1411
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1411)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=E3863ySCct5duHrRFNO1sUAdDcVAsVVkJYn_7EgA2f0,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=nFFknbBdefC-Obq2c7WbkD_zo2g6Q8VpldpTA8d3vDc,13218
|
|
5
|
+
tencentcloud/apm/v20210622/errorcodes.py,sha256=ciIcLaYfEH1s5Yy7P0cVqW9eOtcvLQHi0bcsC-_24ps,5073
|
|
6
|
+
tencentcloud/apm/v20210622/models.py,sha256=1KDex9-lnB32lXIlYCogSrqz5WM_zyVrhgZqtE75v-o,145901
|
|
7
|
+
tencentcloud_sdk_python_apm-3.0.1411.dist-info/METADATA,sha256=Xj0d6nWuRInJTDRNGXTwH7c4JlajeuQ7blAR7JMSysY,1496
|
|
8
|
+
tencentcloud_sdk_python_apm-3.0.1411.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_apm-3.0.1411.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_apm-3.0.1411.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=aQq7OeUiWZ2krYinw5AnSR1-wI877fcbDjhgDMKz-DA,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=nFFknbBdefC-Obq2c7WbkD_zo2g6Q8VpldpTA8d3vDc,13218
|
|
5
|
-
tencentcloud/apm/v20210622/errorcodes.py,sha256=ciIcLaYfEH1s5Yy7P0cVqW9eOtcvLQHi0bcsC-_24ps,5073
|
|
6
|
-
tencentcloud/apm/v20210622/models.py,sha256=VhiqyPS5JXaw6z8iq9p6a5q65rsR6z5zYI0tjGyv77A,145157
|
|
7
|
-
tencentcloud_sdk_python_apm-3.0.1396.dist-info/METADATA,sha256=Pw3B1Y3_WMgE0a-EW7FeDAqHewu7Qdt8pMXqY6ekf8c,1496
|
|
8
|
-
tencentcloud_sdk_python_apm-3.0.1396.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_apm-3.0.1396.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_apm-3.0.1396.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|