tencentcloud-sdk-python-apm 3.0.1427__py2.py3-none-any.whl → 3.0.1449__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 +45 -0
- {tencentcloud_sdk_python_apm-3.0.1427.dist-info → tencentcloud_sdk_python_apm-3.0.1449.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_apm-3.0.1449.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_apm-3.0.1427.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_apm-3.0.1427.dist-info → tencentcloud_sdk_python_apm-3.0.1449.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_apm-3.0.1427.dist-info → tencentcloud_sdk_python_apm-3.0.1449.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -276,6 +276,10 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
276
276
|
:type InstrumentList: list of Instrument
|
|
277
277
|
:param _TraceSquash: 链路压缩开关(已废弃)
|
|
278
278
|
:type TraceSquash: bool
|
|
279
|
+
:param _DisableMemoryUsed: 探针熔断内存阈值
|
|
280
|
+
:type DisableMemoryUsed: int
|
|
281
|
+
:param _DisableCpuUsed: 探针熔断CPU阈值
|
|
282
|
+
:type DisableCpuUsed: int
|
|
279
283
|
"""
|
|
280
284
|
self._InstanceKey = None
|
|
281
285
|
self._ServiceName = None
|
|
@@ -296,6 +300,8 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
296
300
|
self._AgentEnable = None
|
|
297
301
|
self._InstrumentList = None
|
|
298
302
|
self._TraceSquash = None
|
|
303
|
+
self._DisableMemoryUsed = None
|
|
304
|
+
self._DisableCpuUsed = None
|
|
299
305
|
|
|
300
306
|
@property
|
|
301
307
|
def InstanceKey(self):
|
|
@@ -506,6 +512,28 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
506
512
|
def TraceSquash(self, TraceSquash):
|
|
507
513
|
self._TraceSquash = TraceSquash
|
|
508
514
|
|
|
515
|
+
@property
|
|
516
|
+
def DisableMemoryUsed(self):
|
|
517
|
+
"""探针熔断内存阈值
|
|
518
|
+
:rtype: int
|
|
519
|
+
"""
|
|
520
|
+
return self._DisableMemoryUsed
|
|
521
|
+
|
|
522
|
+
@DisableMemoryUsed.setter
|
|
523
|
+
def DisableMemoryUsed(self, DisableMemoryUsed):
|
|
524
|
+
self._DisableMemoryUsed = DisableMemoryUsed
|
|
525
|
+
|
|
526
|
+
@property
|
|
527
|
+
def DisableCpuUsed(self):
|
|
528
|
+
"""探针熔断CPU阈值
|
|
529
|
+
:rtype: int
|
|
530
|
+
"""
|
|
531
|
+
return self._DisableCpuUsed
|
|
532
|
+
|
|
533
|
+
@DisableCpuUsed.setter
|
|
534
|
+
def DisableCpuUsed(self, DisableCpuUsed):
|
|
535
|
+
self._DisableCpuUsed = DisableCpuUsed
|
|
536
|
+
|
|
509
537
|
|
|
510
538
|
def _deserialize(self, params):
|
|
511
539
|
self._InstanceKey = params.get("InstanceKey")
|
|
@@ -532,6 +560,8 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
532
560
|
obj._deserialize(item)
|
|
533
561
|
self._InstrumentList.append(obj)
|
|
534
562
|
self._TraceSquash = params.get("TraceSquash")
|
|
563
|
+
self._DisableMemoryUsed = params.get("DisableMemoryUsed")
|
|
564
|
+
self._DisableCpuUsed = params.get("DisableCpuUsed")
|
|
535
565
|
memeber_set = set(params.keys())
|
|
536
566
|
for name, value in vars(self).items():
|
|
537
567
|
property_name = name[1:]
|
|
@@ -563,6 +593,8 @@ class ApmField(AbstractModel):
|
|
|
563
593
|
:type LastPeriodValue: list of APMKV
|
|
564
594
|
:param _CompareVal: 同比指标值,已弃用,不建议使用
|
|
565
595
|
:type CompareVal: str
|
|
596
|
+
:param _NameCN: 指标中文名
|
|
597
|
+
:type NameCN: str
|
|
566
598
|
"""
|
|
567
599
|
self._Key = None
|
|
568
600
|
self._Value = None
|
|
@@ -570,6 +602,7 @@ class ApmField(AbstractModel):
|
|
|
570
602
|
self._CompareVals = None
|
|
571
603
|
self._LastPeriodValue = None
|
|
572
604
|
self._CompareVal = None
|
|
605
|
+
self._NameCN = None
|
|
573
606
|
|
|
574
607
|
@property
|
|
575
608
|
def Key(self):
|
|
@@ -639,6 +672,17 @@ class ApmField(AbstractModel):
|
|
|
639
672
|
def CompareVal(self, CompareVal):
|
|
640
673
|
self._CompareVal = CompareVal
|
|
641
674
|
|
|
675
|
+
@property
|
|
676
|
+
def NameCN(self):
|
|
677
|
+
"""指标中文名
|
|
678
|
+
:rtype: str
|
|
679
|
+
"""
|
|
680
|
+
return self._NameCN
|
|
681
|
+
|
|
682
|
+
@NameCN.setter
|
|
683
|
+
def NameCN(self, NameCN):
|
|
684
|
+
self._NameCN = NameCN
|
|
685
|
+
|
|
642
686
|
|
|
643
687
|
def _deserialize(self, params):
|
|
644
688
|
self._Key = params.get("Key")
|
|
@@ -657,6 +701,7 @@ class ApmField(AbstractModel):
|
|
|
657
701
|
obj._deserialize(item)
|
|
658
702
|
self._LastPeriodValue.append(obj)
|
|
659
703
|
self._CompareVal = params.get("CompareVal")
|
|
704
|
+
self._NameCN = params.get("NameCN")
|
|
660
705
|
memeber_set = set(params.keys())
|
|
661
706
|
for name, value in vars(self).items():
|
|
662
707
|
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.1449
|
|
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 (<4.0.0,>=3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1449)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=KIcgFWpDocIcuYndKE11-cJLKP6dsPwPmQW42xCLKac,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=fosxP_2A5_upnzw-2Z0s_yuq1GkanfX1ehzKGL9J9rg,14060
|
|
5
|
+
tencentcloud/apm/v20210622/errorcodes.py,sha256=2q8PS4hm8homGP4ub10LhJQ_fvk4vpOB5SJfo0hWS9M,5282
|
|
6
|
+
tencentcloud/apm/v20210622/models.py,sha256=OY9k-tpcsUhKIREO7isz4ei6j9_QA3F_ZA3eX1hqK4g,170747
|
|
7
|
+
tencentcloud_sdk_python_apm-3.0.1449.dist-info/METADATA,sha256=irAIPFV1WPpAKPnkCvZgaT20Zghi4CeJXYfghWQLQIw,1503
|
|
8
|
+
tencentcloud_sdk_python_apm-3.0.1449.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_apm-3.0.1449.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_apm-3.0.1449.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=f1iij0Y4CXOEqqB8aK9o40ZEt_EB7FvkFL34WiRI1tU,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=fosxP_2A5_upnzw-2Z0s_yuq1GkanfX1ehzKGL9J9rg,14060
|
|
5
|
-
tencentcloud/apm/v20210622/errorcodes.py,sha256=2q8PS4hm8homGP4ub10LhJQ_fvk4vpOB5SJfo0hWS9M,5282
|
|
6
|
-
tencentcloud/apm/v20210622/models.py,sha256=V8pxJWdP1a0wOj9k81us_h_2ZDpOLfKSOkt5UYA47f8,169463
|
|
7
|
-
tencentcloud_sdk_python_apm-3.0.1427.dist-info/METADATA,sha256=mo3_Tvbn9h38z4l73_fpRSgw2rNq-9BTH02W61vKbYc,1503
|
|
8
|
-
tencentcloud_sdk_python_apm-3.0.1427.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_apm-3.0.1427.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_apm-3.0.1427.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|