tencentcloud-sdk-python-apm 3.0.1258__tar.gz → 3.0.1262__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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud/apm/v20210622/errorcodes.py +3 -0
  5. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud/apm/v20210622/models.py +24 -0
  6. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-apm-3.0.1262/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-apm-3.0.1258/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/README.rst +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud/apm/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud/apm/v20210622/__init__.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-apm-3.0.1258 → tencentcloud-sdk-python-apm-3.0.1262}/tencentcloud_sdk_python_apm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1258
3
+ Version: 3.0.1262
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
@@ -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.1258"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1262"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Apm SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1258'
17
+ __version__ = '3.0.1262'
@@ -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: 1.1
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1258
3
+ Version: 3.0.1262
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1262
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1258