tencentcloud-sdk-python-apm 3.0.1260__py2.py3-none-any.whl → 3.0.1261__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/errorcodes.py +3 -0
- tencentcloud/apm/v20210622/models.py +24 -0
- {tencentcloud_sdk_python_apm-3.0.1260.dist-info → tencentcloud_sdk_python_apm-3.0.1261.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_apm-3.0.1261.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_apm-3.0.1260.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_apm-3.0.1260.dist-info → tencentcloud_sdk_python_apm-3.0.1261.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_apm-3.0.1260.dist-info → tencentcloud_sdk_python_apm-3.0.1261.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -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
|
|
|
@@ -2857,6 +2857,10 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2857
2857
|
:type PayMode: int
|
|
2858
2858
|
:param _ResponseDurationWarningThreshold: 响应时间满意阈值
|
|
2859
2859
|
:type ResponseDurationWarningThreshold: int
|
|
2860
|
+
:param _IsRelatedDashboard: 是否关联dashboard: 0 关 1 开
|
|
2861
|
+
:type IsRelatedDashboard: int
|
|
2862
|
+
:param _DashboardTopicID: dashboard ID
|
|
2863
|
+
:type DashboardTopicID: str
|
|
2860
2864
|
"""
|
|
2861
2865
|
self._InstanceId = None
|
|
2862
2866
|
self._Name = None
|
|
@@ -2877,6 +2881,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
2877
2881
|
self._CustomShowTags = None
|
|
2878
2882
|
self._PayMode = None
|
|
2879
2883
|
self._ResponseDurationWarningThreshold = None
|
|
2884
|
+
self._IsRelatedDashboard = None
|
|
2885
|
+
self._DashboardTopicID = None
|
|
2880
2886
|
|
|
2881
2887
|
@property
|
|
2882
2888
|
def InstanceId(self):
|
|
@@ -3030,6 +3036,22 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3030
3036
|
def ResponseDurationWarningThreshold(self, ResponseDurationWarningThreshold):
|
|
3031
3037
|
self._ResponseDurationWarningThreshold = ResponseDurationWarningThreshold
|
|
3032
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
|
+
|
|
3033
3055
|
|
|
3034
3056
|
def _deserialize(self, params):
|
|
3035
3057
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -3056,6 +3078,8 @@ class ModifyApmInstanceRequest(AbstractModel):
|
|
|
3056
3078
|
self._CustomShowTags = params.get("CustomShowTags")
|
|
3057
3079
|
self._PayMode = params.get("PayMode")
|
|
3058
3080
|
self._ResponseDurationWarningThreshold = params.get("ResponseDurationWarningThreshold")
|
|
3081
|
+
self._IsRelatedDashboard = params.get("IsRelatedDashboard")
|
|
3082
|
+
self._DashboardTopicID = params.get("DashboardTopicID")
|
|
3059
3083
|
memeber_set = set(params.keys())
|
|
3060
3084
|
for name, value in vars(self).items():
|
|
3061
3085
|
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.1261
|
|
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.1261)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=sv_4VL4ekKEPtPqyDZVlcO_sfK6E5GMIbSqnr9sUnP4,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=o1M-OVvg-MTV37dZ_Y_yI6yDJ3xsovlrSKOnY1HdrGc,12187
|
|
5
|
+
tencentcloud/apm/v20210622/errorcodes.py,sha256=yEfF5MJ2plLKA4hdpPnPo14deDypXkhw4RbSMppFl2E,4926
|
|
6
|
+
tencentcloud/apm/v20210622/models.py,sha256=vc7dqgxI_J3wngZsctJKGWXT86BMWvP49oBXBr94OQs,110556
|
|
7
|
+
tencentcloud_sdk_python_apm-3.0.1261.dist-info/METADATA,sha256=0_TYllqsxH8XXd6WEtWtSsuVFKe6bFDLdF8erjJ5FjM,1492
|
|
8
|
+
tencentcloud_sdk_python_apm-3.0.1261.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_apm-3.0.1261.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_apm-3.0.1261.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=wg1uGZpru2XWqYf86gC4jfDKAATxY9H8UW1SwQGBv64,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=o1M-OVvg-MTV37dZ_Y_yI6yDJ3xsovlrSKOnY1HdrGc,12187
|
|
5
|
-
tencentcloud/apm/v20210622/errorcodes.py,sha256=Zuql3KDXdj33tgIzOSAn6cCt3JRXVH25AOHbbwtOjoE,4845
|
|
6
|
-
tencentcloud/apm/v20210622/models.py,sha256=7YtqT4h5Z7lf_529qDrk-XZpddyDOBuUslsIEqQ6bOc,109708
|
|
7
|
-
tencentcloud_sdk_python_apm-3.0.1260.dist-info/METADATA,sha256=9cJNL_GOYhHBWPjk9YdC7N1GzUJa-G9RTdB-qRHe8yU,1492
|
|
8
|
-
tencentcloud_sdk_python_apm-3.0.1260.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_apm-3.0.1260.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_apm-3.0.1260.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|