tencentcloud-sdk-python-apm 3.0.1438__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 +30 -0
- {tencentcloud_sdk_python_apm-3.0.1438.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.1438.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_apm-3.0.1438.dist-info → tencentcloud_sdk_python_apm-3.0.1449.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_apm-3.0.1438.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:]
|
|
@@ -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=L9ZWJfKuTSRkkepyZo_LE4xEIrV3t8FJ4Mq0rSjpuP0,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=xQxLZhfy2UtvxlprhaFZveBmiOnBgf5WmyZ8qYFrvJY,169805
|
|
7
|
-
tencentcloud_sdk_python_apm-3.0.1438.dist-info/METADATA,sha256=-JERpDSPQdPXUSw0k4mjFvG7KpfNMTRyFY6a8lU-KDY,1503
|
|
8
|
-
tencentcloud_sdk_python_apm-3.0.1438.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_apm-3.0.1438.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_apm-3.0.1438.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|