tencentcloud-sdk-nodejs-csip 4.1.218 → 4.1.230
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 +303 -45
- package/package.json +1 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +391 -47
- package/tencentcloud/services/csip/v20221121/csip_client.js +585 -69
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +10991 -5629
|
@@ -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,36 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
220
430
|
async DescribeAlertList(req, cb) {
|
|
221
431
|
return this.request("DescribeAlertList", req, cb);
|
|
222
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* 同步dspm支持的资产
|
|
435
|
+
*/
|
|
436
|
+
async SyncDspmAssets(req, cb) {
|
|
437
|
+
return this.request("SyncDspmAssets", req, cb);
|
|
438
|
+
}
|
|
223
439
|
/**
|
|
224
440
|
* 风险详情列表示例
|
|
225
441
|
*/
|
|
226
442
|
async DescribeRiskDetailList(req, cb) {
|
|
227
443
|
return this.request("DescribeRiskDetailList", req, cb);
|
|
228
444
|
}
|
|
445
|
+
/**
|
|
446
|
+
* 查询Dspm访问拓扑ip列表
|
|
447
|
+
*/
|
|
448
|
+
async DescribeDspmAccessTopologyIps(req, cb) {
|
|
449
|
+
return this.request("DescribeDspmAccessTopologyIps", req, cb);
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* 查询Dspm资产账号身份信息
|
|
453
|
+
*/
|
|
454
|
+
async DescribeDspmAssetAccountIdentify(req, cb) {
|
|
455
|
+
return this.request("DescribeDspmAssetAccountIdentify", req, cb);
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* 创建Dspm身份列表导出任务
|
|
459
|
+
*/
|
|
460
|
+
async CreateDspmIdentifyInfoListExportJob(req, cb) {
|
|
461
|
+
return this.request("CreateDspmIdentifyInfoListExportJob", req, cb);
|
|
462
|
+
}
|
|
229
463
|
/**
|
|
230
464
|
* 获取资产视角的端口风险列表
|
|
231
465
|
*/
|
|
@@ -233,10 +467,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
233
467
|
return this.request("DescribeRiskCenterAssetViewPortRiskList", req, cb);
|
|
234
468
|
}
|
|
235
469
|
/**
|
|
236
|
-
*
|
|
470
|
+
* 获取已购Dspm订单信息
|
|
237
471
|
*/
|
|
238
|
-
async
|
|
239
|
-
return this.request("
|
|
472
|
+
async DescribeDspmPayInfo(req, cb) {
|
|
473
|
+
return this.request("DescribeDspmPayInfo", req, cb);
|
|
240
474
|
}
|
|
241
475
|
/**
|
|
242
476
|
* 获取配置视角的配置风险列表
|
|
@@ -244,6 +478,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
244
478
|
async DescribeRiskCenterCFGViewCFGRiskList(req, cb) {
|
|
245
479
|
return this.request("DescribeRiskCenterCFGViewCFGRiskList", req, cb);
|
|
246
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* 创建Dspm访问记录导出任务
|
|
483
|
+
*/
|
|
484
|
+
async CreateDspmAccessExportJob(req, cb) {
|
|
485
|
+
return this.request("CreateDspmAccessExportJob", req, cb);
|
|
486
|
+
}
|
|
247
487
|
/**
|
|
248
488
|
* 编辑访问密钥/源IP备注
|
|
249
489
|
*/
|
|
@@ -269,10 +509,46 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
269
509
|
return this.request("DescribeCVMAssetInfo", req, cb);
|
|
270
510
|
}
|
|
271
511
|
/**
|
|
272
|
-
*
|
|
512
|
+
* 获取任务扫描报告列表
|
|
273
513
|
*/
|
|
274
|
-
async
|
|
275
|
-
return this.request("
|
|
514
|
+
async DescribeTaskLogList(req, cb) {
|
|
515
|
+
return this.request("DescribeTaskLogList", req, cb);
|
|
516
|
+
}
|
|
517
|
+
/**
|
|
518
|
+
* 验证Dspm资产登录验证码
|
|
519
|
+
*/
|
|
520
|
+
async VerifyDspmAssetLoginCode(req, cb) {
|
|
521
|
+
return this.request("VerifyDspmAssetLoginCode", req, cb);
|
|
522
|
+
}
|
|
523
|
+
/**
|
|
524
|
+
* 查询Dspm访客申请记录
|
|
525
|
+
*/
|
|
526
|
+
async DescribeDspmPersonApplyHistory(req, cb) {
|
|
527
|
+
return this.request("DescribeDspmPersonApplyHistory", req, cb);
|
|
528
|
+
}
|
|
529
|
+
/**
|
|
530
|
+
* 修改Dspm审批单状态
|
|
531
|
+
*/
|
|
532
|
+
async ModifyDspmApproveStatus(req, cb) {
|
|
533
|
+
return this.request("ModifyDspmApproveStatus", req, cb);
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* 修改日志备份设置
|
|
537
|
+
*/
|
|
538
|
+
async ModifyDspmBackupSetting(req, cb) {
|
|
539
|
+
return this.request("ModifyDspmBackupSetting", req, cb);
|
|
540
|
+
}
|
|
541
|
+
/**
|
|
542
|
+
* 删除Dspm白名单策略
|
|
543
|
+
*/
|
|
544
|
+
async DeleteDspmWhitelistStrategy(req, cb) {
|
|
545
|
+
return this.request("DeleteDspmWhitelistStrategy", req, cb);
|
|
546
|
+
}
|
|
547
|
+
/**
|
|
548
|
+
* 查询Dspm白名单策略
|
|
549
|
+
*/
|
|
550
|
+
async DescribeDspmWhitelistStrategy(req, cb) {
|
|
551
|
+
return this.request("DescribeDspmWhitelistStrategy", req, cb);
|
|
276
552
|
}
|
|
277
553
|
/**
|
|
278
554
|
* 查询clb监听器列表
|
|
@@ -280,30 +556,84 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
280
556
|
async DescribeListenerList(req, cb) {
|
|
281
557
|
return this.request("DescribeListenerList", req, cb);
|
|
282
558
|
}
|
|
559
|
+
/**
|
|
560
|
+
* 查询Dspm申请历史
|
|
561
|
+
*/
|
|
562
|
+
async DescribeDspmApplyHistory(req, cb) {
|
|
563
|
+
return this.request("DescribeDspmApplyHistory", req, cb);
|
|
564
|
+
}
|
|
283
565
|
/**
|
|
284
566
|
* 集群pod列表
|
|
285
567
|
*/
|
|
286
568
|
async DescribeClusterPodAssets(req, cb) {
|
|
287
569
|
return this.request("DescribeClusterPodAssets", req, cb);
|
|
288
570
|
}
|
|
571
|
+
/**
|
|
572
|
+
* 删除备份日志
|
|
573
|
+
*/
|
|
574
|
+
async DeleteDspmBackupLogList(req, cb) {
|
|
575
|
+
return this.request("DeleteDspmBackupLogList", req, cb);
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* 查询dspm资产字段信息
|
|
579
|
+
*/
|
|
580
|
+
async DescribeDspmAssetFieldList(req, cb) {
|
|
581
|
+
return this.request("DescribeDspmAssetFieldList", req, cb);
|
|
582
|
+
}
|
|
289
583
|
/**
|
|
290
584
|
* 获取风险服务列表
|
|
291
585
|
*/
|
|
292
586
|
async DescribeRiskCenterServerRiskList(req, cb) {
|
|
293
587
|
return this.request("DescribeRiskCenterServerRiskList", req, cb);
|
|
294
588
|
}
|
|
589
|
+
/**
|
|
590
|
+
* 修改Dspm白名单策略
|
|
591
|
+
*/
|
|
592
|
+
async ModifyDspmWhitelistStrategy(req, cb) {
|
|
593
|
+
return this.request("ModifyDspmWhitelistStrategy", req, cb);
|
|
594
|
+
}
|
|
295
595
|
/**
|
|
296
596
|
* 获取调用记录列表
|
|
297
597
|
*/
|
|
298
598
|
async DescribeCallRecord(req, cb) {
|
|
299
599
|
return this.request("DescribeCallRecord", req, cb);
|
|
300
600
|
}
|
|
601
|
+
/**
|
|
602
|
+
* 删除恢复日志
|
|
603
|
+
*/
|
|
604
|
+
async DeleteDspmRestoreLogList(req, cb) {
|
|
605
|
+
return this.request("DeleteDspmRestoreLogList", req, cb);
|
|
606
|
+
}
|
|
607
|
+
/**
|
|
608
|
+
* 添加资产管理员
|
|
609
|
+
*/
|
|
610
|
+
async AddDspmAssetManager(req, cb) {
|
|
611
|
+
return this.request("AddDspmAssetManager", req, cb);
|
|
612
|
+
}
|
|
301
613
|
/**
|
|
302
614
|
* 云防资产中心统计数据
|
|
303
615
|
*/
|
|
304
616
|
async DescribeCFWAssetStatistics(req, cb) {
|
|
305
617
|
return this.request("DescribeCFWAssetStatistics", req, cb);
|
|
306
618
|
}
|
|
619
|
+
/**
|
|
620
|
+
* 停止扫风险中心扫描任务
|
|
621
|
+
*/
|
|
622
|
+
async StopRiskCenterTask(req, cb) {
|
|
623
|
+
return this.request("StopRiskCenterTask", req, cb);
|
|
624
|
+
}
|
|
625
|
+
/**
|
|
626
|
+
* 创建Dspm风险导出任务
|
|
627
|
+
*/
|
|
628
|
+
async CreateDspmRiskExportJob(req, cb) {
|
|
629
|
+
return this.request("CreateDspmRiskExportJob", req, cb);
|
|
630
|
+
}
|
|
631
|
+
/**
|
|
632
|
+
* 创建Dspm审批历史导出任务
|
|
633
|
+
*/
|
|
634
|
+
async CreateDspmApproveHistoryExportJob(req, cb) {
|
|
635
|
+
return this.request("CreateDspmApproveHistoryExportJob", req, cb);
|
|
636
|
+
}
|
|
307
637
|
/**
|
|
308
638
|
* 查询云边界分析路径节点
|
|
309
639
|
*/
|
|
@@ -316,6 +646,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
316
646
|
async DescribeGatewayAssets(req, cb) {
|
|
317
647
|
return this.request("DescribeGatewayAssets", req, cb);
|
|
318
648
|
}
|
|
649
|
+
/**
|
|
650
|
+
* 创建日志导出任务
|
|
651
|
+
*/
|
|
652
|
+
async CreateDspmExportTask(req, cb) {
|
|
653
|
+
return this.request("CreateDspmExportTask", req, cb);
|
|
654
|
+
}
|
|
655
|
+
/**
|
|
656
|
+
* 删除导出任务
|
|
657
|
+
*/
|
|
658
|
+
async DeleteDspmExportTask(req, cb) {
|
|
659
|
+
return this.request("DeleteDspmExportTask", req, cb);
|
|
660
|
+
}
|
|
319
661
|
/**
|
|
320
662
|
* 访问密钥告警记录列表
|
|
321
663
|
*/
|
|
@@ -323,10 +665,22 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
323
665
|
return this.request("DescribeAccessKeyAlarm", req, cb);
|
|
324
666
|
}
|
|
325
667
|
/**
|
|
326
|
-
*
|
|
668
|
+
* 修改DspmIp信息
|
|
327
669
|
*/
|
|
328
|
-
async
|
|
329
|
-
return this.request("
|
|
670
|
+
async ModifyDspmIpInfo(req, cb) {
|
|
671
|
+
return this.request("ModifyDspmIpInfo", req, cb);
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* 获取账号调用记录列表
|
|
675
|
+
*/
|
|
676
|
+
async DescribeUserCallRecord(req, cb) {
|
|
677
|
+
return this.request("DescribeUserCallRecord", req, cb);
|
|
678
|
+
}
|
|
679
|
+
/**
|
|
680
|
+
* 查询资产表信息
|
|
681
|
+
*/
|
|
682
|
+
async DescribeDspmAssetTableList(req, cb) {
|
|
683
|
+
return this.request("DescribeDspmAssetTableList", req, cb);
|
|
330
684
|
}
|
|
331
685
|
/**
|
|
332
686
|
* 修改风险中心风险状态
|
|
@@ -335,10 +689,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
335
689
|
return this.request("ModifyRiskCenterRiskStatus", req, cb);
|
|
336
690
|
}
|
|
337
691
|
/**
|
|
338
|
-
*
|
|
692
|
+
* 查询Dspm访问拓扑资产列表
|
|
339
693
|
*/
|
|
340
|
-
async
|
|
341
|
-
return this.request("
|
|
694
|
+
async DescribeDspmAccessTopologyAssets(req, cb) {
|
|
695
|
+
return this.request("DescribeDspmAccessTopologyAssets", req, cb);
|
|
696
|
+
}
|
|
697
|
+
/**
|
|
698
|
+
* ip公网列表
|
|
699
|
+
*/
|
|
700
|
+
async DescribePublicIpAssets(req, cb) {
|
|
701
|
+
return this.request("DescribePublicIpAssets", req, cb);
|
|
342
702
|
}
|
|
343
703
|
/**
|
|
344
704
|
* 云边界分析资产分类
|
|
@@ -358,18 +718,72 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
358
718
|
async CreateRiskCenterScanTask(req, cb) {
|
|
359
719
|
return this.request("CreateRiskCenterScanTask", req, cb);
|
|
360
720
|
}
|
|
721
|
+
/**
|
|
722
|
+
* 查询Dspm资产账号列表
|
|
723
|
+
*/
|
|
724
|
+
async DescribeDspmAssetAccounts(req, cb) {
|
|
725
|
+
return this.request("DescribeDspmAssetAccounts", req, cb);
|
|
726
|
+
}
|
|
727
|
+
/**
|
|
728
|
+
* 恢复Dspm资产账号
|
|
729
|
+
*/
|
|
730
|
+
async RevertDspmAssetAccount(req, cb) {
|
|
731
|
+
return this.request("RevertDspmAssetAccount", req, cb);
|
|
732
|
+
}
|
|
361
733
|
/**
|
|
362
734
|
* 查询漏洞风险高级配置
|
|
363
735
|
*/
|
|
364
736
|
async DescribeVULRiskAdvanceCFGList(req, cb) {
|
|
365
737
|
return this.request("DescribeVULRiskAdvanceCFGList", req, cb);
|
|
366
738
|
}
|
|
739
|
+
/**
|
|
740
|
+
* 查询Dspm风险分组策略
|
|
741
|
+
*/
|
|
742
|
+
async DescribeDspmRiskStrategyGroup(req, cb) {
|
|
743
|
+
return this.request("DescribeDspmRiskStrategyGroup", req, cb);
|
|
744
|
+
}
|
|
745
|
+
/**
|
|
746
|
+
* 查询是否绑定角色
|
|
747
|
+
*/
|
|
748
|
+
async DescribeAssumeRole(req, cb) {
|
|
749
|
+
return this.request("DescribeAssumeRole", req, cb);
|
|
750
|
+
}
|
|
751
|
+
/**
|
|
752
|
+
* 查询Dspm风险趋势
|
|
753
|
+
*/
|
|
754
|
+
async DescribeDspmRiskTendency(req, cb) {
|
|
755
|
+
return this.request("DescribeDspmRiskTendency", req, cb);
|
|
756
|
+
}
|
|
367
757
|
/**
|
|
368
758
|
* 集群列表
|
|
369
759
|
*/
|
|
370
760
|
async DescribeClusterAssets(req, cb) {
|
|
371
761
|
return this.request("DescribeClusterAssets", req, cb);
|
|
372
762
|
}
|
|
763
|
+
/**
|
|
764
|
+
* 修改Dspm资产数据扫描任务
|
|
765
|
+
*/
|
|
766
|
+
async ModifyDspmAssetDataScanTask(req, cb) {
|
|
767
|
+
return this.request("ModifyDspmAssetDataScanTask", req, cb);
|
|
768
|
+
}
|
|
769
|
+
/**
|
|
770
|
+
* 修改集团账号状态
|
|
771
|
+
*/
|
|
772
|
+
async ModifyOrganizationAccountStatus(req, cb) {
|
|
773
|
+
return this.request("ModifyOrganizationAccountStatus", req, cb);
|
|
774
|
+
}
|
|
775
|
+
/**
|
|
776
|
+
* 查询Dspm访问记录
|
|
777
|
+
*/
|
|
778
|
+
async DescribeDspmAccessRecord(req, cb) {
|
|
779
|
+
return this.request("DescribeDspmAccessRecord", req, cb);
|
|
780
|
+
}
|
|
781
|
+
/**
|
|
782
|
+
* 修改Dspm个人身份id
|
|
783
|
+
*/
|
|
784
|
+
async ModifyDspmPersonalIdentify(req, cb) {
|
|
785
|
+
return this.request("ModifyDspmPersonalIdentify", req, cb);
|
|
786
|
+
}
|
|
373
787
|
/**
|
|
374
788
|
* 查询用户行为分析策略列表
|
|
375
789
|
*/
|
|
@@ -377,10 +791,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
377
791
|
return this.request("DescribeUebaRule", req, cb);
|
|
378
792
|
}
|
|
379
793
|
/**
|
|
380
|
-
*
|
|
794
|
+
* 查询Dspm资产账号预设特权信息
|
|
381
795
|
*/
|
|
382
|
-
async
|
|
383
|
-
return this.request("
|
|
796
|
+
async DescribeDspmAssetAccountPresetPrivileges(req, cb) {
|
|
797
|
+
return this.request("DescribeDspmAssetAccountPresetPrivileges", req, cb);
|
|
384
798
|
}
|
|
385
799
|
/**
|
|
386
800
|
* 查询凭证详情,返回凭证元数据和打码后的凭据数据。access类型返回Access数组(Key原文、Value打码),sts类型返回STS对象(System原文、SecretID和SecretKey打码)
|
|
@@ -394,12 +808,42 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
394
808
|
async DescribeScanStatistic(req, cb) {
|
|
395
809
|
return this.request("DescribeScanStatistic", req, cb);
|
|
396
810
|
}
|
|
811
|
+
/**
|
|
812
|
+
* 查询Dspm同步用户状态
|
|
813
|
+
*/
|
|
814
|
+
async DescribeDspmSyncUsersStatus(req, cb) {
|
|
815
|
+
return this.request("DescribeDspmSyncUsersStatus", req, cb);
|
|
816
|
+
}
|
|
397
817
|
/**
|
|
398
818
|
* 新安全中心风险中心-漏洞列表
|
|
399
819
|
*/
|
|
400
820
|
async DescribeVULList(req, cb) {
|
|
401
821
|
return this.request("DescribeVULList", req, cb);
|
|
402
822
|
}
|
|
823
|
+
/**
|
|
824
|
+
* 重置Dspm资产账号密码
|
|
825
|
+
*/
|
|
826
|
+
async ResetDspmAssetAccountPassword(req, cb) {
|
|
827
|
+
return this.request("ResetDspmAssetAccountPassword", req, cb);
|
|
828
|
+
}
|
|
829
|
+
/**
|
|
830
|
+
* 查询Dspm身份信息
|
|
831
|
+
*/
|
|
832
|
+
async DescribeDspmIdentifyInfo(req, cb) {
|
|
833
|
+
return this.request("DescribeDspmIdentifyInfo", req, cb);
|
|
834
|
+
}
|
|
835
|
+
/**
|
|
836
|
+
* 查询Dspm统计信息
|
|
837
|
+
*/
|
|
838
|
+
async DescribeDspmStatistics(req, cb) {
|
|
839
|
+
return this.request("DescribeDspmStatistics", req, cb);
|
|
840
|
+
}
|
|
841
|
+
/**
|
|
842
|
+
* 下载导出日志
|
|
843
|
+
*/
|
|
844
|
+
async DownloadDspmExportLog(req, cb) {
|
|
845
|
+
return this.request("DownloadDspmExportLog", req, cb);
|
|
846
|
+
}
|
|
403
847
|
/**
|
|
404
848
|
* 访问密钥告警记录AI分析结果详情
|
|
405
849
|
*/
|
|
@@ -413,28 +857,40 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
413
857
|
return this.request("DescribeAccessKeyUserDetail", req, cb);
|
|
414
858
|
}
|
|
415
859
|
/**
|
|
416
|
-
*
|
|
860
|
+
* 查询Dspm审批单列表
|
|
417
861
|
*/
|
|
418
|
-
async
|
|
419
|
-
return this.request("
|
|
862
|
+
async DescribeDspmApproveOrderList(req, cb) {
|
|
863
|
+
return this.request("DescribeDspmApproveOrderList", req, cb);
|
|
420
864
|
}
|
|
421
865
|
/**
|
|
422
|
-
*
|
|
866
|
+
* 删除风险中心扫描任务
|
|
423
867
|
*/
|
|
424
|
-
async
|
|
425
|
-
return this.request("
|
|
868
|
+
async DeleteRiskScanTask(req, cb) {
|
|
869
|
+
return this.request("DeleteRiskScanTask", req, cb);
|
|
426
870
|
}
|
|
427
871
|
/**
|
|
428
|
-
*
|
|
872
|
+
* 获取资产视角的弱口令风险列表
|
|
429
873
|
*/
|
|
430
|
-
async
|
|
431
|
-
return this.request("
|
|
874
|
+
async DescribeRiskCenterAssetViewWeakPasswordRiskList(req, cb) {
|
|
875
|
+
return this.request("DescribeRiskCenterAssetViewWeakPasswordRiskList", req, cb);
|
|
432
876
|
}
|
|
433
877
|
/**
|
|
434
|
-
*
|
|
878
|
+
* 查询备份日志列表
|
|
435
879
|
*/
|
|
436
|
-
async
|
|
437
|
-
return this.request("
|
|
880
|
+
async DescribeDspmBackupLogList(req, cb) {
|
|
881
|
+
return this.request("DescribeDspmBackupLogList", req, cb);
|
|
882
|
+
}
|
|
883
|
+
/**
|
|
884
|
+
* 创建Dspm白名单策略
|
|
885
|
+
*/
|
|
886
|
+
async CreateDspmWhitelistStrategy(req, cb) {
|
|
887
|
+
return this.request("CreateDspmWhitelistStrategy", req, cb);
|
|
888
|
+
}
|
|
889
|
+
/**
|
|
890
|
+
* 恢复备份日志
|
|
891
|
+
*/
|
|
892
|
+
async ModifyDspmRestoreLogTask(req, cb) {
|
|
893
|
+
return this.request("ModifyDspmRestoreLogTask", req, cb);
|
|
438
894
|
}
|
|
439
895
|
/**
|
|
440
896
|
* 修改风险中心扫描任务
|
|
@@ -449,10 +905,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
449
905
|
return this.request("DescribeCheckViewRisks", req, cb);
|
|
450
906
|
}
|
|
451
907
|
/**
|
|
452
|
-
*
|
|
908
|
+
* 资产视角下云资源配置风险列表
|
|
453
909
|
*/
|
|
454
|
-
async
|
|
455
|
-
return this.request("
|
|
910
|
+
async DescribeAssetRiskList(req, cb) {
|
|
911
|
+
return this.request("DescribeAssetRiskList", req, cb);
|
|
456
912
|
}
|
|
457
913
|
/**
|
|
458
914
|
* 更新自定义策略的开关
|
|
@@ -473,16 +929,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
473
929
|
return this.request("DescribeSearchBugInfo", req, cb);
|
|
474
930
|
}
|
|
475
931
|
/**
|
|
476
|
-
*
|
|
477
|
-
*/
|
|
478
|
-
async DescribePublicIpAssets(req, cb) {
|
|
479
|
-
return this.request("DescribePublicIpAssets", req, cb);
|
|
480
|
-
}
|
|
481
|
-
/**
|
|
482
|
-
* 获取资产视角的弱口令风险列表
|
|
932
|
+
* 查询集团的子账号列表
|
|
483
933
|
*/
|
|
484
|
-
async
|
|
485
|
-
return this.request("
|
|
934
|
+
async DescribeSubUserInfo(req, cb) {
|
|
935
|
+
return this.request("DescribeSubUserInfo", req, cb);
|
|
486
936
|
}
|
|
487
937
|
/**
|
|
488
938
|
* 获取漏洞视角的漏洞风险列表
|
|
@@ -490,18 +940,36 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
490
940
|
async DescribeVulViewVulRiskList(req, cb) {
|
|
491
941
|
return this.request("DescribeVulViewVulRiskList", req, cb);
|
|
492
942
|
}
|
|
943
|
+
/**
|
|
944
|
+
* 获取资产视角的漏洞风险列表
|
|
945
|
+
*/
|
|
946
|
+
async DescribeRiskCenterAssetViewVULRiskList(req, cb) {
|
|
947
|
+
return this.request("DescribeRiskCenterAssetViewVULRiskList", req, cb);
|
|
948
|
+
}
|
|
493
949
|
/**
|
|
494
950
|
* 创建域名、ip相关信息
|
|
495
951
|
*/
|
|
496
952
|
async CreateDomainAndIp(req, cb) {
|
|
497
953
|
return this.request("CreateDomainAndIp", req, cb);
|
|
498
954
|
}
|
|
955
|
+
/**
|
|
956
|
+
* 修改Dspm访问管理信息
|
|
957
|
+
*/
|
|
958
|
+
async ModifyDspmAccessRecord(req, cb) {
|
|
959
|
+
return this.request("ModifyDspmAccessRecord", req, cb);
|
|
960
|
+
}
|
|
499
961
|
/**
|
|
500
962
|
* 批量告警状态处理接口
|
|
501
963
|
*/
|
|
502
964
|
async UpdateAlertStatusList(req, cb) {
|
|
503
965
|
return this.request("UpdateAlertStatusList", req, cb);
|
|
504
966
|
}
|
|
967
|
+
/**
|
|
968
|
+
* 查询云边界分析-暴露路径下主机节点的高危基线风险列表
|
|
969
|
+
*/
|
|
970
|
+
async DescribeHighBaseLineRiskList(req, cb) {
|
|
971
|
+
return this.request("DescribeHighBaseLineRiskList", req, cb);
|
|
972
|
+
}
|
|
505
973
|
/**
|
|
506
974
|
* 获取用户访问密钥资产列表(源IP视角)
|
|
507
975
|
*/
|
|
@@ -509,16 +977,52 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
509
977
|
return this.request("DescribeSourceIPAsset", req, cb);
|
|
510
978
|
}
|
|
511
979
|
/**
|
|
512
|
-
*
|
|
980
|
+
* 获取资产视角的配置风险列表
|
|
513
981
|
*/
|
|
514
|
-
async
|
|
515
|
-
return this.request("
|
|
982
|
+
async DescribeRiskCenterAssetViewCFGRiskList(req, cb) {
|
|
983
|
+
return this.request("DescribeRiskCenterAssetViewCFGRiskList", req, cb);
|
|
516
984
|
}
|
|
517
985
|
/**
|
|
518
|
-
*
|
|
986
|
+
* 获取扫描报告列表
|
|
519
987
|
*/
|
|
520
|
-
async
|
|
521
|
-
return this.request("
|
|
988
|
+
async DescribeScanReportList(req, cb) {
|
|
989
|
+
return this.request("DescribeScanReportList", req, cb);
|
|
990
|
+
}
|
|
991
|
+
/**
|
|
992
|
+
* 修改Dspm身份信息
|
|
993
|
+
*/
|
|
994
|
+
async ModifyDspmIdentifyInfo(req, cb) {
|
|
995
|
+
return this.request("ModifyDspmIdentifyInfo", req, cb);
|
|
996
|
+
}
|
|
997
|
+
/**
|
|
998
|
+
* 创建Dspm个人身份id
|
|
999
|
+
*/
|
|
1000
|
+
async CreateDspmPersonalIdentify(req, cb) {
|
|
1001
|
+
return this.request("CreateDspmPersonalIdentify", req, cb);
|
|
1002
|
+
}
|
|
1003
|
+
/**
|
|
1004
|
+
* 查询Dspm个人身份信息列表
|
|
1005
|
+
*/
|
|
1006
|
+
async DescribeDspmPersonalIdentifyList(req, cb) {
|
|
1007
|
+
return this.request("DescribeDspmPersonalIdentifyList", req, cb);
|
|
1008
|
+
}
|
|
1009
|
+
/**
|
|
1010
|
+
* 查询Dspm资产列表
|
|
1011
|
+
*/
|
|
1012
|
+
async DescribeDspmAssets(req, cb) {
|
|
1013
|
+
return this.request("DescribeDspmAssets", req, cb);
|
|
1014
|
+
}
|
|
1015
|
+
/**
|
|
1016
|
+
* 查询Dspm访问拓扑账号列表
|
|
1017
|
+
*/
|
|
1018
|
+
async DescribeDspmAccessTopologyAccounts(req, cb) {
|
|
1019
|
+
return this.request("DescribeDspmAccessTopologyAccounts", req, cb);
|
|
1020
|
+
}
|
|
1021
|
+
/**
|
|
1022
|
+
* 查询Dspm资产支持的权限
|
|
1023
|
+
*/
|
|
1024
|
+
async DescribeDspmAssetSupportedPrivileges(req, cb) {
|
|
1025
|
+
return this.request("DescribeDspmAssetSupportedPrivileges", req, cb);
|
|
522
1026
|
}
|
|
523
1027
|
/**
|
|
524
1028
|
* 获取报告下载的临时链接
|
|
@@ -538,11 +1042,23 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
538
1042
|
async DescribeAccessKeyRiskDetail(req, cb) {
|
|
539
1043
|
return this.request("DescribeAccessKeyRiskDetail", req, cb);
|
|
540
1044
|
}
|
|
1045
|
+
/**
|
|
1046
|
+
* 查询Dspm资产访问拓扑
|
|
1047
|
+
*/
|
|
1048
|
+
async DescribeDspmAssetAccessTopology(req, cb) {
|
|
1049
|
+
return this.request("DescribeDspmAssetAccessTopology", req, cb);
|
|
1050
|
+
}
|
|
541
1051
|
/**
|
|
542
1052
|
* 获取风险调用记录列表
|
|
543
1053
|
*/
|
|
544
1054
|
async DescribeRiskCallRecord(req, cb) {
|
|
545
1055
|
return this.request("DescribeRiskCallRecord", req, cb);
|
|
546
1056
|
}
|
|
1057
|
+
/**
|
|
1058
|
+
* 标记风险或者告警为 已处置/已忽略
|
|
1059
|
+
*/
|
|
1060
|
+
async UpdateAccessKeyAlarmStatus(req, cb) {
|
|
1061
|
+
return this.request("UpdateAccessKeyAlarmStatus", req, cb);
|
|
1062
|
+
}
|
|
547
1063
|
}
|
|
548
1064
|
exports.Client = Client;
|