tencentcloud-sdk-nodejs-csip 4.0.1032 → 4.0.1046
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
|
@@ -2242,6 +2242,10 @@ export interface AssetViewVULRiskData {
|
|
|
2242
2242
|
* 是否可以一键体检,1-可以,0-不可以
|
|
2243
2243
|
*/
|
|
2244
2244
|
IsOneClick?: number
|
|
2245
|
+
/**
|
|
2246
|
+
* 是否POC扫描,0-非POC,1-POC
|
|
2247
|
+
*/
|
|
2248
|
+
IsPOC?: number
|
|
2245
2249
|
}
|
|
2246
2250
|
|
|
2247
2251
|
/**
|
|
@@ -3537,6 +3541,10 @@ export interface AssetViewWeakPassRisk {
|
|
|
3537
3541
|
* 证明
|
|
3538
3542
|
*/
|
|
3539
3543
|
Payload?: string
|
|
3544
|
+
/**
|
|
3545
|
+
* 端口
|
|
3546
|
+
*/
|
|
3547
|
+
Port?: number
|
|
3540
3548
|
}
|
|
3541
3549
|
|
|
3542
3550
|
/**
|
|
@@ -5107,7 +5115,7 @@ export interface AssetViewPortRisk {
|
|
|
5107
5115
|
*/
|
|
5108
5116
|
Suggestion?: number
|
|
5109
5117
|
/**
|
|
5110
|
-
* 状态,0未处理、1已处置、2
|
|
5118
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护
|
|
5111
5119
|
*/
|
|
5112
5120
|
Status?: number
|
|
5113
5121
|
/**
|
|
@@ -5142,6 +5150,14 @@ export interface AssetViewPortRisk {
|
|
|
5142
5150
|
* 识别来源,详细看枚举返回。
|
|
5143
5151
|
*/
|
|
5144
5152
|
From?: string
|
|
5153
|
+
/**
|
|
5154
|
+
* 服务判定,high_risk_service 高危服务 web_service web服务 other_service 其他服务
|
|
5155
|
+
*/
|
|
5156
|
+
ServiceJudge?: string
|
|
5157
|
+
/**
|
|
5158
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护、4无需处理
|
|
5159
|
+
*/
|
|
5160
|
+
XspmStatus?: number
|
|
5145
5161
|
}
|
|
5146
5162
|
|
|
5147
5163
|
/**
|
|
@@ -5297,7 +5313,7 @@ export interface ServerRisk {
|
|
|
5297
5313
|
*/
|
|
5298
5314
|
Suggestion?: string
|
|
5299
5315
|
/**
|
|
5300
|
-
* 状态,0未处理、1已处置、2
|
|
5316
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护
|
|
5301
5317
|
*/
|
|
5302
5318
|
Status?: number
|
|
5303
5319
|
/**
|
|
@@ -5340,6 +5356,14 @@ export interface ServerRisk {
|
|
|
5340
5356
|
* HTTP响应状态码
|
|
5341
5357
|
*/
|
|
5342
5358
|
StatusCode?: string
|
|
5359
|
+
/**
|
|
5360
|
+
* 新风险等级,high_risk 高危 suspect 疑似 Normal 暂无风险
|
|
5361
|
+
*/
|
|
5362
|
+
NewLevel?: string
|
|
5363
|
+
/**
|
|
5364
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护、4无需处理
|
|
5365
|
+
*/
|
|
5366
|
+
XspmStatus?: number
|
|
5343
5367
|
}
|
|
5344
5368
|
|
|
5345
5369
|
/**
|
|
@@ -2174,6 +2174,10 @@ export interface AssetViewVULRiskData {
|
|
|
2174
2174
|
* 是否可以一键体检,1-可以,0-不可以
|
|
2175
2175
|
*/
|
|
2176
2176
|
IsOneClick?: number;
|
|
2177
|
+
/**
|
|
2178
|
+
* 是否POC扫描,0-非POC,1-POC
|
|
2179
|
+
*/
|
|
2180
|
+
IsPOC?: number;
|
|
2177
2181
|
}
|
|
2178
2182
|
/**
|
|
2179
2183
|
* DescribeOrganizationUserInfo返回参数结构体
|
|
@@ -3438,6 +3442,10 @@ export interface AssetViewWeakPassRisk {
|
|
|
3438
3442
|
* 证明
|
|
3439
3443
|
*/
|
|
3440
3444
|
Payload?: string;
|
|
3445
|
+
/**
|
|
3446
|
+
* 端口
|
|
3447
|
+
*/
|
|
3448
|
+
Port?: number;
|
|
3441
3449
|
}
|
|
3442
3450
|
/**
|
|
3443
3451
|
* 网站风险对象
|
|
@@ -4972,7 +4980,7 @@ export interface AssetViewPortRisk {
|
|
|
4972
4980
|
*/
|
|
4973
4981
|
Suggestion?: number;
|
|
4974
4982
|
/**
|
|
4975
|
-
* 状态,0未处理、1已处置、2
|
|
4983
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护
|
|
4976
4984
|
*/
|
|
4977
4985
|
Status?: number;
|
|
4978
4986
|
/**
|
|
@@ -5007,6 +5015,14 @@ export interface AssetViewPortRisk {
|
|
|
5007
5015
|
* 识别来源,详细看枚举返回。
|
|
5008
5016
|
*/
|
|
5009
5017
|
From?: string;
|
|
5018
|
+
/**
|
|
5019
|
+
* 服务判定,high_risk_service 高危服务 web_service web服务 other_service 其他服务
|
|
5020
|
+
*/
|
|
5021
|
+
ServiceJudge?: string;
|
|
5022
|
+
/**
|
|
5023
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护、4无需处理
|
|
5024
|
+
*/
|
|
5025
|
+
XspmStatus?: number;
|
|
5010
5026
|
}
|
|
5011
5027
|
/**
|
|
5012
5028
|
* DescribeRiskCenterPortViewPortRiskList请求参数结构体
|
|
@@ -5157,7 +5173,7 @@ export interface ServerRisk {
|
|
|
5157
5173
|
*/
|
|
5158
5174
|
Suggestion?: string;
|
|
5159
5175
|
/**
|
|
5160
|
-
* 状态,0未处理、1已处置、2
|
|
5176
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护
|
|
5161
5177
|
*/
|
|
5162
5178
|
Status?: number;
|
|
5163
5179
|
/**
|
|
@@ -5200,6 +5216,14 @@ export interface ServerRisk {
|
|
|
5200
5216
|
* HTTP响应状态码
|
|
5201
5217
|
*/
|
|
5202
5218
|
StatusCode?: string;
|
|
5219
|
+
/**
|
|
5220
|
+
* 新风险等级,high_risk 高危 suspect 疑似 Normal 暂无风险
|
|
5221
|
+
*/
|
|
5222
|
+
NewLevel?: string;
|
|
5223
|
+
/**
|
|
5224
|
+
* 状态,0未处理、1已处置、2已忽略、3云防已防护、4无需处理
|
|
5225
|
+
*/
|
|
5226
|
+
XspmStatus?: number;
|
|
5203
5227
|
}
|
|
5204
5228
|
/**
|
|
5205
5229
|
* 报告中的task_id list
|