tencentcloud-sdk-nodejs-csip 4.1.218 → 4.1.231
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/es/services/csip/v20221121/csip_client.js +309 -45
- package/package.json +1 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +399 -47
- package/tencentcloud/services/csip/v20221121/csip_client.js +597 -69
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +11257 -5599
|
@@ -28,12 +28,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
constructor(clientConfig) {
|
|
29
29
|
super("csip.tencentcloudapi.com", "2022-11-21", clientConfig);
|
|
30
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* 查询Dspm资产安全分析状态
|
|
33
|
+
*/
|
|
34
|
+
async DescribeDspmAssetSecurityAnalyseStatus(req, cb) {
|
|
35
|
+
return this.request("DescribeDspmAssetSecurityAnalyseStatus", req, cb);
|
|
36
|
+
}
|
|
31
37
|
/**
|
|
32
38
|
* 删除域名和ip请求
|
|
33
39
|
*/
|
|
34
40
|
async DeleteDomainAndIp(req, cb) {
|
|
35
41
|
return this.request("DeleteDomainAndIp", req, cb);
|
|
36
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* 查询云边界分析-暴露路径下主机节点的漏洞列表
|
|
45
|
+
*/
|
|
46
|
+
async DescribeVulRiskList(req, cb) {
|
|
47
|
+
return this.request("DescribeVulRiskList", req, cb);
|
|
48
|
+
}
|
|
37
49
|
/**
|
|
38
50
|
* 查询风险规则详情示例
|
|
39
51
|
*/
|
|
@@ -47,10 +59,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
47
59
|
return this.request("DescribeDbAssetInfo", req, cb);
|
|
48
60
|
}
|
|
49
61
|
/**
|
|
50
|
-
*
|
|
62
|
+
* 查询Dspm身份信息列表
|
|
51
63
|
*/
|
|
52
|
-
async
|
|
53
|
-
return this.request("
|
|
64
|
+
async DescribeDspmIdentifyInfoList(req, cb) {
|
|
65
|
+
return this.request("DescribeDspmIdentifyInfoList", req, cb);
|
|
54
66
|
}
|
|
55
67
|
/**
|
|
56
68
|
* 域名列表
|
|
@@ -58,30 +70,78 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
58
70
|
async DescribeDomainAssets(req, cb) {
|
|
59
71
|
return this.request("DescribeDomainAssets", req, cb);
|
|
60
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* 修改Dspm资产账号权限
|
|
75
|
+
*/
|
|
76
|
+
async ModifyDspmAssetAccountPrivileges(req, cb) {
|
|
77
|
+
return this.request("ModifyDspmAssetAccountPrivileges", req, cb);
|
|
78
|
+
}
|
|
61
79
|
/**
|
|
62
80
|
* 获取 AI agent 资产列表
|
|
63
81
|
*/
|
|
64
82
|
async DescribeAIAgentAssetList(req, cb) {
|
|
65
83
|
return this.request("DescribeAIAgentAssetList", req, cb);
|
|
66
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* 查询资产数据库信息
|
|
87
|
+
*/
|
|
88
|
+
async DescribeDspmAssetDatabaseList(req, cb) {
|
|
89
|
+
return this.request("DescribeDspmAssetDatabaseList", req, cb);
|
|
90
|
+
}
|
|
67
91
|
/**
|
|
68
92
|
* 查询用户的账号列表
|
|
69
93
|
*/
|
|
70
94
|
async DescribeAccessKeyUserList(req, cb) {
|
|
71
95
|
return this.request("DescribeAccessKeyUserList", req, cb);
|
|
72
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* 查询Dspm资产id列表
|
|
99
|
+
*/
|
|
100
|
+
async DescribeDspmAssetIds(req, cb) {
|
|
101
|
+
return this.request("DescribeDspmAssetIds", req, cb);
|
|
102
|
+
}
|
|
73
103
|
/**
|
|
74
104
|
* 云资源配置风险规则列表示例
|
|
75
105
|
*/
|
|
76
106
|
async DescribeConfigCheckRules(req, cb) {
|
|
77
107
|
return this.request("DescribeConfigCheckRules", req, cb);
|
|
78
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* 查询Dspm审批历史
|
|
111
|
+
*/
|
|
112
|
+
async DescribeDspmApproveHistory(req, cb) {
|
|
113
|
+
return this.request("DescribeDspmApproveHistory", req, cb);
|
|
114
|
+
}
|
|
79
115
|
/**
|
|
80
116
|
* 获取vpc列表
|
|
81
117
|
*/
|
|
82
118
|
async DescribeVpcAssets(req, cb) {
|
|
83
119
|
return this.request("DescribeVpcAssets", req, cb);
|
|
84
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* 删除Dspm申请单
|
|
123
|
+
*/
|
|
124
|
+
async DeleteDspmApplyOrder(req, cb) {
|
|
125
|
+
return this.request("DeleteDspmApplyOrder", req, cb);
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* 查询Dspm风险详情
|
|
129
|
+
*/
|
|
130
|
+
async DescribeDspmRiskDetail(req, cb) {
|
|
131
|
+
return this.request("DescribeDspmRiskDetail", req, cb);
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* 查询日志备份配置
|
|
135
|
+
*/
|
|
136
|
+
async DescribeDspmBackupSetting(req, cb) {
|
|
137
|
+
return this.request("DescribeDspmBackupSetting", req, cb);
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* 查询集团账号详情
|
|
141
|
+
*/
|
|
142
|
+
async DescribeOrganizationInfo(req, cb) {
|
|
143
|
+
return this.request("DescribeOrganizationInfo", req, cb);
|
|
144
|
+
}
|
|
85
145
|
/**
|
|
86
146
|
* 获取资产视角的漏洞风险列表
|
|
87
147
|
*/
|
|
@@ -101,16 +161,28 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
101
161
|
return this.request("DescribeRiskCenterWebsiteRiskList", req, cb);
|
|
102
162
|
}
|
|
103
163
|
/**
|
|
104
|
-
*
|
|
164
|
+
* 查询Dspm风险策略
|
|
105
165
|
*/
|
|
106
|
-
async
|
|
107
|
-
return this.request("
|
|
166
|
+
async DescribeDspmRiskStrategy(req, cb) {
|
|
167
|
+
return this.request("DescribeDspmRiskStrategy", req, cb);
|
|
108
168
|
}
|
|
109
169
|
/**
|
|
110
|
-
*
|
|
170
|
+
* 获取网卡列表
|
|
111
171
|
*/
|
|
112
|
-
async
|
|
113
|
-
return this.request("
|
|
172
|
+
async DescribeNICAssets(req, cb) {
|
|
173
|
+
return this.request("DescribeNICAssets", req, cb);
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* 查询Dspm同步资产状态
|
|
177
|
+
*/
|
|
178
|
+
async DescribeDspmSyncAssetsStatus(req, cb) {
|
|
179
|
+
return this.request("DescribeDspmSyncAssetsStatus", req, cb);
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* 发起AK资产同步任务
|
|
183
|
+
*/
|
|
184
|
+
async CreateAccessKeySyncTask(req, cb) {
|
|
185
|
+
return this.request("CreateAccessKeySyncTask", req, cb);
|
|
114
186
|
}
|
|
115
187
|
/**
|
|
116
188
|
* 查询TOP攻击信息
|
|
@@ -119,22 +191,34 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
119
191
|
return this.request("DescribeTopAttackInfo", req, cb);
|
|
120
192
|
}
|
|
121
193
|
/**
|
|
122
|
-
*
|
|
194
|
+
* 修改Dspm资产日志投递开关
|
|
123
195
|
*/
|
|
124
|
-
async
|
|
125
|
-
return this.request("
|
|
196
|
+
async ModifyDspmAssetLogDeliverySwitch(req, cb) {
|
|
197
|
+
return this.request("ModifyDspmAssetLogDeliverySwitch", req, cb);
|
|
126
198
|
}
|
|
127
199
|
/**
|
|
128
|
-
*
|
|
200
|
+
* 创建Dspm资产访问拓扑导出任务
|
|
129
201
|
*/
|
|
130
|
-
async
|
|
131
|
-
return this.request("
|
|
202
|
+
async CreateDspmAssetAccessTopologyExportJob(req, cb) {
|
|
203
|
+
return this.request("CreateDspmAssetAccessTopologyExportJob", req, cb);
|
|
132
204
|
}
|
|
133
205
|
/**
|
|
134
|
-
*
|
|
206
|
+
* 获取端口视角的端口风险列表
|
|
135
207
|
*/
|
|
136
|
-
async
|
|
137
|
-
return this.request("
|
|
208
|
+
async DescribeRiskCenterPortViewPortRiskList(req, cb) {
|
|
209
|
+
return this.request("DescribeRiskCenterPortViewPortRiskList", req, cb);
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* 删除Dspm资产账号
|
|
213
|
+
*/
|
|
214
|
+
async DeleteDspmAssetAccount(req, cb) {
|
|
215
|
+
return this.request("DeleteDspmAssetAccount", req, cb);
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* 修改Dspm资产账号信息
|
|
219
|
+
*/
|
|
220
|
+
async ModifyDspmAssetAccount(req, cb) {
|
|
221
|
+
return this.request("ModifyDspmAssetAccount", req, cb);
|
|
138
222
|
}
|
|
139
223
|
/**
|
|
140
224
|
* 获取扫描任务列表
|
|
@@ -142,12 +226,30 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
142
226
|
async DescribeScanTaskList(req, cb) {
|
|
143
227
|
return this.request("DescribeScanTaskList", req, cb);
|
|
144
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
* 查询导出任务
|
|
231
|
+
*/
|
|
232
|
+
async DescribeDspmExportTask(req, cb) {
|
|
233
|
+
return this.request("DescribeDspmExportTask", req, cb);
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* 查询Dspm申请单列表
|
|
237
|
+
*/
|
|
238
|
+
async DescribeDspmApplyOrderList(req, cb) {
|
|
239
|
+
return this.request("DescribeDspmApplyOrderList", req, cb);
|
|
240
|
+
}
|
|
145
241
|
/**
|
|
146
242
|
* 访问密钥告警记录详情
|
|
147
243
|
*/
|
|
148
244
|
async DescribeAccessKeyAlarmDetail(req, cb) {
|
|
149
245
|
return this.request("DescribeAccessKeyAlarmDetail", req, cb);
|
|
150
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* 查询Dspm支持的资产类型信息
|
|
249
|
+
*/
|
|
250
|
+
async DescribeDspmSupportedAssetType(req, cb) {
|
|
251
|
+
return this.request("DescribeDspmSupportedAssetType", req, cb);
|
|
252
|
+
}
|
|
151
253
|
/**
|
|
152
254
|
* 查询集团账号用户列表
|
|
153
255
|
*/
|
|
@@ -166,12 +268,54 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
166
268
|
async DescribeSubnetAssets(req, cb) {
|
|
167
269
|
return this.request("DescribeSubnetAssets", req, cb);
|
|
168
270
|
}
|
|
271
|
+
/**
|
|
272
|
+
* 查询Dspm身份id列表
|
|
273
|
+
*/
|
|
274
|
+
async DescribeDspmIdentifyIdList(req, cb) {
|
|
275
|
+
return this.request("DescribeDspmIdentifyIdList", req, cb);
|
|
276
|
+
}
|
|
169
277
|
/**
|
|
170
278
|
* 获取用户访问密钥资产列表
|
|
171
279
|
*/
|
|
172
280
|
async DescribeAccessKeyAsset(req, cb) {
|
|
173
281
|
return this.request("DescribeAccessKeyAsset", req, cb);
|
|
174
282
|
}
|
|
283
|
+
/**
|
|
284
|
+
* 发送Dspm资产访问验证码
|
|
285
|
+
*/
|
|
286
|
+
async SendDspmAssetLoginSmsCode(req, cb) {
|
|
287
|
+
return this.request("SendDspmAssetLoginSmsCode", req, cb);
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* 查询Dspm资产账号回收后特权信息
|
|
291
|
+
*/
|
|
292
|
+
async DescribeDspmAssetAccountRecycledPrivileges(req, cb) {
|
|
293
|
+
return this.request("DescribeDspmAssetAccountRecycledPrivileges", req, cb);
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* 资产列表
|
|
297
|
+
*/
|
|
298
|
+
async DescribeOtherCloudAssets(req, cb) {
|
|
299
|
+
return this.request("DescribeOtherCloudAssets", req, cb);
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* 云边界分析资产列表
|
|
303
|
+
*/
|
|
304
|
+
async DescribeExposures(req, cb) {
|
|
305
|
+
return this.request("DescribeExposures", req, cb);
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* 创建Dspm资产列表导出任务
|
|
309
|
+
*/
|
|
310
|
+
async CreateDspmAssetsExportJob(req, cb) {
|
|
311
|
+
return this.request("CreateDspmAssetsExportJob", req, cb);
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* 修改Dspm风险信息
|
|
315
|
+
*/
|
|
316
|
+
async ModifyDspmRiskInfo(req, cb) {
|
|
317
|
+
return this.request("ModifyDspmRiskInfo", req, cb);
|
|
318
|
+
}
|
|
175
319
|
/**
|
|
176
320
|
* 获取调用记录列表
|
|
177
321
|
*/
|
|
@@ -190,12 +334,48 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
190
334
|
async AddNewBindRoleUser(req, cb) {
|
|
191
335
|
return this.request("AddNewBindRoleUser", req, cb);
|
|
192
336
|
}
|
|
337
|
+
/**
|
|
338
|
+
* 删除Dspm个人身份id
|
|
339
|
+
*/
|
|
340
|
+
async DeleteDspmPersonalIdentify(req, cb) {
|
|
341
|
+
return this.request("DeleteDspmPersonalIdentify", req, cb);
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* 查询日志列表信息
|
|
345
|
+
*/
|
|
346
|
+
async DescribeDspmLogList(req, cb) {
|
|
347
|
+
return this.request("DescribeDspmLogList", req, cb);
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* 同步dspm用户列表
|
|
351
|
+
*/
|
|
352
|
+
async SyncDspmUsers(req, cb) {
|
|
353
|
+
return this.request("SyncDspmUsers", req, cb);
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* 修改Dspm资产日志投递开关
|
|
357
|
+
*/
|
|
358
|
+
async ModifyDspmAssetSecurityAnalysisSwitch(req, cb) {
|
|
359
|
+
return this.request("ModifyDspmAssetSecurityAnalysisSwitch", req, cb);
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* 查询dspm字典信息列表
|
|
363
|
+
*/
|
|
364
|
+
async DescribeDspmDictionaryList(req, cb) {
|
|
365
|
+
return this.request("DescribeDspmDictionaryList", req, cb);
|
|
366
|
+
}
|
|
193
367
|
/**
|
|
194
368
|
* 查询凭证列表
|
|
195
369
|
*/
|
|
196
370
|
async DescribeKeySandboxCredentialList(req, cb) {
|
|
197
371
|
return this.request("DescribeKeySandboxCredentialList", req, cb);
|
|
198
372
|
}
|
|
373
|
+
/**
|
|
374
|
+
* 查询Dspm资产数据库列表
|
|
375
|
+
*/
|
|
376
|
+
async DescribeDspmAssetDatabases(req, cb) {
|
|
377
|
+
return this.request("DescribeDspmAssetDatabases", req, cb);
|
|
378
|
+
}
|
|
199
379
|
/**
|
|
200
380
|
* 获取cvm列表
|
|
201
381
|
*/
|
|
@@ -203,16 +383,46 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
203
383
|
return this.request("DescribeCVMAssets", req, cb);
|
|
204
384
|
}
|
|
205
385
|
/**
|
|
206
|
-
*
|
|
386
|
+
* 创建Dspm申请单
|
|
207
387
|
*/
|
|
208
|
-
async
|
|
209
|
-
return this.request("
|
|
388
|
+
async CreateDspmApplyOrder(req, cb) {
|
|
389
|
+
return this.request("CreateDspmApplyOrder", req, cb);
|
|
210
390
|
}
|
|
211
391
|
/**
|
|
212
|
-
*
|
|
392
|
+
* 高级配置风险规则列表示例
|
|
213
393
|
*/
|
|
214
|
-
async
|
|
215
|
-
return this.request("
|
|
394
|
+
async DescribeRiskRules(req, cb) {
|
|
395
|
+
return this.request("DescribeRiskRules", req, cb);
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* 查询Dspm风险记录
|
|
399
|
+
*/
|
|
400
|
+
async DescribeDspmRisk(req, cb) {
|
|
401
|
+
return this.request("DescribeDspmRisk", req, cb);
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* 获取账号dspm信息列表
|
|
405
|
+
*/
|
|
406
|
+
async DescribeUserDspmInfoList(req, cb) {
|
|
407
|
+
return this.request("DescribeUserDspmInfoList", req, cb);
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
* RetryExportLog
|
|
411
|
+
*/
|
|
412
|
+
async RetryDspmExportLog(req, cb) {
|
|
413
|
+
return this.request("RetryDspmExportLog", req, cb);
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* 修改Dspm风险策略
|
|
417
|
+
*/
|
|
418
|
+
async ModifyDspmRiskStrategy(req, cb) {
|
|
419
|
+
return this.request("ModifyDspmRiskStrategy", req, cb);
|
|
420
|
+
}
|
|
421
|
+
/**
|
|
422
|
+
* 查询Dspm资产登录凭据
|
|
423
|
+
*/
|
|
424
|
+
async DescribeDspmAssetLoginCredential(req, cb) {
|
|
425
|
+
return this.request("DescribeDspmAssetLoginCredential", req, cb);
|
|
216
426
|
}
|
|
217
427
|
/**
|
|
218
428
|
* 告警中心全量告警列表接口
|
|
@@ -220,12 +430,42 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
220
430
|
async DescribeAlertList(req, cb) {
|
|
221
431
|
return this.request("DescribeAlertList", req, cb);
|
|
222
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* 上传 Skill ZIP 文件,触发异步安全检测。上传成功后应使用返回的 ContentHash + EngineVersion 轮询 DescribeSkillScanResult 接口获取结果。上传接口具备幂等性,同一 Hash 的文件重复上传不会创建重复任务。检测结果保留90天,超期后需重新上传检测。
|
|
435
|
+
*/
|
|
436
|
+
async CreateSkillScan(req, cb) {
|
|
437
|
+
return this.request("CreateSkillScan", req, cb);
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* 同步dspm支持的资产
|
|
441
|
+
*/
|
|
442
|
+
async SyncDspmAssets(req, cb) {
|
|
443
|
+
return this.request("SyncDspmAssets", req, cb);
|
|
444
|
+
}
|
|
223
445
|
/**
|
|
224
446
|
* 风险详情列表示例
|
|
225
447
|
*/
|
|
226
448
|
async DescribeRiskDetailList(req, cb) {
|
|
227
449
|
return this.request("DescribeRiskDetailList", req, cb);
|
|
228
450
|
}
|
|
451
|
+
/**
|
|
452
|
+
* 查询Dspm访问拓扑ip列表
|
|
453
|
+
*/
|
|
454
|
+
async DescribeDspmAccessTopologyIps(req, cb) {
|
|
455
|
+
return this.request("DescribeDspmAccessTopologyIps", req, cb);
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* 查询Dspm资产账号身份信息
|
|
459
|
+
*/
|
|
460
|
+
async DescribeDspmAssetAccountIdentify(req, cb) {
|
|
461
|
+
return this.request("DescribeDspmAssetAccountIdentify", req, cb);
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* 创建Dspm身份列表导出任务
|
|
465
|
+
*/
|
|
466
|
+
async CreateDspmIdentifyInfoListExportJob(req, cb) {
|
|
467
|
+
return this.request("CreateDspmIdentifyInfoListExportJob", req, cb);
|
|
468
|
+
}
|
|
229
469
|
/**
|
|
230
470
|
* 获取资产视角的端口风险列表
|
|
231
471
|
*/
|
|
@@ -233,10 +473,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
233
473
|
return this.request("DescribeRiskCenterAssetViewPortRiskList", req, cb);
|
|
234
474
|
}
|
|
235
475
|
/**
|
|
236
|
-
*
|
|
476
|
+
* 获取已购Dspm订单信息
|
|
237
477
|
*/
|
|
238
|
-
async
|
|
239
|
-
return this.request("
|
|
478
|
+
async DescribeDspmPayInfo(req, cb) {
|
|
479
|
+
return this.request("DescribeDspmPayInfo", req, cb);
|
|
240
480
|
}
|
|
241
481
|
/**
|
|
242
482
|
* 获取配置视角的配置风险列表
|
|
@@ -244,6 +484,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
244
484
|
async DescribeRiskCenterCFGViewCFGRiskList(req, cb) {
|
|
245
485
|
return this.request("DescribeRiskCenterCFGViewCFGRiskList", req, cb);
|
|
246
486
|
}
|
|
487
|
+
/**
|
|
488
|
+
* 创建Dspm访问记录导出任务
|
|
489
|
+
*/
|
|
490
|
+
async CreateDspmAccessExportJob(req, cb) {
|
|
491
|
+
return this.request("CreateDspmAccessExportJob", req, cb);
|
|
492
|
+
}
|
|
247
493
|
/**
|
|
248
494
|
* 编辑访问密钥/源IP备注
|
|
249
495
|
*/
|
|
@@ -269,10 +515,46 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
269
515
|
return this.request("DescribeCVMAssetInfo", req, cb);
|
|
270
516
|
}
|
|
271
517
|
/**
|
|
272
|
-
*
|
|
518
|
+
* 获取任务扫描报告列表
|
|
273
519
|
*/
|
|
274
|
-
async
|
|
275
|
-
return this.request("
|
|
520
|
+
async DescribeTaskLogList(req, cb) {
|
|
521
|
+
return this.request("DescribeTaskLogList", req, cb);
|
|
522
|
+
}
|
|
523
|
+
/**
|
|
524
|
+
* 验证Dspm资产登录验证码
|
|
525
|
+
*/
|
|
526
|
+
async VerifyDspmAssetLoginCode(req, cb) {
|
|
527
|
+
return this.request("VerifyDspmAssetLoginCode", req, cb);
|
|
528
|
+
}
|
|
529
|
+
/**
|
|
530
|
+
* 查询Dspm访客申请记录
|
|
531
|
+
*/
|
|
532
|
+
async DescribeDspmPersonApplyHistory(req, cb) {
|
|
533
|
+
return this.request("DescribeDspmPersonApplyHistory", req, cb);
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* 修改Dspm审批单状态
|
|
537
|
+
*/
|
|
538
|
+
async ModifyDspmApproveStatus(req, cb) {
|
|
539
|
+
return this.request("ModifyDspmApproveStatus", req, cb);
|
|
540
|
+
}
|
|
541
|
+
/**
|
|
542
|
+
* 修改日志备份设置
|
|
543
|
+
*/
|
|
544
|
+
async ModifyDspmBackupSetting(req, cb) {
|
|
545
|
+
return this.request("ModifyDspmBackupSetting", req, cb);
|
|
546
|
+
}
|
|
547
|
+
/**
|
|
548
|
+
* 删除Dspm白名单策略
|
|
549
|
+
*/
|
|
550
|
+
async DeleteDspmWhitelistStrategy(req, cb) {
|
|
551
|
+
return this.request("DeleteDspmWhitelistStrategy", req, cb);
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* 查询Dspm白名单策略
|
|
555
|
+
*/
|
|
556
|
+
async DescribeDspmWhitelistStrategy(req, cb) {
|
|
557
|
+
return this.request("DescribeDspmWhitelistStrategy", req, cb);
|
|
276
558
|
}
|
|
277
559
|
/**
|
|
278
560
|
* 查询clb监听器列表
|
|
@@ -280,30 +562,84 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
280
562
|
async DescribeListenerList(req, cb) {
|
|
281
563
|
return this.request("DescribeListenerList", req, cb);
|
|
282
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* 查询Dspm申请历史
|
|
567
|
+
*/
|
|
568
|
+
async DescribeDspmApplyHistory(req, cb) {
|
|
569
|
+
return this.request("DescribeDspmApplyHistory", req, cb);
|
|
570
|
+
}
|
|
283
571
|
/**
|
|
284
572
|
* 集群pod列表
|
|
285
573
|
*/
|
|
286
574
|
async DescribeClusterPodAssets(req, cb) {
|
|
287
575
|
return this.request("DescribeClusterPodAssets", req, cb);
|
|
288
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* 删除备份日志
|
|
579
|
+
*/
|
|
580
|
+
async DeleteDspmBackupLogList(req, cb) {
|
|
581
|
+
return this.request("DeleteDspmBackupLogList", req, cb);
|
|
582
|
+
}
|
|
583
|
+
/**
|
|
584
|
+
* 查询dspm资产字段信息
|
|
585
|
+
*/
|
|
586
|
+
async DescribeDspmAssetFieldList(req, cb) {
|
|
587
|
+
return this.request("DescribeDspmAssetFieldList", req, cb);
|
|
588
|
+
}
|
|
289
589
|
/**
|
|
290
590
|
* 获取风险服务列表
|
|
291
591
|
*/
|
|
292
592
|
async DescribeRiskCenterServerRiskList(req, cb) {
|
|
293
593
|
return this.request("DescribeRiskCenterServerRiskList", req, cb);
|
|
294
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* 修改Dspm白名单策略
|
|
597
|
+
*/
|
|
598
|
+
async ModifyDspmWhitelistStrategy(req, cb) {
|
|
599
|
+
return this.request("ModifyDspmWhitelistStrategy", req, cb);
|
|
600
|
+
}
|
|
295
601
|
/**
|
|
296
602
|
* 获取调用记录列表
|
|
297
603
|
*/
|
|
298
604
|
async DescribeCallRecord(req, cb) {
|
|
299
605
|
return this.request("DescribeCallRecord", req, cb);
|
|
300
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* 删除恢复日志
|
|
609
|
+
*/
|
|
610
|
+
async DeleteDspmRestoreLogList(req, cb) {
|
|
611
|
+
return this.request("DeleteDspmRestoreLogList", req, cb);
|
|
612
|
+
}
|
|
613
|
+
/**
|
|
614
|
+
* 添加资产管理员
|
|
615
|
+
*/
|
|
616
|
+
async AddDspmAssetManager(req, cb) {
|
|
617
|
+
return this.request("AddDspmAssetManager", req, cb);
|
|
618
|
+
}
|
|
301
619
|
/**
|
|
302
620
|
* 云防资产中心统计数据
|
|
303
621
|
*/
|
|
304
622
|
async DescribeCFWAssetStatistics(req, cb) {
|
|
305
623
|
return this.request("DescribeCFWAssetStatistics", req, cb);
|
|
306
624
|
}
|
|
625
|
+
/**
|
|
626
|
+
* 停止扫风险中心扫描任务
|
|
627
|
+
*/
|
|
628
|
+
async StopRiskCenterTask(req, cb) {
|
|
629
|
+
return this.request("StopRiskCenterTask", req, cb);
|
|
630
|
+
}
|
|
631
|
+
/**
|
|
632
|
+
* 创建Dspm风险导出任务
|
|
633
|
+
*/
|
|
634
|
+
async CreateDspmRiskExportJob(req, cb) {
|
|
635
|
+
return this.request("CreateDspmRiskExportJob", req, cb);
|
|
636
|
+
}
|
|
637
|
+
/**
|
|
638
|
+
* 创建Dspm审批历史导出任务
|
|
639
|
+
*/
|
|
640
|
+
async CreateDspmApproveHistoryExportJob(req, cb) {
|
|
641
|
+
return this.request("CreateDspmApproveHistoryExportJob", req, cb);
|
|
642
|
+
}
|
|
307
643
|
/**
|
|
308
644
|
* 查询云边界分析路径节点
|
|
309
645
|
*/
|
|
@@ -316,6 +652,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
316
652
|
async DescribeGatewayAssets(req, cb) {
|
|
317
653
|
return this.request("DescribeGatewayAssets", req, cb);
|
|
318
654
|
}
|
|
655
|
+
/**
|
|
656
|
+
* 创建日志导出任务
|
|
657
|
+
*/
|
|
658
|
+
async CreateDspmExportTask(req, cb) {
|
|
659
|
+
return this.request("CreateDspmExportTask", req, cb);
|
|
660
|
+
}
|
|
661
|
+
/**
|
|
662
|
+
* 删除导出任务
|
|
663
|
+
*/
|
|
664
|
+
async DeleteDspmExportTask(req, cb) {
|
|
665
|
+
return this.request("DeleteDspmExportTask", req, cb);
|
|
666
|
+
}
|
|
319
667
|
/**
|
|
320
668
|
* 访问密钥告警记录列表
|
|
321
669
|
*/
|
|
@@ -323,10 +671,22 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
323
671
|
return this.request("DescribeAccessKeyAlarm", req, cb);
|
|
324
672
|
}
|
|
325
673
|
/**
|
|
326
|
-
*
|
|
674
|
+
* 修改DspmIp信息
|
|
327
675
|
*/
|
|
328
|
-
async
|
|
329
|
-
return this.request("
|
|
676
|
+
async ModifyDspmIpInfo(req, cb) {
|
|
677
|
+
return this.request("ModifyDspmIpInfo", req, cb);
|
|
678
|
+
}
|
|
679
|
+
/**
|
|
680
|
+
* 查询 Skill 安全检测结果。调用 CreateSkillScan 成功后使用返回的 ContentHash + EngineVersion 轮询本接口获取结果。上传成功后建议5分钟后首次轮询,如未检测完成之后每隔1分钟轮询一次。响应通过 Status 字段区分四种状态:检测完成(SUCCESS)、检测中(SCANNING)、无记录(NOT_FOUND)、检测失败(FAILED)。注意:检测结果保留90天,超期后将返回 NOT_FOUND。
|
|
681
|
+
*/
|
|
682
|
+
async DescribeSkillScanResult(req, cb) {
|
|
683
|
+
return this.request("DescribeSkillScanResult", req, cb);
|
|
684
|
+
}
|
|
685
|
+
/**
|
|
686
|
+
* 查询资产表信息
|
|
687
|
+
*/
|
|
688
|
+
async DescribeDspmAssetTableList(req, cb) {
|
|
689
|
+
return this.request("DescribeDspmAssetTableList", req, cb);
|
|
330
690
|
}
|
|
331
691
|
/**
|
|
332
692
|
* 修改风险中心风险状态
|
|
@@ -335,10 +695,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
335
695
|
return this.request("ModifyRiskCenterRiskStatus", req, cb);
|
|
336
696
|
}
|
|
337
697
|
/**
|
|
338
|
-
*
|
|
698
|
+
* 查询Dspm访问拓扑资产列表
|
|
339
699
|
*/
|
|
340
|
-
async
|
|
341
|
-
return this.request("
|
|
700
|
+
async DescribeDspmAccessTopologyAssets(req, cb) {
|
|
701
|
+
return this.request("DescribeDspmAccessTopologyAssets", req, cb);
|
|
702
|
+
}
|
|
703
|
+
/**
|
|
704
|
+
* ip公网列表
|
|
705
|
+
*/
|
|
706
|
+
async DescribePublicIpAssets(req, cb) {
|
|
707
|
+
return this.request("DescribePublicIpAssets", req, cb);
|
|
342
708
|
}
|
|
343
709
|
/**
|
|
344
710
|
* 云边界分析资产分类
|
|
@@ -358,18 +724,72 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
358
724
|
async CreateRiskCenterScanTask(req, cb) {
|
|
359
725
|
return this.request("CreateRiskCenterScanTask", req, cb);
|
|
360
726
|
}
|
|
727
|
+
/**
|
|
728
|
+
* 查询Dspm资产账号列表
|
|
729
|
+
*/
|
|
730
|
+
async DescribeDspmAssetAccounts(req, cb) {
|
|
731
|
+
return this.request("DescribeDspmAssetAccounts", req, cb);
|
|
732
|
+
}
|
|
733
|
+
/**
|
|
734
|
+
* 恢复Dspm资产账号
|
|
735
|
+
*/
|
|
736
|
+
async RevertDspmAssetAccount(req, cb) {
|
|
737
|
+
return this.request("RevertDspmAssetAccount", req, cb);
|
|
738
|
+
}
|
|
361
739
|
/**
|
|
362
740
|
* 查询漏洞风险高级配置
|
|
363
741
|
*/
|
|
364
742
|
async DescribeVULRiskAdvanceCFGList(req, cb) {
|
|
365
743
|
return this.request("DescribeVULRiskAdvanceCFGList", req, cb);
|
|
366
744
|
}
|
|
745
|
+
/**
|
|
746
|
+
* 查询Dspm风险分组策略
|
|
747
|
+
*/
|
|
748
|
+
async DescribeDspmRiskStrategyGroup(req, cb) {
|
|
749
|
+
return this.request("DescribeDspmRiskStrategyGroup", req, cb);
|
|
750
|
+
}
|
|
751
|
+
/**
|
|
752
|
+
* 查询是否绑定角色
|
|
753
|
+
*/
|
|
754
|
+
async DescribeAssumeRole(req, cb) {
|
|
755
|
+
return this.request("DescribeAssumeRole", req, cb);
|
|
756
|
+
}
|
|
757
|
+
/**
|
|
758
|
+
* 查询Dspm风险趋势
|
|
759
|
+
*/
|
|
760
|
+
async DescribeDspmRiskTendency(req, cb) {
|
|
761
|
+
return this.request("DescribeDspmRiskTendency", req, cb);
|
|
762
|
+
}
|
|
367
763
|
/**
|
|
368
764
|
* 集群列表
|
|
369
765
|
*/
|
|
370
766
|
async DescribeClusterAssets(req, cb) {
|
|
371
767
|
return this.request("DescribeClusterAssets", req, cb);
|
|
372
768
|
}
|
|
769
|
+
/**
|
|
770
|
+
* 修改Dspm资产数据扫描任务
|
|
771
|
+
*/
|
|
772
|
+
async ModifyDspmAssetDataScanTask(req, cb) {
|
|
773
|
+
return this.request("ModifyDspmAssetDataScanTask", req, cb);
|
|
774
|
+
}
|
|
775
|
+
/**
|
|
776
|
+
* 修改集团账号状态
|
|
777
|
+
*/
|
|
778
|
+
async ModifyOrganizationAccountStatus(req, cb) {
|
|
779
|
+
return this.request("ModifyOrganizationAccountStatus", req, cb);
|
|
780
|
+
}
|
|
781
|
+
/**
|
|
782
|
+
* 查询Dspm访问记录
|
|
783
|
+
*/
|
|
784
|
+
async DescribeDspmAccessRecord(req, cb) {
|
|
785
|
+
return this.request("DescribeDspmAccessRecord", req, cb);
|
|
786
|
+
}
|
|
787
|
+
/**
|
|
788
|
+
* 修改Dspm个人身份id
|
|
789
|
+
*/
|
|
790
|
+
async ModifyDspmPersonalIdentify(req, cb) {
|
|
791
|
+
return this.request("ModifyDspmPersonalIdentify", req, cb);
|
|
792
|
+
}
|
|
373
793
|
/**
|
|
374
794
|
* 查询用户行为分析策略列表
|
|
375
795
|
*/
|
|
@@ -377,10 +797,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
377
797
|
return this.request("DescribeUebaRule", req, cb);
|
|
378
798
|
}
|
|
379
799
|
/**
|
|
380
|
-
*
|
|
800
|
+
* 获取账号调用记录列表
|
|
381
801
|
*/
|
|
382
|
-
async
|
|
383
|
-
return this.request("
|
|
802
|
+
async DescribeUserCallRecord(req, cb) {
|
|
803
|
+
return this.request("DescribeUserCallRecord", req, cb);
|
|
804
|
+
}
|
|
805
|
+
/**
|
|
806
|
+
* 查询Dspm资产账号预设特权信息
|
|
807
|
+
*/
|
|
808
|
+
async DescribeDspmAssetAccountPresetPrivileges(req, cb) {
|
|
809
|
+
return this.request("DescribeDspmAssetAccountPresetPrivileges", req, cb);
|
|
384
810
|
}
|
|
385
811
|
/**
|
|
386
812
|
* 查询凭证详情,返回凭证元数据和打码后的凭据数据。access类型返回Access数组(Key原文、Value打码),sts类型返回STS对象(System原文、SecretID和SecretKey打码)
|
|
@@ -394,12 +820,42 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
394
820
|
async DescribeScanStatistic(req, cb) {
|
|
395
821
|
return this.request("DescribeScanStatistic", req, cb);
|
|
396
822
|
}
|
|
823
|
+
/**
|
|
824
|
+
* 查询Dspm同步用户状态
|
|
825
|
+
*/
|
|
826
|
+
async DescribeDspmSyncUsersStatus(req, cb) {
|
|
827
|
+
return this.request("DescribeDspmSyncUsersStatus", req, cb);
|
|
828
|
+
}
|
|
397
829
|
/**
|
|
398
830
|
* 新安全中心风险中心-漏洞列表
|
|
399
831
|
*/
|
|
400
832
|
async DescribeVULList(req, cb) {
|
|
401
833
|
return this.request("DescribeVULList", req, cb);
|
|
402
834
|
}
|
|
835
|
+
/**
|
|
836
|
+
* 重置Dspm资产账号密码
|
|
837
|
+
*/
|
|
838
|
+
async ResetDspmAssetAccountPassword(req, cb) {
|
|
839
|
+
return this.request("ResetDspmAssetAccountPassword", req, cb);
|
|
840
|
+
}
|
|
841
|
+
/**
|
|
842
|
+
* 查询Dspm身份信息
|
|
843
|
+
*/
|
|
844
|
+
async DescribeDspmIdentifyInfo(req, cb) {
|
|
845
|
+
return this.request("DescribeDspmIdentifyInfo", req, cb);
|
|
846
|
+
}
|
|
847
|
+
/**
|
|
848
|
+
* 查询Dspm统计信息
|
|
849
|
+
*/
|
|
850
|
+
async DescribeDspmStatistics(req, cb) {
|
|
851
|
+
return this.request("DescribeDspmStatistics", req, cb);
|
|
852
|
+
}
|
|
853
|
+
/**
|
|
854
|
+
* 下载导出日志
|
|
855
|
+
*/
|
|
856
|
+
async DownloadDspmExportLog(req, cb) {
|
|
857
|
+
return this.request("DownloadDspmExportLog", req, cb);
|
|
858
|
+
}
|
|
403
859
|
/**
|
|
404
860
|
* 访问密钥告警记录AI分析结果详情
|
|
405
861
|
*/
|
|
@@ -413,28 +869,40 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
413
869
|
return this.request("DescribeAccessKeyUserDetail", req, cb);
|
|
414
870
|
}
|
|
415
871
|
/**
|
|
416
|
-
*
|
|
872
|
+
* 查询Dspm审批单列表
|
|
417
873
|
*/
|
|
418
|
-
async
|
|
419
|
-
return this.request("
|
|
874
|
+
async DescribeDspmApproveOrderList(req, cb) {
|
|
875
|
+
return this.request("DescribeDspmApproveOrderList", req, cb);
|
|
420
876
|
}
|
|
421
877
|
/**
|
|
422
|
-
*
|
|
878
|
+
* 删除风险中心扫描任务
|
|
423
879
|
*/
|
|
424
|
-
async
|
|
425
|
-
return this.request("
|
|
880
|
+
async DeleteRiskScanTask(req, cb) {
|
|
881
|
+
return this.request("DeleteRiskScanTask", req, cb);
|
|
426
882
|
}
|
|
427
883
|
/**
|
|
428
|
-
*
|
|
884
|
+
* 获取资产视角的弱口令风险列表
|
|
429
885
|
*/
|
|
430
|
-
async
|
|
431
|
-
return this.request("
|
|
886
|
+
async DescribeRiskCenterAssetViewWeakPasswordRiskList(req, cb) {
|
|
887
|
+
return this.request("DescribeRiskCenterAssetViewWeakPasswordRiskList", req, cb);
|
|
432
888
|
}
|
|
433
889
|
/**
|
|
434
|
-
*
|
|
890
|
+
* 查询备份日志列表
|
|
435
891
|
*/
|
|
436
|
-
async
|
|
437
|
-
return this.request("
|
|
892
|
+
async DescribeDspmBackupLogList(req, cb) {
|
|
893
|
+
return this.request("DescribeDspmBackupLogList", req, cb);
|
|
894
|
+
}
|
|
895
|
+
/**
|
|
896
|
+
* 创建Dspm白名单策略
|
|
897
|
+
*/
|
|
898
|
+
async CreateDspmWhitelistStrategy(req, cb) {
|
|
899
|
+
return this.request("CreateDspmWhitelistStrategy", req, cb);
|
|
900
|
+
}
|
|
901
|
+
/**
|
|
902
|
+
* 恢复备份日志
|
|
903
|
+
*/
|
|
904
|
+
async ModifyDspmRestoreLogTask(req, cb) {
|
|
905
|
+
return this.request("ModifyDspmRestoreLogTask", req, cb);
|
|
438
906
|
}
|
|
439
907
|
/**
|
|
440
908
|
* 修改风险中心扫描任务
|
|
@@ -449,10 +917,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
449
917
|
return this.request("DescribeCheckViewRisks", req, cb);
|
|
450
918
|
}
|
|
451
919
|
/**
|
|
452
|
-
*
|
|
920
|
+
* 资产视角下云资源配置风险列表
|
|
453
921
|
*/
|
|
454
|
-
async
|
|
455
|
-
return this.request("
|
|
922
|
+
async DescribeAssetRiskList(req, cb) {
|
|
923
|
+
return this.request("DescribeAssetRiskList", req, cb);
|
|
456
924
|
}
|
|
457
925
|
/**
|
|
458
926
|
* 更新自定义策略的开关
|
|
@@ -473,16 +941,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
473
941
|
return this.request("DescribeSearchBugInfo", req, cb);
|
|
474
942
|
}
|
|
475
943
|
/**
|
|
476
|
-
*
|
|
477
|
-
*/
|
|
478
|
-
async DescribePublicIpAssets(req, cb) {
|
|
479
|
-
return this.request("DescribePublicIpAssets", req, cb);
|
|
480
|
-
}
|
|
481
|
-
/**
|
|
482
|
-
* 获取资产视角的弱口令风险列表
|
|
944
|
+
* 查询集团的子账号列表
|
|
483
945
|
*/
|
|
484
|
-
async
|
|
485
|
-
return this.request("
|
|
946
|
+
async DescribeSubUserInfo(req, cb) {
|
|
947
|
+
return this.request("DescribeSubUserInfo", req, cb);
|
|
486
948
|
}
|
|
487
949
|
/**
|
|
488
950
|
* 获取漏洞视角的漏洞风险列表
|
|
@@ -490,18 +952,36 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
490
952
|
async DescribeVulViewVulRiskList(req, cb) {
|
|
491
953
|
return this.request("DescribeVulViewVulRiskList", req, cb);
|
|
492
954
|
}
|
|
955
|
+
/**
|
|
956
|
+
* 获取资产视角的漏洞风险列表
|
|
957
|
+
*/
|
|
958
|
+
async DescribeRiskCenterAssetViewVULRiskList(req, cb) {
|
|
959
|
+
return this.request("DescribeRiskCenterAssetViewVULRiskList", req, cb);
|
|
960
|
+
}
|
|
493
961
|
/**
|
|
494
962
|
* 创建域名、ip相关信息
|
|
495
963
|
*/
|
|
496
964
|
async CreateDomainAndIp(req, cb) {
|
|
497
965
|
return this.request("CreateDomainAndIp", req, cb);
|
|
498
966
|
}
|
|
967
|
+
/**
|
|
968
|
+
* 修改Dspm访问管理信息
|
|
969
|
+
*/
|
|
970
|
+
async ModifyDspmAccessRecord(req, cb) {
|
|
971
|
+
return this.request("ModifyDspmAccessRecord", req, cb);
|
|
972
|
+
}
|
|
499
973
|
/**
|
|
500
974
|
* 批量告警状态处理接口
|
|
501
975
|
*/
|
|
502
976
|
async UpdateAlertStatusList(req, cb) {
|
|
503
977
|
return this.request("UpdateAlertStatusList", req, cb);
|
|
504
978
|
}
|
|
979
|
+
/**
|
|
980
|
+
* 查询云边界分析-暴露路径下主机节点的高危基线风险列表
|
|
981
|
+
*/
|
|
982
|
+
async DescribeHighBaseLineRiskList(req, cb) {
|
|
983
|
+
return this.request("DescribeHighBaseLineRiskList", req, cb);
|
|
984
|
+
}
|
|
505
985
|
/**
|
|
506
986
|
* 获取用户访问密钥资产列表(源IP视角)
|
|
507
987
|
*/
|
|
@@ -509,16 +989,52 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
509
989
|
return this.request("DescribeSourceIPAsset", req, cb);
|
|
510
990
|
}
|
|
511
991
|
/**
|
|
512
|
-
*
|
|
992
|
+
* 获取资产视角的配置风险列表
|
|
513
993
|
*/
|
|
514
|
-
async
|
|
515
|
-
return this.request("
|
|
994
|
+
async DescribeRiskCenterAssetViewCFGRiskList(req, cb) {
|
|
995
|
+
return this.request("DescribeRiskCenterAssetViewCFGRiskList", req, cb);
|
|
516
996
|
}
|
|
517
997
|
/**
|
|
518
|
-
*
|
|
998
|
+
* 获取扫描报告列表
|
|
519
999
|
*/
|
|
520
|
-
async
|
|
521
|
-
return this.request("
|
|
1000
|
+
async DescribeScanReportList(req, cb) {
|
|
1001
|
+
return this.request("DescribeScanReportList", req, cb);
|
|
1002
|
+
}
|
|
1003
|
+
/**
|
|
1004
|
+
* 修改Dspm身份信息
|
|
1005
|
+
*/
|
|
1006
|
+
async ModifyDspmIdentifyInfo(req, cb) {
|
|
1007
|
+
return this.request("ModifyDspmIdentifyInfo", req, cb);
|
|
1008
|
+
}
|
|
1009
|
+
/**
|
|
1010
|
+
* 创建Dspm个人身份id
|
|
1011
|
+
*/
|
|
1012
|
+
async CreateDspmPersonalIdentify(req, cb) {
|
|
1013
|
+
return this.request("CreateDspmPersonalIdentify", req, cb);
|
|
1014
|
+
}
|
|
1015
|
+
/**
|
|
1016
|
+
* 查询Dspm个人身份信息列表
|
|
1017
|
+
*/
|
|
1018
|
+
async DescribeDspmPersonalIdentifyList(req, cb) {
|
|
1019
|
+
return this.request("DescribeDspmPersonalIdentifyList", req, cb);
|
|
1020
|
+
}
|
|
1021
|
+
/**
|
|
1022
|
+
* 查询Dspm资产列表
|
|
1023
|
+
*/
|
|
1024
|
+
async DescribeDspmAssets(req, cb) {
|
|
1025
|
+
return this.request("DescribeDspmAssets", req, cb);
|
|
1026
|
+
}
|
|
1027
|
+
/**
|
|
1028
|
+
* 查询Dspm访问拓扑账号列表
|
|
1029
|
+
*/
|
|
1030
|
+
async DescribeDspmAccessTopologyAccounts(req, cb) {
|
|
1031
|
+
return this.request("DescribeDspmAccessTopologyAccounts", req, cb);
|
|
1032
|
+
}
|
|
1033
|
+
/**
|
|
1034
|
+
* 查询Dspm资产支持的权限
|
|
1035
|
+
*/
|
|
1036
|
+
async DescribeDspmAssetSupportedPrivileges(req, cb) {
|
|
1037
|
+
return this.request("DescribeDspmAssetSupportedPrivileges", req, cb);
|
|
522
1038
|
}
|
|
523
1039
|
/**
|
|
524
1040
|
* 获取报告下载的临时链接
|
|
@@ -538,11 +1054,23 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
538
1054
|
async DescribeAccessKeyRiskDetail(req, cb) {
|
|
539
1055
|
return this.request("DescribeAccessKeyRiskDetail", req, cb);
|
|
540
1056
|
}
|
|
1057
|
+
/**
|
|
1058
|
+
* 查询Dspm资产访问拓扑
|
|
1059
|
+
*/
|
|
1060
|
+
async DescribeDspmAssetAccessTopology(req, cb) {
|
|
1061
|
+
return this.request("DescribeDspmAssetAccessTopology", req, cb);
|
|
1062
|
+
}
|
|
541
1063
|
/**
|
|
542
1064
|
* 获取风险调用记录列表
|
|
543
1065
|
*/
|
|
544
1066
|
async DescribeRiskCallRecord(req, cb) {
|
|
545
1067
|
return this.request("DescribeRiskCallRecord", req, cb);
|
|
546
1068
|
}
|
|
1069
|
+
/**
|
|
1070
|
+
* 标记风险或者告警为 已处置/已忽略
|
|
1071
|
+
*/
|
|
1072
|
+
async UpdateAccessKeyAlarmStatus(req, cb) {
|
|
1073
|
+
return this.request("UpdateAccessKeyAlarmStatus", req, cb);
|
|
1074
|
+
}
|
|
547
1075
|
}
|
|
548
1076
|
exports.Client = Client;
|