tencentcloud-sdk-python-apm 3.0.1229__tar.gz → 3.0.1231__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.1229 → tencentcloud-sdk-python-apm-3.0.1231}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/setup.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud/apm/v20210622/errorcodes.py +3 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud/apm/v20210622/models.py +25 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-apm-3.0.1231/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-apm-3.0.1229/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/README.rst +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/setup.cfg +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1229 → tencentcloud-sdk-python-apm-3.0.1231}/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.1231"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Apm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -50,6 +50,9 @@ FAILEDOPERATION_DUPLICATESERVICE = 'FailedOperation.DuplicateService'
|
|
|
50
50
|
# 请勿填写重复的标签名
|
|
51
51
|
FAILEDOPERATION_DUPLICATETAGFIELD = 'FailedOperation.DuplicateTagField'
|
|
52
52
|
|
|
53
|
+
# 该实例不允许修改
|
|
54
|
+
FAILEDOPERATION_INSTANCECANNOTMODIFY = 'FailedOperation.InstanceCannotModify'
|
|
55
|
+
|
|
53
56
|
# 实例ID为空。
|
|
54
57
|
FAILEDOPERATION_INSTANCEIDISEMPTY = 'FailedOperation.InstanceIdIsEmpty'
|
|
55
58
|
|
|
@@ -670,6 +670,9 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
670
670
|
:param _PayModeEffective: 实例计费模式是否生效
|
|
671
671
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
672
672
|
:type PayModeEffective: bool
|
|
673
|
+
:param _ResponseDurationWarningThreshold: 响应时间满意阈值
|
|
674
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
675
|
+
:type ResponseDurationWarningThreshold: int
|
|
673
676
|
"""
|
|
674
677
|
self._AmountOfUsedStorage = None
|
|
675
678
|
self._Name = None
|
|
@@ -700,6 +703,7 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
700
703
|
self._CustomShowTags = None
|
|
701
704
|
self._PayMode = None
|
|
702
705
|
self._PayModeEffective = None
|
|
706
|
+
self._ResponseDurationWarningThreshold = None
|
|
703
707
|
|
|
704
708
|
@property
|
|
705
709
|
def AmountOfUsedStorage(self):
|
|
@@ -933,6 +937,14 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
933
937
|
def PayModeEffective(self, PayModeEffective):
|
|
934
938
|
self._PayModeEffective = PayModeEffective
|
|
935
939
|
|
|
940
|
+
@property
|
|
941
|
+
def ResponseDurationWarningThreshold(self):
|
|
942
|
+
return self._ResponseDurationWarningThreshold
|
|
943
|
+
|
|
944
|
+
@ResponseDurationWarningThreshold.setter
|
|
945
|
+
def ResponseDurationWarningThreshold(self, ResponseDurationWarningThreshold):
|
|
946
|
+
self._ResponseDurationWarningThreshold = ResponseDurationWarningThreshold
|
|
947
|
+
|
|
936
948
|
|
|
937
949
|
def _deserialize(self, params):
|
|
938
950
|
self._AmountOfUsedStorage = params.get("AmountOfUsedStorage")
|
|
@@ -969,6 +981,7 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
969
981
|
self._CustomShowTags = params.get("CustomShowTags")
|
|
970
982
|
self._PayMode = params.get("PayMode")
|
|
971
983
|
self._PayModeEffective = params.get("PayModeEffective")
|
|
984
|
+
self._ResponseDurationWarningThreshold = params.get("ResponseDurationWarningThreshold")
|
|
972
985
|
memeber_set = set(params.keys())
|
|
973
986
|
for name, value in vars(self).items():
|
|
974
987
|
property_name = name[1:]
|
|
@@ -2816,6 +2829,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2816
2829
|
1为预付费
|
|
2817
2830
|
0为按量付费
|
|
2818
2831
|
:type PayMode: int
|
|
2832
|
+
:param _ResponseDurationWarningThreshold: 响应时间满意阈值
|
|
2833
|
+
:type ResponseDurationWarningThreshold: int
|
|
2819
2834
|
"""
|
|
2820
2835
|
self._InstanceId = None
|
|
2821
2836
|
self._Name = None
|
|
@@ -2835,6 +2850,7 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2835
2850
|
self._LogSource = None
|
|
2836
2851
|
self._CustomShowTags = None
|
|
2837
2852
|
self._PayMode = None
|
|
2853
|
+
self._ResponseDurationWarningThreshold = None
|
|
2838
2854
|
|
|
2839
2855
|
@property
|
|
2840
2856
|
def InstanceId(self):
|
|
@@ -2980,6 +2996,14 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2980
2996
|
def PayMode(self, PayMode):
|
|
2981
2997
|
self._PayMode = PayMode
|
|
2982
2998
|
|
|
2999
|
+
@property
|
|
3000
|
+
def ResponseDurationWarningThreshold(self):
|
|
3001
|
+
return self._ResponseDurationWarningThreshold
|
|
3002
|
+
|
|
3003
|
+
@ResponseDurationWarningThreshold.setter
|
|
3004
|
+
def ResponseDurationWarningThreshold(self, ResponseDurationWarningThreshold):
|
|
3005
|
+
self._ResponseDurationWarningThreshold = ResponseDurationWarningThreshold
|
|
3006
|
+
|
|
2983
3007
|
|
|
2984
3008
|
def _deserialize(self, params):
|
|
2985
3009
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -3005,6 +3029,7 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3005
3029
|
self._LogSource = params.get("LogSource")
|
|
3006
3030
|
self._CustomShowTags = params.get("CustomShowTags")
|
|
3007
3031
|
self._PayMode = params.get("PayMode")
|
|
3032
|
+
self._ResponseDurationWarningThreshold = params.get("ResponseDurationWarningThreshold")
|
|
3008
3033
|
memeber_set = set(params.keys())
|
|
3009
3034
|
for name, value in vars(self).items():
|
|
3010
3035
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1231
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1229
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|