tencentcloud-sdk-python-apm 3.0.1255__tar.gz → 3.0.1261__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.1255 → tencentcloud-sdk-python-apm-3.0.1261}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/setup.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud/apm/v20210622/errorcodes.py +3 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud/apm/v20210622/models.py +50 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-apm-3.0.1261/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-apm-3.0.1255/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/README.rst +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/setup.cfg +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1255 → tencentcloud-sdk-python-apm-3.0.1261}/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.1261"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Apm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -62,6 +62,9 @@ FAILEDOPERATION_INSTANCENOTFOUND = 'FailedOperation.InstanceNotFound'
|
|
|
62
62
|
# 非法实例id。
|
|
63
63
|
FAILEDOPERATION_INVALIDINSTANCEID = 'FailedOperation.InvalidInstanceID'
|
|
64
64
|
|
|
65
|
+
# 不合法入参
|
|
66
|
+
FAILEDOPERATION_INVALIDPARAM = 'FailedOperation.InvalidParam'
|
|
67
|
+
|
|
65
68
|
# 非法的正则表达式。
|
|
66
69
|
FAILEDOPERATION_INVALIDREGEX = 'FailedOperation.InvalidRegex'
|
|
67
70
|
|
|
@@ -673,6 +673,12 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
673
673
|
:param _ResponseDurationWarningThreshold: 响应时间满意阈值
|
|
674
674
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
675
675
|
:type ResponseDurationWarningThreshold: int
|
|
676
|
+
:param _Free: 是否免费(0=否,1=限额免费,2=完全免费),默认0
|
|
677
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
678
|
+
:type Free: int
|
|
679
|
+
:param _DefaultTSF: 是否tsf默认业务系统(0=否,1-是)
|
|
680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
681
|
+
:type DefaultTSF: int
|
|
676
682
|
"""
|
|
677
683
|
self._AmountOfUsedStorage = None
|
|
678
684
|
self._Name = None
|
|
@@ -704,6 +710,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
704
710
|
self._PayMode = None
|
|
705
711
|
self._PayModeEffective = None
|
|
706
712
|
self._ResponseDurationWarningThreshold = None
|
|
713
|
+
self._Free = None
|
|
714
|
+
self._DefaultTSF = None
|
|
707
715
|
|
|
708
716
|
@property
|
|
709
717
|
def AmountOfUsedStorage(self):
|
|
@@ -945,6 +953,22 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
945
953
|
def ResponseDurationWarningThreshold(self, ResponseDurationWarningThreshold):
|
|
946
954
|
self._ResponseDurationWarningThreshold = ResponseDurationWarningThreshold
|
|
947
955
|
|
|
956
|
+
@property
|
|
957
|
+
def Free(self):
|
|
958
|
+
return self._Free
|
|
959
|
+
|
|
960
|
+
@Free.setter
|
|
961
|
+
def Free(self, Free):
|
|
962
|
+
self._Free = Free
|
|
963
|
+
|
|
964
|
+
@property
|
|
965
|
+
def DefaultTSF(self):
|
|
966
|
+
return self._DefaultTSF
|
|
967
|
+
|
|
968
|
+
@DefaultTSF.setter
|
|
969
|
+
def DefaultTSF(self, DefaultTSF):
|
|
970
|
+
self._DefaultTSF = DefaultTSF
|
|
971
|
+
|
|
948
972
|
|
|
949
973
|
def _deserialize(self, params):
|
|
950
974
|
self._AmountOfUsedStorage = params.get("AmountOfUsedStorage")
|
|
@@ -982,6 +1006,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
982
1006
|
self._PayMode = params.get("PayMode")
|
|
983
1007
|
self._PayModeEffective = params.get("PayModeEffective")
|
|
984
1008
|
self._ResponseDurationWarningThreshold = params.get("ResponseDurationWarningThreshold")
|
|
1009
|
+
self._Free = params.get("Free")
|
|
1010
|
+
self._DefaultTSF = params.get("DefaultTSF")
|
|
985
1011
|
memeber_set = set(params.keys())
|
|
986
1012
|
for name, value in vars(self).items():
|
|
987
1013
|
property_name = name[1:]
|
|
@@ -2831,6 +2857,10 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2831
2857
|
:type PayMode: int
|
|
2832
2858
|
:param _ResponseDurationWarningThreshold: 响应时间满意阈值
|
|
2833
2859
|
:type ResponseDurationWarningThreshold: int
|
|
2860
|
+
:param _IsRelatedDashboard: 是否关联dashboard: 0 关 1 开
|
|
2861
|
+
:type IsRelatedDashboard: int
|
|
2862
|
+
:param _DashboardTopicID: dashboard ID
|
|
2863
|
+
:type DashboardTopicID: str
|
|
2834
2864
|
"""
|
|
2835
2865
|
self._InstanceId = None
|
|
2836
2866
|
self._Name = None
|
|
@@ -2851,6 +2881,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2851
2881
|
self._CustomShowTags = None
|
|
2852
2882
|
self._PayMode = None
|
|
2853
2883
|
self._ResponseDurationWarningThreshold = None
|
|
2884
|
+
self._IsRelatedDashboard = None
|
|
2885
|
+
self._DashboardTopicID = None
|
|
2854
2886
|
|
|
2855
2887
|
@property
|
|
2856
2888
|
def InstanceId(self):
|
|
@@ -3004,6 +3036,22 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3004
3036
|
def ResponseDurationWarningThreshold(self, ResponseDurationWarningThreshold):
|
|
3005
3037
|
self._ResponseDurationWarningThreshold = ResponseDurationWarningThreshold
|
|
3006
3038
|
|
|
3039
|
+
@property
|
|
3040
|
+
def IsRelatedDashboard(self):
|
|
3041
|
+
return self._IsRelatedDashboard
|
|
3042
|
+
|
|
3043
|
+
@IsRelatedDashboard.setter
|
|
3044
|
+
def IsRelatedDashboard(self, IsRelatedDashboard):
|
|
3045
|
+
self._IsRelatedDashboard = IsRelatedDashboard
|
|
3046
|
+
|
|
3047
|
+
@property
|
|
3048
|
+
def DashboardTopicID(self):
|
|
3049
|
+
return self._DashboardTopicID
|
|
3050
|
+
|
|
3051
|
+
@DashboardTopicID.setter
|
|
3052
|
+
def DashboardTopicID(self, DashboardTopicID):
|
|
3053
|
+
self._DashboardTopicID = DashboardTopicID
|
|
3054
|
+
|
|
3007
3055
|
|
|
3008
3056
|
def _deserialize(self, params):
|
|
3009
3057
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -3030,6 +3078,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3030
3078
|
self._CustomShowTags = params.get("CustomShowTags")
|
|
3031
3079
|
self._PayMode = params.get("PayMode")
|
|
3032
3080
|
self._ResponseDurationWarningThreshold = params.get("ResponseDurationWarningThreshold")
|
|
3081
|
+
self._IsRelatedDashboard = params.get("IsRelatedDashboard")
|
|
3082
|
+
self._DashboardTopicID = params.get("DashboardTopicID")
|
|
3033
3083
|
memeber_set = set(params.keys())
|
|
3034
3084
|
for name, value in vars(self).items():
|
|
3035
3085
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1261
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1255
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|