tencentcloud-sdk-nodejs-apm 4.1.68 → 4.1.70
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
|
@@ -4,7 +4,7 @@ exports.Client = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
6
6
|
/*
|
|
7
|
-
* Copyright (c) 2018
|
|
7
|
+
* Copyright (c) 2018 Tencent. All Rights Reserved.
|
|
8
8
|
*
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
10
|
* you may not use this file except in compliance with the License.
|
|
@@ -129,6 +129,54 @@ export interface ModifyApmInstanceRequest {
|
|
|
129
129
|
* traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
130
130
|
*/
|
|
131
131
|
LogTraceIdKey?: string;
|
|
132
|
+
/**
|
|
133
|
+
* 是否开启删除任意文件检测(0-关闭,1-开启)
|
|
134
|
+
*/
|
|
135
|
+
IsDeleteAnyFileAnalysis?: number;
|
|
136
|
+
/**
|
|
137
|
+
* 是否开启读取任意文件检测(0-关闭,1-开启)
|
|
138
|
+
*/
|
|
139
|
+
IsReadAnyFileAnalysis?: number;
|
|
140
|
+
/**
|
|
141
|
+
* 是否开启上传任意文件检测(0-关闭,1-开启)
|
|
142
|
+
*/
|
|
143
|
+
IsUploadAnyFileAnalysis?: number;
|
|
144
|
+
/**
|
|
145
|
+
* 是否开启包含任意文件检测(0-关闭,1-开启)
|
|
146
|
+
*/
|
|
147
|
+
IsIncludeAnyFileAnalysis?: number;
|
|
148
|
+
/**
|
|
149
|
+
* 是否开启目录遍历检测(0-关闭,1-开启)
|
|
150
|
+
*/
|
|
151
|
+
IsDirectoryTraversalAnalysis?: number;
|
|
152
|
+
/**
|
|
153
|
+
* 是否开启模板引擎注入检测(0-关闭,1-开启)
|
|
154
|
+
*/
|
|
155
|
+
IsTemplateEngineInjectionAnalysis?: number;
|
|
156
|
+
/**
|
|
157
|
+
* 是否开启脚本引擎注入检测(0-关闭,1-开启)
|
|
158
|
+
*/
|
|
159
|
+
IsScriptEngineInjectionAnalysis?: number;
|
|
160
|
+
/**
|
|
161
|
+
* 是否开启表达式注入检测(0-关闭,1-开启)
|
|
162
|
+
*/
|
|
163
|
+
IsExpressionInjectionAnalysis?: number;
|
|
164
|
+
/**
|
|
165
|
+
* 是否开启JNDI注入检测(0-关闭,1-开启)
|
|
166
|
+
*/
|
|
167
|
+
IsJNDIInjectionAnalysis?: number;
|
|
168
|
+
/**
|
|
169
|
+
* 是否开启JNI注入检测(0-关闭,1-开启)
|
|
170
|
+
*/
|
|
171
|
+
IsJNIInjectionAnalysis?: number;
|
|
172
|
+
/**
|
|
173
|
+
* 是否开启Webshell后门检测(0-关闭,1-开启)
|
|
174
|
+
*/
|
|
175
|
+
IsWebshellBackdoorAnalysis?: number;
|
|
176
|
+
/**
|
|
177
|
+
* 是否开启反序列化检测(0-关闭,1-开启)
|
|
178
|
+
*/
|
|
179
|
+
IsDeserializationAnalysis?: number;
|
|
132
180
|
}
|
|
133
181
|
/**
|
|
134
182
|
* APM 业务系统信息
|
|
@@ -304,6 +352,54 @@ export interface ApmInstanceDetail {
|
|
|
304
352
|
* traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
305
353
|
*/
|
|
306
354
|
LogTraceIdKey?: string;
|
|
355
|
+
/**
|
|
356
|
+
* 是否开启删除任意文件检测(0-关闭,1-开启)
|
|
357
|
+
*/
|
|
358
|
+
IsDeleteAnyFileAnalysis?: number;
|
|
359
|
+
/**
|
|
360
|
+
* 是否开启读取任意文件检测(0-关闭,1-开启)
|
|
361
|
+
*/
|
|
362
|
+
IsReadAnyFileAnalysis?: number;
|
|
363
|
+
/**
|
|
364
|
+
* 是否开启上传任意文件检测(0-关闭,1-开启)
|
|
365
|
+
*/
|
|
366
|
+
IsUploadAnyFileAnalysis?: number;
|
|
367
|
+
/**
|
|
368
|
+
* 是否开启包含任意文件检测(0-关闭,1-开启)
|
|
369
|
+
*/
|
|
370
|
+
IsIncludeAnyFileAnalysis?: number;
|
|
371
|
+
/**
|
|
372
|
+
* 是否开启目录遍历检测(0-关闭,1-开启)
|
|
373
|
+
*/
|
|
374
|
+
IsDirectoryTraversalAnalysis?: number;
|
|
375
|
+
/**
|
|
376
|
+
* 是否开启模板引擎注入检测(0-关闭,1-开启)
|
|
377
|
+
*/
|
|
378
|
+
IsTemplateEngineInjectionAnalysis?: number;
|
|
379
|
+
/**
|
|
380
|
+
* 是否开启脚本引擎注入检测(0-关闭,1-开启)
|
|
381
|
+
*/
|
|
382
|
+
IsScriptEngineInjectionAnalysis?: number;
|
|
383
|
+
/**
|
|
384
|
+
* 是否开启表达式注入检测(0-关闭,1-开启)
|
|
385
|
+
*/
|
|
386
|
+
IsExpressionInjectionAnalysis?: number;
|
|
387
|
+
/**
|
|
388
|
+
* 是否开启JNDI注入检测(0-关闭,1-开启)
|
|
389
|
+
*/
|
|
390
|
+
IsJNDIInjectionAnalysis?: number;
|
|
391
|
+
/**
|
|
392
|
+
* 是否开启JNI注入检测(0-关闭,1-开启)
|
|
393
|
+
*/
|
|
394
|
+
IsJNIInjectionAnalysis?: number;
|
|
395
|
+
/**
|
|
396
|
+
* 是否开启Webshell后门检测(0-关闭,1-开启)
|
|
397
|
+
*/
|
|
398
|
+
IsWebshellBackdoorAnalysis?: number;
|
|
399
|
+
/**
|
|
400
|
+
* 是否开启反序列化检测(0-关闭,1-开启)
|
|
401
|
+
*/
|
|
402
|
+
IsDeserializationAnalysis?: number;
|
|
307
403
|
/**
|
|
308
404
|
* 业务系统鉴权 token
|
|
309
405
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*
|
|
3
|
-
* Copyright (c) 2018
|
|
3
|
+
* Copyright (c) 2018 Tencent. All Rights Reserved.
|
|
4
4
|
*
|
|
5
5
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
6
|
* you may not use this file except in compliance with the License.
|