tencentcloud-sdk-python 3.0.1303__py2.py3-none-any.whl → 3.0.1307__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apm/v20210622/apm_client.py +3 -3
- tencentcloud/apm/v20210622/models.py +586 -538
- tencentcloud/autoscaling/v20180419/models.py +141 -0
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +1 -1
- tencentcloud/cdwdoris/v20211228/models.py +120 -262
- tencentcloud/cfs/v20190719/cfs_client.py +23 -0
- tencentcloud/cfs/v20190719/models.py +79 -0
- tencentcloud/clb/v20180317/models.py +146 -20
- tencentcloud/cvm/v20170312/cvm_client.py +24 -0
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/cvm/v20170312/models.py +196 -12
- tencentcloud/dc/v20180410/models.py +30 -2
- tencentcloud/dlc/v20210125/models.py +89 -0
- tencentcloud/emr/v20190103/models.py +50 -116
- tencentcloud/ess/v20201111/models.py +30 -22
- tencentcloud/essbasic/v20210526/models.py +52 -40
- tencentcloud/faceid/v20180301/models.py +14 -14
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +3 -1
- tencentcloud/hunyuan/v20230901/models.py +54 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +422 -0
- tencentcloud/lcic/v20220817/lcic_client.py +1 -1
- tencentcloud/lcic/v20220817/models.py +6 -8
- tencentcloud/lighthouse/v20200324/models.py +30 -0
- tencentcloud/lke/v20231130/models.py +23 -14
- tencentcloud/lkeap/v20240522/models.py +8 -4
- tencentcloud/mna/v20210119/models.py +0 -30
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +4 -10
- tencentcloud/ocr/v20181119/models.py +45 -0
- tencentcloud/postgres/v20170312/errorcodes.py +6 -0
- tencentcloud/postgres/v20170312/models.py +72 -30
- tencentcloud/rum/v20210622/models.py +0 -2
- tencentcloud/scf/v20180416/models.py +4 -4
- tencentcloud/ssl/v20191205/models.py +15 -0
- tencentcloud/tchd/v20230306/models.py +0 -2
- tencentcloud/teo/v20220901/models.py +2 -6
- tencentcloud/tiw/v20190919/models.py +6 -0
- tencentcloud/trtc/v20190722/models.py +15 -0
- tencentcloud/tse/v20201207/models.py +138 -0
- tencentcloud/tse/v20201207/tse_client.py +23 -0
- tencentcloud/vod/v20180717/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +504 -12
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +767 -2
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/RECORD +52 -52
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -50,7 +50,7 @@ class ApmClient(AbstractClient):
|
|
50
50
|
|
51
51
|
|
52
52
|
def DescribeApmAgent(self, request):
|
53
|
-
"""获取 APM
|
53
|
+
"""获取 APM 接入点
|
54
54
|
|
55
55
|
:param request: Request instance for DescribeApmAgent.
|
56
56
|
:type request: :class:`tencentcloud.apm.v20210622.models.DescribeApmAgentRequest`
|
@@ -73,7 +73,7 @@ class ApmClient(AbstractClient):
|
|
73
73
|
|
74
74
|
|
75
75
|
def DescribeApmInstances(self, request):
|
76
|
-
"""
|
76
|
+
"""获取 APM 业务系统列表
|
77
77
|
|
78
78
|
:param request: Request instance for DescribeApmInstances.
|
79
79
|
:type request: :class:`tencentcloud.apm.v20210622.models.DescribeApmInstancesRequest`
|
@@ -166,7 +166,7 @@ class ApmClient(AbstractClient):
|
|
166
166
|
|
167
167
|
|
168
168
|
def DescribeMetricRecords(self, request):
|
169
|
-
"""
|
169
|
+
"""查询指标列表接口,查询指标更推荐使用DescribeGeneralMetricData接口
|
170
170
|
|
171
171
|
:param request: Request instance for DescribeMetricRecords.
|
172
172
|
:type request: :class:`tencentcloud.apm.v20210622.models.DescribeMetricRecordsRequest`
|