tencentcloud-sdk-nodejs-apm 4.0.1004 → 4.0.1015
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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/products.md +93 -92
- package/src/services/apm/v20210622/apm_client.ts +3 -3
- package/src/services/apm/v20210622/apm_models.ts +195 -171
- package/tencentcloud/services/apm/v20210622/apm_client.d.ts +3 -3
- package/tencentcloud/services/apm/v20210622/apm_client.js +3 -3
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +195 -171
|
@@ -19,11 +19,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
19
19
|
*/
|
|
20
20
|
DescribeGeneralSpanList(req: DescribeGeneralSpanListRequest, cb?: (error: string, rep: DescribeGeneralSpanListResponse) => void): Promise<DescribeGeneralSpanListResponse>;
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* 获取 APM 业务系统列表
|
|
23
23
|
*/
|
|
24
24
|
DescribeApmInstances(req: DescribeApmInstancesRequest, cb?: (error: string, rep: DescribeApmInstancesResponse) => void): Promise<DescribeApmInstancesResponse>;
|
|
25
25
|
/**
|
|
26
|
-
* 获取 APM
|
|
26
|
+
* 获取 APM 接入点
|
|
27
27
|
*/
|
|
28
28
|
DescribeApmAgent(req: DescribeApmAgentRequest, cb?: (error: string, rep: DescribeApmAgentResponse) => void): Promise<DescribeApmAgentResponse>;
|
|
29
29
|
/**
|
|
@@ -40,7 +40,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
40
40
|
*/
|
|
41
41
|
DescribeGeneralMetricData(req: DescribeGeneralMetricDataRequest, cb?: (error: string, rep: DescribeGeneralMetricDataResponse) => void): Promise<DescribeGeneralMetricDataResponse>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 查询指标列表接口,查询指标更推荐使用DescribeGeneralMetricData接口
|
|
44
44
|
*/
|
|
45
45
|
DescribeMetricRecords(req: DescribeMetricRecordsRequest, cb?: (error: string, rep: DescribeMetricRecordsResponse) => void): Promise<DescribeMetricRecordsResponse>;
|
|
46
46
|
/**
|
|
@@ -46,13 +46,13 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
46
46
|
return this.request("DescribeGeneralSpanList", req, cb);
|
|
47
47
|
}
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* 获取 APM 业务系统列表
|
|
50
50
|
*/
|
|
51
51
|
async DescribeApmInstances(req, cb) {
|
|
52
52
|
return this.request("DescribeApmInstances", req, cb);
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
|
-
* 获取 APM
|
|
55
|
+
* 获取 APM 接入点
|
|
56
56
|
*/
|
|
57
57
|
async DescribeApmAgent(req, cb) {
|
|
58
58
|
return this.request("DescribeApmAgent", req, cb);
|
|
@@ -77,7 +77,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
77
77
|
return this.request("DescribeGeneralMetricData", req, cb);
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* 查询指标列表接口,查询指标更推荐使用DescribeGeneralMetricData接口
|
|
81
81
|
*/
|
|
82
82
|
async DescribeMetricRecords(req, cb) {
|
|
83
83
|
return this.request("DescribeMetricRecords", req, cb);
|