tencentcloud-sdk-nodejs-csip 4.1.201 → 4.1.203
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 +155 -146
- package/package.json +1 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +167 -155
- package/tencentcloud/services/csip/v20221121/csip_client.js +249 -231
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +354 -100
|
@@ -28,30 +28,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
constructor(clientConfig) {
|
|
29
29
|
super("csip.tencentcloudapi.com", "2022-11-21", clientConfig);
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
* 查询用户行为分析策略列表
|
|
33
|
-
*/
|
|
34
|
-
async DescribeUebaRule(req, cb) {
|
|
35
|
-
return this.request("DescribeUebaRule", req, cb);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* 获取任务扫描报告列表
|
|
39
|
-
*/
|
|
40
|
-
async DescribeTaskLogList(req, cb) {
|
|
41
|
-
return this.request("DescribeTaskLogList", req, cb);
|
|
42
|
-
}
|
|
43
31
|
/**
|
|
44
32
|
* 删除域名和ip请求
|
|
45
33
|
*/
|
|
46
34
|
async DeleteDomainAndIp(req, cb) {
|
|
47
35
|
return this.request("DeleteDomainAndIp", req, cb);
|
|
48
36
|
}
|
|
49
|
-
/**
|
|
50
|
-
* 查询云边界分析-暴露路径下主机节点的漏洞列表
|
|
51
|
-
*/
|
|
52
|
-
async DescribeVulRiskList(req, cb) {
|
|
53
|
-
return this.request("DescribeVulRiskList", req, cb);
|
|
54
|
-
}
|
|
55
37
|
/**
|
|
56
38
|
* 查询风险规则详情示例
|
|
57
39
|
*/
|
|
@@ -71,148 +53,148 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
71
53
|
return this.request("DescribeNICAssets", req, cb);
|
|
72
54
|
}
|
|
73
55
|
/**
|
|
74
|
-
*
|
|
56
|
+
* 域名列表
|
|
75
57
|
*/
|
|
76
|
-
async
|
|
77
|
-
return this.request("
|
|
58
|
+
async DescribeDomainAssets(req, cb) {
|
|
59
|
+
return this.request("DescribeDomainAssets", req, cb);
|
|
78
60
|
}
|
|
79
61
|
/**
|
|
80
|
-
*
|
|
62
|
+
* 获取 AI agent 资产列表
|
|
81
63
|
*/
|
|
82
|
-
async
|
|
83
|
-
return this.request("
|
|
64
|
+
async DescribeAIAgentAssetList(req, cb) {
|
|
65
|
+
return this.request("DescribeAIAgentAssetList", req, cb);
|
|
84
66
|
}
|
|
85
67
|
/**
|
|
86
|
-
*
|
|
68
|
+
* 查询用户的账号列表
|
|
87
69
|
*/
|
|
88
|
-
async
|
|
89
|
-
return this.request("
|
|
70
|
+
async DescribeAccessKeyUserList(req, cb) {
|
|
71
|
+
return this.request("DescribeAccessKeyUserList", req, cb);
|
|
90
72
|
}
|
|
91
73
|
/**
|
|
92
|
-
*
|
|
74
|
+
* 云资源配置风险规则列表示例
|
|
93
75
|
*/
|
|
94
|
-
async
|
|
95
|
-
return this.request("
|
|
76
|
+
async DescribeConfigCheckRules(req, cb) {
|
|
77
|
+
return this.request("DescribeConfigCheckRules", req, cb);
|
|
96
78
|
}
|
|
97
79
|
/**
|
|
98
|
-
*
|
|
80
|
+
* 获取vpc列表
|
|
99
81
|
*/
|
|
100
|
-
async
|
|
101
|
-
return this.request("
|
|
82
|
+
async DescribeVpcAssets(req, cb) {
|
|
83
|
+
return this.request("DescribeVpcAssets", req, cb);
|
|
102
84
|
}
|
|
103
85
|
/**
|
|
104
|
-
*
|
|
86
|
+
* 获取资产视角的漏洞风险列表
|
|
105
87
|
*/
|
|
106
|
-
async
|
|
107
|
-
return this.request("
|
|
88
|
+
async DescribeAssetViewVulRiskList(req, cb) {
|
|
89
|
+
return this.request("DescribeAssetViewVulRiskList", req, cb);
|
|
108
90
|
}
|
|
109
91
|
/**
|
|
110
|
-
*
|
|
92
|
+
* 获取漏洞展开详情
|
|
111
93
|
*/
|
|
112
|
-
async
|
|
113
|
-
return this.request("
|
|
94
|
+
async DescribeVULRiskDetail(req, cb) {
|
|
95
|
+
return this.request("DescribeVULRiskDetail", req, cb);
|
|
114
96
|
}
|
|
115
97
|
/**
|
|
116
|
-
*
|
|
98
|
+
* 获取内容风险列表
|
|
117
99
|
*/
|
|
118
|
-
async
|
|
119
|
-
return this.request("
|
|
100
|
+
async DescribeRiskCenterWebsiteRiskList(req, cb) {
|
|
101
|
+
return this.request("DescribeRiskCenterWebsiteRiskList", req, cb);
|
|
120
102
|
}
|
|
121
103
|
/**
|
|
122
|
-
*
|
|
104
|
+
* 停止扫风险中心扫描任务
|
|
123
105
|
*/
|
|
124
|
-
async
|
|
125
|
-
return this.request("
|
|
106
|
+
async StopRiskCenterTask(req, cb) {
|
|
107
|
+
return this.request("StopRiskCenterTask", req, cb);
|
|
126
108
|
}
|
|
127
109
|
/**
|
|
128
|
-
*
|
|
110
|
+
* 高级配置风险规则列表示例
|
|
129
111
|
*/
|
|
130
|
-
async
|
|
131
|
-
return this.request("
|
|
112
|
+
async DescribeRiskRules(req, cb) {
|
|
113
|
+
return this.request("DescribeRiskRules", req, cb);
|
|
132
114
|
}
|
|
133
115
|
/**
|
|
134
|
-
* 查询
|
|
116
|
+
* 查询TOP攻击信息
|
|
135
117
|
*/
|
|
136
|
-
async
|
|
137
|
-
return this.request("
|
|
118
|
+
async DescribeTopAttackInfo(req, cb) {
|
|
119
|
+
return this.request("DescribeTopAttackInfo", req, cb);
|
|
138
120
|
}
|
|
139
121
|
/**
|
|
140
|
-
*
|
|
122
|
+
* 资产视角下云资源配置风险列表
|
|
141
123
|
*/
|
|
142
|
-
async
|
|
143
|
-
return this.request("
|
|
124
|
+
async DescribeAssetRiskList(req, cb) {
|
|
125
|
+
return this.request("DescribeAssetRiskList", req, cb);
|
|
144
126
|
}
|
|
145
127
|
/**
|
|
146
|
-
*
|
|
128
|
+
* 获取扫描报告列表
|
|
147
129
|
*/
|
|
148
|
-
async
|
|
149
|
-
return this.request("
|
|
130
|
+
async DescribeScanReportList(req, cb) {
|
|
131
|
+
return this.request("DescribeScanReportList", req, cb);
|
|
150
132
|
}
|
|
151
133
|
/**
|
|
152
|
-
*
|
|
134
|
+
* 查询集团的子账号列表
|
|
153
135
|
*/
|
|
154
|
-
async
|
|
155
|
-
return this.request("
|
|
136
|
+
async DescribeSubUserInfo(req, cb) {
|
|
137
|
+
return this.request("DescribeSubUserInfo", req, cb);
|
|
156
138
|
}
|
|
157
139
|
/**
|
|
158
|
-
*
|
|
140
|
+
* 获取扫描任务列表
|
|
159
141
|
*/
|
|
160
|
-
async
|
|
161
|
-
return this.request("
|
|
142
|
+
async DescribeScanTaskList(req, cb) {
|
|
143
|
+
return this.request("DescribeScanTaskList", req, cb);
|
|
162
144
|
}
|
|
163
145
|
/**
|
|
164
|
-
*
|
|
146
|
+
* 访问密钥告警记录详情
|
|
165
147
|
*/
|
|
166
|
-
async
|
|
167
|
-
return this.request("
|
|
148
|
+
async DescribeAccessKeyAlarmDetail(req, cb) {
|
|
149
|
+
return this.request("DescribeAccessKeyAlarmDetail", req, cb);
|
|
168
150
|
}
|
|
169
151
|
/**
|
|
170
|
-
*
|
|
152
|
+
* 查询集团账号用户列表
|
|
171
153
|
*/
|
|
172
|
-
async
|
|
173
|
-
return this.request("
|
|
154
|
+
async DescribeOrganizationUserInfo(req, cb) {
|
|
155
|
+
return this.request("DescribeOrganizationUserInfo", req, cb);
|
|
174
156
|
}
|
|
175
157
|
/**
|
|
176
|
-
*
|
|
158
|
+
* 检测AK 异步任务
|
|
177
159
|
*/
|
|
178
|
-
async
|
|
179
|
-
return this.request("
|
|
160
|
+
async CreateAccessKeyCheckTask(req, cb) {
|
|
161
|
+
return this.request("CreateAccessKeyCheckTask", req, cb);
|
|
180
162
|
}
|
|
181
163
|
/**
|
|
182
|
-
*
|
|
164
|
+
* 获取子网列表
|
|
183
165
|
*/
|
|
184
|
-
async
|
|
185
|
-
return this.request("
|
|
166
|
+
async DescribeSubnetAssets(req, cb) {
|
|
167
|
+
return this.request("DescribeSubnetAssets", req, cb);
|
|
186
168
|
}
|
|
187
169
|
/**
|
|
188
|
-
*
|
|
170
|
+
* 获取用户访问密钥资产列表
|
|
189
171
|
*/
|
|
190
|
-
async
|
|
191
|
-
return this.request("
|
|
172
|
+
async DescribeAccessKeyAsset(req, cb) {
|
|
173
|
+
return this.request("DescribeAccessKeyAsset", req, cb);
|
|
192
174
|
}
|
|
193
175
|
/**
|
|
194
|
-
*
|
|
176
|
+
* 获取调用记录列表
|
|
195
177
|
*/
|
|
196
|
-
async
|
|
197
|
-
return this.request("
|
|
178
|
+
async DescribeAbnormalCallRecord(req, cb) {
|
|
179
|
+
return this.request("DescribeAbnormalCallRecord", req, cb);
|
|
198
180
|
}
|
|
199
181
|
/**
|
|
200
|
-
*
|
|
182
|
+
* 获取漏洞视角的漏洞风险列表
|
|
201
183
|
*/
|
|
202
|
-
async
|
|
203
|
-
return this.request("
|
|
184
|
+
async DescribeRiskCenterVULViewVULRiskList(req, cb) {
|
|
185
|
+
return this.request("DescribeRiskCenterVULViewVULRiskList", req, cb);
|
|
204
186
|
}
|
|
205
187
|
/**
|
|
206
|
-
*
|
|
188
|
+
* csip角色授权绑定接口
|
|
207
189
|
*/
|
|
208
|
-
async
|
|
209
|
-
return this.request("
|
|
190
|
+
async AddNewBindRoleUser(req, cb) {
|
|
191
|
+
return this.request("AddNewBindRoleUser", req, cb);
|
|
210
192
|
}
|
|
211
193
|
/**
|
|
212
|
-
*
|
|
194
|
+
* 查询凭证列表
|
|
213
195
|
*/
|
|
214
|
-
async
|
|
215
|
-
return this.request("
|
|
196
|
+
async DescribeKeySandboxCredentialList(req, cb) {
|
|
197
|
+
return this.request("DescribeKeySandboxCredentialList", req, cb);
|
|
216
198
|
}
|
|
217
199
|
/**
|
|
218
200
|
* 获取cvm列表
|
|
@@ -221,58 +203,58 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
221
203
|
return this.request("DescribeCVMAssets", req, cb);
|
|
222
204
|
}
|
|
223
205
|
/**
|
|
224
|
-
*
|
|
206
|
+
* 查询集团账号详情
|
|
225
207
|
*/
|
|
226
|
-
async
|
|
227
|
-
return this.request("
|
|
208
|
+
async DescribeOrganizationInfo(req, cb) {
|
|
209
|
+
return this.request("DescribeOrganizationInfo", req, cb);
|
|
228
210
|
}
|
|
229
211
|
/**
|
|
230
|
-
*
|
|
212
|
+
* 获取账号调用记录列表
|
|
231
213
|
*/
|
|
232
|
-
async
|
|
233
|
-
return this.request("
|
|
214
|
+
async DescribeUserCallRecord(req, cb) {
|
|
215
|
+
return this.request("DescribeUserCallRecord", req, cb);
|
|
234
216
|
}
|
|
235
217
|
/**
|
|
236
|
-
*
|
|
218
|
+
* 告警中心全量告警列表接口
|
|
237
219
|
*/
|
|
238
|
-
async
|
|
239
|
-
return this.request("
|
|
220
|
+
async DescribeAlertList(req, cb) {
|
|
221
|
+
return this.request("DescribeAlertList", req, cb);
|
|
240
222
|
}
|
|
241
223
|
/**
|
|
242
|
-
*
|
|
224
|
+
* 风险详情列表示例
|
|
243
225
|
*/
|
|
244
|
-
async
|
|
245
|
-
return this.request("
|
|
226
|
+
async DescribeRiskDetailList(req, cb) {
|
|
227
|
+
return this.request("DescribeRiskDetailList", req, cb);
|
|
246
228
|
}
|
|
247
229
|
/**
|
|
248
|
-
*
|
|
230
|
+
* 获取资产视角的端口风险列表
|
|
249
231
|
*/
|
|
250
|
-
async
|
|
251
|
-
return this.request("
|
|
232
|
+
async DescribeRiskCenterAssetViewPortRiskList(req, cb) {
|
|
233
|
+
return this.request("DescribeRiskCenterAssetViewPortRiskList", req, cb);
|
|
252
234
|
}
|
|
253
235
|
/**
|
|
254
|
-
*
|
|
236
|
+
* 云边界分析资产列表
|
|
255
237
|
*/
|
|
256
|
-
async
|
|
257
|
-
return this.request("
|
|
238
|
+
async DescribeExposures(req, cb) {
|
|
239
|
+
return this.request("DescribeExposures", req, cb);
|
|
258
240
|
}
|
|
259
241
|
/**
|
|
260
|
-
*
|
|
242
|
+
* 获取配置视角的配置风险列表
|
|
261
243
|
*/
|
|
262
|
-
async
|
|
263
|
-
return this.request("
|
|
244
|
+
async DescribeRiskCenterCFGViewCFGRiskList(req, cb) {
|
|
245
|
+
return this.request("DescribeRiskCenterCFGViewCFGRiskList", req, cb);
|
|
264
246
|
}
|
|
265
247
|
/**
|
|
266
|
-
*
|
|
248
|
+
* 编辑访问密钥/源IP备注
|
|
267
249
|
*/
|
|
268
|
-
async
|
|
269
|
-
return this.request("
|
|
250
|
+
async UpdateAccessKeyRemark(req, cb) {
|
|
251
|
+
return this.request("UpdateAccessKeyRemark", req, cb);
|
|
270
252
|
}
|
|
271
253
|
/**
|
|
272
|
-
*
|
|
254
|
+
* 访问密钥风险记录列表
|
|
273
255
|
*/
|
|
274
|
-
async
|
|
275
|
-
return this.request("
|
|
256
|
+
async DescribeAccessKeyRisk(req, cb) {
|
|
257
|
+
return this.request("DescribeAccessKeyRisk", req, cb);
|
|
276
258
|
}
|
|
277
259
|
/**
|
|
278
260
|
* 仓库镜像列表
|
|
@@ -281,58 +263,64 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
281
263
|
return this.request("DescribeRepositoryImageAssets", req, cb);
|
|
282
264
|
}
|
|
283
265
|
/**
|
|
284
|
-
*
|
|
266
|
+
* cvm详情
|
|
285
267
|
*/
|
|
286
|
-
async
|
|
287
|
-
return this.request("
|
|
268
|
+
async DescribeCVMAssetInfo(req, cb) {
|
|
269
|
+
return this.request("DescribeCVMAssetInfo", req, cb);
|
|
288
270
|
}
|
|
289
271
|
/**
|
|
290
|
-
*
|
|
272
|
+
* 资产列表
|
|
291
273
|
*/
|
|
292
|
-
async
|
|
293
|
-
return this.request("
|
|
274
|
+
async DescribeOtherCloudAssets(req, cb) {
|
|
275
|
+
return this.request("DescribeOtherCloudAssets", req, cb);
|
|
294
276
|
}
|
|
295
277
|
/**
|
|
296
|
-
*
|
|
278
|
+
* 查询clb监听器列表
|
|
297
279
|
*/
|
|
298
|
-
async
|
|
299
|
-
return this.request("
|
|
280
|
+
async DescribeListenerList(req, cb) {
|
|
281
|
+
return this.request("DescribeListenerList", req, cb);
|
|
300
282
|
}
|
|
301
283
|
/**
|
|
302
|
-
*
|
|
284
|
+
* 集群pod列表
|
|
303
285
|
*/
|
|
304
|
-
async
|
|
305
|
-
return this.request("
|
|
286
|
+
async DescribeClusterPodAssets(req, cb) {
|
|
287
|
+
return this.request("DescribeClusterPodAssets", req, cb);
|
|
306
288
|
}
|
|
307
289
|
/**
|
|
308
|
-
*
|
|
290
|
+
* 获取风险服务列表
|
|
309
291
|
*/
|
|
310
|
-
async
|
|
311
|
-
return this.request("
|
|
292
|
+
async DescribeRiskCenterServerRiskList(req, cb) {
|
|
293
|
+
return this.request("DescribeRiskCenterServerRiskList", req, cb);
|
|
312
294
|
}
|
|
313
295
|
/**
|
|
314
|
-
*
|
|
296
|
+
* 获取调用记录列表
|
|
315
297
|
*/
|
|
316
|
-
async
|
|
317
|
-
return this.request("
|
|
298
|
+
async DescribeCallRecord(req, cb) {
|
|
299
|
+
return this.request("DescribeCallRecord", req, cb);
|
|
318
300
|
}
|
|
319
301
|
/**
|
|
320
|
-
*
|
|
302
|
+
* 云防资产中心统计数据
|
|
321
303
|
*/
|
|
322
|
-
async
|
|
323
|
-
return this.request("
|
|
304
|
+
async DescribeCFWAssetStatistics(req, cb) {
|
|
305
|
+
return this.request("DescribeCFWAssetStatistics", req, cb);
|
|
324
306
|
}
|
|
325
307
|
/**
|
|
326
|
-
*
|
|
308
|
+
* 查询云边界分析路径节点
|
|
327
309
|
*/
|
|
328
|
-
async
|
|
329
|
-
return this.request("
|
|
310
|
+
async DescribeExposePath(req, cb) {
|
|
311
|
+
return this.request("DescribeExposePath", req, cb);
|
|
330
312
|
}
|
|
331
313
|
/**
|
|
332
|
-
*
|
|
314
|
+
* 获取网关列表
|
|
333
315
|
*/
|
|
334
|
-
async
|
|
335
|
-
return this.request("
|
|
316
|
+
async DescribeGatewayAssets(req, cb) {
|
|
317
|
+
return this.request("DescribeGatewayAssets", req, cb);
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* 访问密钥告警记录列表
|
|
321
|
+
*/
|
|
322
|
+
async DescribeAccessKeyAlarm(req, cb) {
|
|
323
|
+
return this.request("DescribeAccessKeyAlarm", req, cb);
|
|
336
324
|
}
|
|
337
325
|
/**
|
|
338
326
|
* 查询云边界分析-暴露路径下主机节点的高危基线风险列表
|
|
@@ -341,136 +329,136 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
341
329
|
return this.request("DescribeHighBaseLineRiskList", req, cb);
|
|
342
330
|
}
|
|
343
331
|
/**
|
|
344
|
-
*
|
|
332
|
+
* 修改风险中心风险状态
|
|
345
333
|
*/
|
|
346
|
-
async
|
|
347
|
-
return this.request("
|
|
334
|
+
async ModifyRiskCenterRiskStatus(req, cb) {
|
|
335
|
+
return this.request("ModifyRiskCenterRiskStatus", req, cb);
|
|
348
336
|
}
|
|
349
337
|
/**
|
|
350
|
-
*
|
|
338
|
+
* 标记风险或者告警为 已处置/已忽略
|
|
351
339
|
*/
|
|
352
|
-
async
|
|
353
|
-
return this.request("
|
|
340
|
+
async UpdateAccessKeyAlarmStatus(req, cb) {
|
|
341
|
+
return this.request("UpdateAccessKeyAlarmStatus", req, cb);
|
|
354
342
|
}
|
|
355
343
|
/**
|
|
356
|
-
*
|
|
344
|
+
* 云边界分析资产分类
|
|
357
345
|
*/
|
|
358
|
-
async
|
|
359
|
-
return this.request("
|
|
346
|
+
async DescribeExposeAssetCategory(req, cb) {
|
|
347
|
+
return this.request("DescribeExposeAssetCategory", req, cb);
|
|
360
348
|
}
|
|
361
349
|
/**
|
|
362
|
-
*
|
|
350
|
+
* 查询云边界分析-暴露路径下主机节点的进程列表
|
|
363
351
|
*/
|
|
364
|
-
async
|
|
365
|
-
return this.request("
|
|
352
|
+
async DescribeAssetProcessList(req, cb) {
|
|
353
|
+
return this.request("DescribeAssetProcessList", req, cb);
|
|
366
354
|
}
|
|
367
355
|
/**
|
|
368
|
-
*
|
|
356
|
+
* 创建风险中心扫描任务
|
|
369
357
|
*/
|
|
370
|
-
async
|
|
371
|
-
return this.request("
|
|
358
|
+
async CreateRiskCenterScanTask(req, cb) {
|
|
359
|
+
return this.request("CreateRiskCenterScanTask", req, cb);
|
|
372
360
|
}
|
|
373
361
|
/**
|
|
374
|
-
*
|
|
362
|
+
* 查询漏洞风险高级配置
|
|
375
363
|
*/
|
|
376
|
-
async
|
|
377
|
-
return this.request("
|
|
364
|
+
async DescribeVULRiskAdvanceCFGList(req, cb) {
|
|
365
|
+
return this.request("DescribeVULRiskAdvanceCFGList", req, cb);
|
|
378
366
|
}
|
|
379
367
|
/**
|
|
380
|
-
*
|
|
368
|
+
* 集群列表
|
|
381
369
|
*/
|
|
382
|
-
async
|
|
383
|
-
return this.request("
|
|
370
|
+
async DescribeClusterAssets(req, cb) {
|
|
371
|
+
return this.request("DescribeClusterAssets", req, cb);
|
|
384
372
|
}
|
|
385
373
|
/**
|
|
386
|
-
*
|
|
374
|
+
* 查询用户行为分析策略列表
|
|
387
375
|
*/
|
|
388
|
-
async
|
|
389
|
-
return this.request("
|
|
376
|
+
async DescribeUebaRule(req, cb) {
|
|
377
|
+
return this.request("DescribeUebaRule", req, cb);
|
|
390
378
|
}
|
|
391
379
|
/**
|
|
392
|
-
*
|
|
380
|
+
* 发起AK资产同步任务
|
|
393
381
|
*/
|
|
394
|
-
async
|
|
395
|
-
return this.request("
|
|
382
|
+
async CreateAccessKeySyncTask(req, cb) {
|
|
383
|
+
return this.request("CreateAccessKeySyncTask", req, cb);
|
|
396
384
|
}
|
|
397
385
|
/**
|
|
398
|
-
*
|
|
386
|
+
* 查询凭证详情,返回凭证元数据和打码后的凭据数据。access类型返回Access数组(Key原文、Value打码),sts类型返回STS对象(System原文、SecretID和SecretKey打码)
|
|
399
387
|
*/
|
|
400
|
-
async
|
|
401
|
-
return this.request("
|
|
388
|
+
async DescribeKeySandboxCredential(req, cb) {
|
|
389
|
+
return this.request("DescribeKeySandboxCredential", req, cb);
|
|
402
390
|
}
|
|
403
391
|
/**
|
|
404
|
-
*
|
|
392
|
+
* 查询云边界分析扫描结果统计信息
|
|
405
393
|
*/
|
|
406
|
-
async
|
|
407
|
-
return this.request("
|
|
394
|
+
async DescribeScanStatistic(req, cb) {
|
|
395
|
+
return this.request("DescribeScanStatistic", req, cb);
|
|
408
396
|
}
|
|
409
397
|
/**
|
|
410
|
-
*
|
|
398
|
+
* 新安全中心风险中心-漏洞列表
|
|
411
399
|
*/
|
|
412
|
-
async
|
|
413
|
-
return this.request("
|
|
400
|
+
async DescribeVULList(req, cb) {
|
|
401
|
+
return this.request("DescribeVULList", req, cb);
|
|
414
402
|
}
|
|
415
403
|
/**
|
|
416
|
-
*
|
|
404
|
+
* 访问密钥告警记录AI分析结果详情
|
|
417
405
|
*/
|
|
418
|
-
async
|
|
419
|
-
return this.request("
|
|
406
|
+
async DescribeAKAnalysisDetail(req, cb) {
|
|
407
|
+
return this.request("DescribeAKAnalysisDetail", req, cb);
|
|
420
408
|
}
|
|
421
409
|
/**
|
|
422
|
-
*
|
|
410
|
+
* 查询用户的账号详情
|
|
423
411
|
*/
|
|
424
|
-
async
|
|
425
|
-
return this.request("
|
|
412
|
+
async DescribeAccessKeyUserDetail(req, cb) {
|
|
413
|
+
return this.request("DescribeAccessKeyUserDetail", req, cb);
|
|
426
414
|
}
|
|
427
415
|
/**
|
|
428
|
-
*
|
|
416
|
+
* 查询云边界分析-暴露路径下主机节点的漏洞列表
|
|
429
417
|
*/
|
|
430
|
-
async
|
|
431
|
-
return this.request("
|
|
418
|
+
async DescribeVulRiskList(req, cb) {
|
|
419
|
+
return this.request("DescribeVulRiskList", req, cb);
|
|
432
420
|
}
|
|
433
421
|
/**
|
|
434
|
-
*
|
|
422
|
+
* 获取任务扫描报告列表
|
|
435
423
|
*/
|
|
436
|
-
async
|
|
437
|
-
return this.request("
|
|
424
|
+
async DescribeTaskLogList(req, cb) {
|
|
425
|
+
return this.request("DescribeTaskLogList", req, cb);
|
|
438
426
|
}
|
|
439
427
|
/**
|
|
440
|
-
*
|
|
428
|
+
* 获取资产视角的漏洞风险列表
|
|
441
429
|
*/
|
|
442
|
-
async
|
|
443
|
-
return this.request("
|
|
430
|
+
async DescribeRiskCenterAssetViewVULRiskList(req, cb) {
|
|
431
|
+
return this.request("DescribeRiskCenterAssetViewVULRiskList", req, cb);
|
|
444
432
|
}
|
|
445
433
|
/**
|
|
446
|
-
*
|
|
434
|
+
* 获取资产视角的配置风险列表
|
|
447
435
|
*/
|
|
448
|
-
async
|
|
449
|
-
return this.request("
|
|
436
|
+
async DescribeRiskCenterAssetViewCFGRiskList(req, cb) {
|
|
437
|
+
return this.request("DescribeRiskCenterAssetViewCFGRiskList", req, cb);
|
|
450
438
|
}
|
|
451
439
|
/**
|
|
452
|
-
*
|
|
440
|
+
* 修改风险中心扫描任务
|
|
453
441
|
*/
|
|
454
|
-
async
|
|
455
|
-
return this.request("
|
|
442
|
+
async ModifyRiskCenterScanTask(req, cb) {
|
|
443
|
+
return this.request("ModifyRiskCenterScanTask", req, cb);
|
|
456
444
|
}
|
|
457
445
|
/**
|
|
458
|
-
*
|
|
446
|
+
* 检查视角下云资源配置风险列表
|
|
459
447
|
*/
|
|
460
|
-
async
|
|
461
|
-
return this.request("
|
|
448
|
+
async DescribeCheckViewRisks(req, cb) {
|
|
449
|
+
return this.request("DescribeCheckViewRisks", req, cb);
|
|
462
450
|
}
|
|
463
451
|
/**
|
|
464
|
-
*
|
|
452
|
+
* 删除风险中心扫描任务
|
|
465
453
|
*/
|
|
466
|
-
async
|
|
467
|
-
return this.request("
|
|
454
|
+
async DeleteRiskScanTask(req, cb) {
|
|
455
|
+
return this.request("DeleteRiskScanTask", req, cb);
|
|
468
456
|
}
|
|
469
457
|
/**
|
|
470
|
-
*
|
|
458
|
+
* 更新自定义策略的开关
|
|
471
459
|
*/
|
|
472
|
-
async
|
|
473
|
-
return this.request("
|
|
460
|
+
async ModifyUebaRuleSwitch(req, cb) {
|
|
461
|
+
return this.request("ModifyUebaRuleSwitch", req, cb);
|
|
474
462
|
}
|
|
475
463
|
/**
|
|
476
464
|
* 数据库资产列表
|
|
@@ -479,22 +467,64 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
479
467
|
return this.request("DescribeDbAssets", req, cb);
|
|
480
468
|
}
|
|
481
469
|
/**
|
|
482
|
-
*
|
|
470
|
+
* 立体防护中心查询漏洞信息
|
|
483
471
|
*/
|
|
484
|
-
async
|
|
485
|
-
return this.request("
|
|
472
|
+
async DescribeSearchBugInfo(req, cb) {
|
|
473
|
+
return this.request("DescribeSearchBugInfo", req, cb);
|
|
486
474
|
}
|
|
487
475
|
/**
|
|
488
|
-
*
|
|
476
|
+
* ip公网列表
|
|
489
477
|
*/
|
|
490
|
-
async
|
|
491
|
-
return this.request("
|
|
478
|
+
async DescribePublicIpAssets(req, cb) {
|
|
479
|
+
return this.request("DescribePublicIpAssets", req, cb);
|
|
492
480
|
}
|
|
493
481
|
/**
|
|
494
|
-
*
|
|
482
|
+
* 获取资产视角的弱口令风险列表
|
|
495
483
|
*/
|
|
496
|
-
async
|
|
497
|
-
return this.request("
|
|
484
|
+
async DescribeRiskCenterAssetViewWeakPasswordRiskList(req, cb) {
|
|
485
|
+
return this.request("DescribeRiskCenterAssetViewWeakPasswordRiskList", req, cb);
|
|
486
|
+
}
|
|
487
|
+
/**
|
|
488
|
+
* 获取漏洞视角的漏洞风险列表
|
|
489
|
+
*/
|
|
490
|
+
async DescribeVulViewVulRiskList(req, cb) {
|
|
491
|
+
return this.request("DescribeVulViewVulRiskList", req, cb);
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* 创建域名、ip相关信息
|
|
495
|
+
*/
|
|
496
|
+
async CreateDomainAndIp(req, cb) {
|
|
497
|
+
return this.request("CreateDomainAndIp", req, cb);
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* 批量告警状态处理接口
|
|
501
|
+
*/
|
|
502
|
+
async UpdateAlertStatusList(req, cb) {
|
|
503
|
+
return this.request("UpdateAlertStatusList", req, cb);
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
* 获取用户访问密钥资产列表(源IP视角)
|
|
507
|
+
*/
|
|
508
|
+
async DescribeSourceIPAsset(req, cb) {
|
|
509
|
+
return this.request("DescribeSourceIPAsset", req, cb);
|
|
510
|
+
}
|
|
511
|
+
/**
|
|
512
|
+
* 获取端口视角的端口风险列表
|
|
513
|
+
*/
|
|
514
|
+
async DescribeRiskCenterPortViewPortRiskList(req, cb) {
|
|
515
|
+
return this.request("DescribeRiskCenterPortViewPortRiskList", req, cb);
|
|
516
|
+
}
|
|
517
|
+
/**
|
|
518
|
+
* 修改集团账号状态
|
|
519
|
+
*/
|
|
520
|
+
async ModifyOrganizationAccountStatus(req, cb) {
|
|
521
|
+
return this.request("ModifyOrganizationAccountStatus", req, cb);
|
|
522
|
+
}
|
|
523
|
+
/**
|
|
524
|
+
* 获取报告下载的临时链接
|
|
525
|
+
*/
|
|
526
|
+
async DescribeTaskLogURL(req, cb) {
|
|
527
|
+
return this.request("DescribeTaskLogURL", req, cb);
|
|
498
528
|
}
|
|
499
529
|
/**
|
|
500
530
|
* 获取风险中心风险概况示例
|
|
@@ -508,23 +538,11 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
508
538
|
async DescribeAccessKeyRiskDetail(req, cb) {
|
|
509
539
|
return this.request("DescribeAccessKeyRiskDetail", req, cb);
|
|
510
540
|
}
|
|
511
|
-
/**
|
|
512
|
-
* 获取用户访问密钥资产列表
|
|
513
|
-
*/
|
|
514
|
-
async DescribeAccessKeyAsset(req, cb) {
|
|
515
|
-
return this.request("DescribeAccessKeyAsset", req, cb);
|
|
516
|
-
}
|
|
517
541
|
/**
|
|
518
542
|
* 获取风险调用记录列表
|
|
519
543
|
*/
|
|
520
544
|
async DescribeRiskCallRecord(req, cb) {
|
|
521
545
|
return this.request("DescribeRiskCallRecord", req, cb);
|
|
522
546
|
}
|
|
523
|
-
/**
|
|
524
|
-
* cvm详情
|
|
525
|
-
*/
|
|
526
|
-
async DescribeCVMAssetInfo(req, cb) {
|
|
527
|
-
return this.request("DescribeCVMAssetInfo", req, cb);
|
|
528
|
-
}
|
|
529
547
|
}
|
|
530
548
|
exports.Client = Client;
|