tencentcloud-sdk-nodejs-apm 4.1.159 → 4.1.161
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/package.json
CHANGED
|
@@ -1025,6 +1025,14 @@ export interface ApmAppConfig {
|
|
|
1025
1025
|
* 慢SQL阈值
|
|
1026
1026
|
*/
|
|
1027
1027
|
SlowSQLThresholds?: Array<ApmTag>;
|
|
1028
|
+
/**
|
|
1029
|
+
* 是否开启脱敏规则
|
|
1030
|
+
*/
|
|
1031
|
+
EnableDesensitizationRule?: number;
|
|
1032
|
+
/**
|
|
1033
|
+
* 脱敏规则
|
|
1034
|
+
*/
|
|
1035
|
+
DesensitizationRule?: string;
|
|
1028
1036
|
}
|
|
1029
1037
|
/**
|
|
1030
1038
|
* CreateApmSampleConfig返回参数结构体
|
|
@@ -2560,6 +2568,14 @@ export interface ApmApplicationConfigView {
|
|
|
2560
2568
|
* 慢SQL阈值
|
|
2561
2569
|
*/
|
|
2562
2570
|
SlowSQLThresholds?: Array<ApmTag>;
|
|
2571
|
+
/**
|
|
2572
|
+
* 是否开启脱敏规则
|
|
2573
|
+
*/
|
|
2574
|
+
EnableDesensitizationRule?: number;
|
|
2575
|
+
/**
|
|
2576
|
+
* 脱敏规则
|
|
2577
|
+
*/
|
|
2578
|
+
DesensitizationRule?: string;
|
|
2563
2579
|
}
|
|
2564
2580
|
/**
|
|
2565
2581
|
* 排序字段
|
|
@@ -2886,6 +2902,14 @@ export interface ModifyApmApplicationConfigRequest {
|
|
|
2886
2902
|
* 慢SQL阈值
|
|
2887
2903
|
*/
|
|
2888
2904
|
SlowSQLThresholds?: Array<ApmTag>;
|
|
2905
|
+
/**
|
|
2906
|
+
* 是否开启脱敏规则
|
|
2907
|
+
*/
|
|
2908
|
+
EnableDesensitizationRule?: number;
|
|
2909
|
+
/**
|
|
2910
|
+
* 脱敏规则
|
|
2911
|
+
*/
|
|
2912
|
+
DesensitizationRule?: string;
|
|
2889
2913
|
}
|
|
2890
2914
|
/**
|
|
2891
2915
|
* ModifyGeneralApmApplicationConfig返回参数结构体
|