tencentcloud-sdk-nodejs-apm 4.0.561 → 4.0.563
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/CHANGELOG.md +454 -0
- package/SERVICE_CHANGELOG.md +469 -47
- package/package.json +1 -1
- package/products.md +60 -59
- package/src/services/apm/v20210622/apm_client.ts +24 -0
- package/src/services/apm/v20210622/apm_models.ts +115 -0
- package/tencentcloud/services/apm/v20210622/apm_client.d.ts +9 -1
- package/tencentcloud/services/apm/v20210622/apm_client.js +12 -0
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +96 -0
|
@@ -1,3 +1,72 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ModifyApmInstance请求参数结构体
|
|
3
|
+
*/
|
|
4
|
+
export interface ModifyApmInstanceRequest {
|
|
5
|
+
/**
|
|
6
|
+
* 实例ID
|
|
7
|
+
*/
|
|
8
|
+
InstanceId: string;
|
|
9
|
+
/**
|
|
10
|
+
* 实例名
|
|
11
|
+
*/
|
|
12
|
+
Name: string;
|
|
13
|
+
/**
|
|
14
|
+
* 标签列表
|
|
15
|
+
*/
|
|
16
|
+
Tags?: Array<ApmTag>;
|
|
17
|
+
/**
|
|
18
|
+
* 实例详情
|
|
19
|
+
*/
|
|
20
|
+
Description?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Trace数据保存时长
|
|
23
|
+
*/
|
|
24
|
+
TraceDuration?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 是否开启计费
|
|
27
|
+
*/
|
|
28
|
+
OpenBilling?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* 实例上报额度
|
|
31
|
+
*/
|
|
32
|
+
SpanDailyCounters?: number;
|
|
33
|
+
/**
|
|
34
|
+
* 错误率阈值
|
|
35
|
+
*/
|
|
36
|
+
ErrRateThreshold?: number;
|
|
37
|
+
/**
|
|
38
|
+
* 采样率
|
|
39
|
+
*/
|
|
40
|
+
SampleRate?: number;
|
|
41
|
+
/**
|
|
42
|
+
* 是否开启错误采样 0 关 1 开
|
|
43
|
+
*/
|
|
44
|
+
ErrorSample?: number;
|
|
45
|
+
/**
|
|
46
|
+
* 慢请求阈值
|
|
47
|
+
*/
|
|
48
|
+
SlowRequestSavedThreshold?: number;
|
|
49
|
+
/**
|
|
50
|
+
* 是否开启日志功能 0 关 1 开
|
|
51
|
+
*/
|
|
52
|
+
IsRelatedLog?: number;
|
|
53
|
+
/**
|
|
54
|
+
* 日志地域
|
|
55
|
+
*/
|
|
56
|
+
LogRegion?: string;
|
|
57
|
+
/**
|
|
58
|
+
* CLS日志主题ID | ES 索引名
|
|
59
|
+
*/
|
|
60
|
+
LogTopicID?: string;
|
|
61
|
+
/**
|
|
62
|
+
* CLS日志集 | ES集群ID
|
|
63
|
+
*/
|
|
64
|
+
LogSet?: string;
|
|
65
|
+
/**
|
|
66
|
+
* CLS | ES
|
|
67
|
+
*/
|
|
68
|
+
LogSource?: string;
|
|
69
|
+
}
|
|
1
70
|
/**
|
|
2
71
|
* apm实例信息
|
|
3
72
|
*/
|
|
@@ -177,6 +246,15 @@ export interface QueryMetricItem {
|
|
|
177
246
|
*/
|
|
178
247
|
Compares?: Array<string>;
|
|
179
248
|
}
|
|
249
|
+
/**
|
|
250
|
+
* TerminateApmInstance请求参数结构体
|
|
251
|
+
*/
|
|
252
|
+
export interface TerminateApmInstanceRequest {
|
|
253
|
+
/**
|
|
254
|
+
* 实例ID
|
|
255
|
+
*/
|
|
256
|
+
InstanceId: string;
|
|
257
|
+
}
|
|
180
258
|
/**
|
|
181
259
|
* DescribeApmInstances返回参数结构体
|
|
182
260
|
*/
|
|
@@ -602,6 +680,15 @@ export interface CreateApmInstanceResponse {
|
|
|
602
680
|
*/
|
|
603
681
|
RequestId?: string;
|
|
604
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
* ModifyApmInstance返回参数结构体
|
|
685
|
+
*/
|
|
686
|
+
export interface ModifyApmInstanceResponse {
|
|
687
|
+
/**
|
|
688
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
689
|
+
*/
|
|
690
|
+
RequestId?: string;
|
|
691
|
+
}
|
|
605
692
|
/**
|
|
606
693
|
* 查询过滤参数
|
|
607
694
|
*/
|
|
@@ -650,3 +737,12 @@ export interface DescribeGeneralMetricDataResponse {
|
|
|
650
737
|
*/
|
|
651
738
|
RequestId?: string;
|
|
652
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* TerminateApmInstance返回参数结构体
|
|
742
|
+
*/
|
|
743
|
+
export interface TerminateApmInstanceResponse {
|
|
744
|
+
/**
|
|
745
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
746
|
+
*/
|
|
747
|
+
RequestId?: string;
|
|
748
|
+
}
|