tencentcloud-sdk-nodejs-tcss 4.0.252
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/CHANGELOG.md +65880 -0
- package/LICENSE +201 -0
- package/README.md +121 -0
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/package.json +47 -0
- package/prettier.config.js +38 -0
- package/products.md +188 -0
- package/src/index.ts +1 -0
- package/src/services/index.ts +1 -0
- package/src/services/tcss/index.ts +5 -0
- package/src/services/tcss/v20201101/index.ts +6 -0
- package/src/services/tcss/v20201101/tcss_client.ts +2105 -0
- package/src/services/tcss/v20201101/tcss_models.ts +11427 -0
- package/tencentcloud/index.d.ts +1 -0
- package/tencentcloud/index.js +4 -0
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +4 -0
- package/tencentcloud/services/tcss/index.d.ts +6 -0
- package/tencentcloud/services/tcss/index.js +7 -0
- package/tencentcloud/services/tcss/v20201101/index.d.ts +6 -0
- package/tencentcloud/services/tcss/v20201101/index.js +9 -0
- package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +673 -0
- package/tencentcloud/services/tcss/v20201101/tcss_client.js +1027 -0
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +9642 -0
- package/tencentcloud/services/tcss/v20201101/tcss_models.js +18 -0
- package/tsconfig.json +33 -0
- package/typings/index.d.ts +2 -0
|
@@ -0,0 +1,1027 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Client = void 0;
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
|
+
/*
|
|
6
|
+
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
7
|
+
*
|
|
8
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
+
* you may not use this file except in compliance with the License.
|
|
10
|
+
* You may obtain a copy of the License at
|
|
11
|
+
*
|
|
12
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
+
*
|
|
14
|
+
* Unless required by applicable law or agreed to in writing,
|
|
15
|
+
* software distributed under the License is distributed on an
|
|
16
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
17
|
+
* KIND, either express or implied. See the License for the
|
|
18
|
+
* specific language governing permissions and limitations
|
|
19
|
+
* under the License.
|
|
20
|
+
*/
|
|
21
|
+
const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
|
|
22
|
+
/**
|
|
23
|
+
* tcss client
|
|
24
|
+
* @class
|
|
25
|
+
*/
|
|
26
|
+
class Client extends TencentCloudCommon.AbstractClient {
|
|
27
|
+
constructor(clientConfig) {
|
|
28
|
+
super("tcss.tencentcloudapi.com", "2020-11-01", clientConfig);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* DescribeImageAuthorizedInfo 查询镜像授权信息
|
|
32
|
+
*/
|
|
33
|
+
async DescribeImageAuthorizedInfo(req, cb) {
|
|
34
|
+
return this.request("DescribeImageAuthorizedInfo", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 查询运行时异常进程事件列表信息导出
|
|
38
|
+
*/
|
|
39
|
+
async DescribeAbnormalProcessEventsExport(req, cb) {
|
|
40
|
+
return this.request("DescribeAbnormalProcessEventsExport", req, cb);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 运行时文件扫描超时设置查询
|
|
44
|
+
*/
|
|
45
|
+
async DescribeVirusScanTimeoutSetting(req, cb) {
|
|
46
|
+
return this.request("DescribeVirusScanTimeoutSetting", req, cb);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 运行时查询木马概览信息
|
|
50
|
+
*/
|
|
51
|
+
async DescribeVirusSummary(req, cb) {
|
|
52
|
+
return this.request("DescribeVirusSummary", req, cb);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* 容器安全搜索查询主机列表
|
|
56
|
+
*/
|
|
57
|
+
async DescribeAssetHostList(req, cb) {
|
|
58
|
+
return this.request("DescribeAssetHostList", req, cb);
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* 重新检测选定的检测失败的资产下的所有失败的检测项,返回创建的合规检查任务的ID。
|
|
62
|
+
*/
|
|
63
|
+
async ScanComplianceScanFailedAssets(req, cb) {
|
|
64
|
+
return this.request("ScanComplianceScanFailedAssets", req, cb);
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* 修改运行时访问控制策略的状态,启用或者禁用
|
|
68
|
+
*/
|
|
69
|
+
async ModifyAccessControlRuleStatus(req, cb) {
|
|
70
|
+
return this.request("ModifyAccessControlRuleStatus", req, cb);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* 查询运行时异常进程策略列表信息导出
|
|
74
|
+
*/
|
|
75
|
+
async DescribeAbnormalProcessRulesExport(req, cb) {
|
|
76
|
+
return this.request("DescribeAbnormalProcessRulesExport", req, cb);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* ModifyEscapeEventStatus 修改容器逃逸扫描事件状态
|
|
80
|
+
*/
|
|
81
|
+
async ModifyEscapeEventStatus(req, cb) {
|
|
82
|
+
return this.request("ModifyEscapeEventStatus", req, cb);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* 镜像仓库查看定时任务
|
|
86
|
+
*/
|
|
87
|
+
async DescribeImageRegistryTimingScanTask(req, cb) {
|
|
88
|
+
return this.request("DescribeImageRegistryTimingScanTask", req, cb);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* 容器安全查询app服务列表
|
|
92
|
+
*/
|
|
93
|
+
async DescribeAssetAppServiceList(req, cb) {
|
|
94
|
+
return this.request("DescribeAssetAppServiceList", req, cb);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* 搜索查询容器列表
|
|
98
|
+
*/
|
|
99
|
+
async DescribeAssetContainerList(req, cb) {
|
|
100
|
+
return this.request("DescribeAssetContainerList", req, cb);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* 删除单个镜像仓库详细信息
|
|
104
|
+
*/
|
|
105
|
+
async RemoveAssetImageRegistryRegistryDetail(req, cb) {
|
|
106
|
+
return this.request("RemoveAssetImageRegistryRegistryDetail", req, cb);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* 下发刷新任务,会刷新资产信息
|
|
110
|
+
*/
|
|
111
|
+
async CreateRefreshTask(req, cb) {
|
|
112
|
+
return this.request("CreateRefreshTask", req, cb);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* 查询运行时运行时反弹shell白名单列表信息
|
|
116
|
+
*/
|
|
117
|
+
async DescribeReverseShellWhiteLists(req, cb) {
|
|
118
|
+
return this.request("DescribeReverseShellWhiteLists", req, cb);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* 查询workload类型的影响范围,返回workload列表
|
|
122
|
+
*/
|
|
123
|
+
async DescribeAffectedWorkloadList(req, cb) {
|
|
124
|
+
return this.request("DescribeAffectedWorkloadList", req, cb);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* 容器安全搜索查询容器组件列表
|
|
128
|
+
*/
|
|
129
|
+
async DescribeAssetComponentList(req, cb) {
|
|
130
|
+
return this.request("DescribeAssetComponentList", req, cb);
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* 容器安全查询镜像扫描状态
|
|
134
|
+
*/
|
|
135
|
+
async DescribeAssetImageScanStatus(req, cb) {
|
|
136
|
+
return this.request("DescribeAssetImageScanStatus", req, cb);
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* 运行时查询文件查杀实时监控设置
|
|
140
|
+
*/
|
|
141
|
+
async DescribeVirusMonitorSetting(req, cb) {
|
|
142
|
+
return this.request("DescribeVirusMonitorSetting", req, cb);
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* 运行时文件扫描超时设置
|
|
146
|
+
*/
|
|
147
|
+
async ModifyVirusScanTimeoutSetting(req, cb) {
|
|
148
|
+
return this.request("ModifyVirusScanTimeoutSetting", req, cb);
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* 创建集群检查任务,用户检查用户的集群相关风险项
|
|
152
|
+
*/
|
|
153
|
+
async CreateClusterCheckTask(req, cb) {
|
|
154
|
+
return this.request("CreateClusterCheckTask", req, cb);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* 查询运行时访问控制事件列表
|
|
158
|
+
*/
|
|
159
|
+
async DescribeAccessControlEvents(req, cb) {
|
|
160
|
+
return this.request("DescribeAccessControlEvents", req, cb);
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* 运行时更新文件查杀设置
|
|
164
|
+
*/
|
|
165
|
+
async ModifyVirusScanSetting(req, cb) {
|
|
166
|
+
return this.request("ModifyVirusScanSetting", req, cb);
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* 镜像仓库木马信息列表导出
|
|
170
|
+
*/
|
|
171
|
+
async DescribeAssetImageRegistryVirusListExport(req, cb) {
|
|
172
|
+
return this.request("DescribeAssetImageRegistryVirusListExport", req, cb);
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* 获取受影响的集群数量,返回数量
|
|
176
|
+
*/
|
|
177
|
+
async DescribeAffectedClusterCount(req, cb) {
|
|
178
|
+
return this.request("DescribeAffectedClusterCount", req, cb);
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* 修改高危系统调用事件的状态信息
|
|
182
|
+
*/
|
|
183
|
+
async ModifyRiskSyscallStatus(req, cb) {
|
|
184
|
+
return this.request("ModifyRiskSyscallStatus", req, cb);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* DescribeEscapeEventInfo 查询容器逃逸事件列表
|
|
188
|
+
*/
|
|
189
|
+
async DescribeEscapeEventInfo(req, cb) {
|
|
190
|
+
return this.request("DescribeEscapeEventInfo", req, cb);
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* 查看镜像仓库资产更新进度状态
|
|
194
|
+
*/
|
|
195
|
+
async DescribeAssetImageRegistryAssetStatus(req, cb) {
|
|
196
|
+
return this.request("DescribeAssetImageRegistryAssetStatus", req, cb);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* 镜像仓库仓库列表
|
|
200
|
+
*/
|
|
201
|
+
async DescribeAssetImageRegistryRegistryList(req, cb) {
|
|
202
|
+
return this.request("DescribeAssetImageRegistryRegistryList", req, cb);
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* 镜像仓库停止镜像扫描任务
|
|
206
|
+
*/
|
|
207
|
+
async ModifyAssetImageRegistryScanStop(req, cb) {
|
|
208
|
+
return this.request("ModifyAssetImageRegistryScanStop", req, cb);
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* 查询单个集群的详细信息
|
|
212
|
+
*/
|
|
213
|
+
async DescribeClusterDetail(req, cb) {
|
|
214
|
+
return this.request("DescribeClusterDetail", req, cb);
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* 镜像仓库查询木马病毒列表
|
|
218
|
+
*/
|
|
219
|
+
async DescribeAssetImageRegistryVirusList(req, cb) {
|
|
220
|
+
return this.request("DescribeAssetImageRegistryVirusList", req, cb);
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* 镜像仓库更新定时任务
|
|
224
|
+
*/
|
|
225
|
+
async UpdateImageRegistryTimingScanTask(req, cb) {
|
|
226
|
+
return this.request("UpdateImageRegistryTimingScanTask", req, cb);
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* 镜像仓库创建镜像一键扫描任务
|
|
230
|
+
*/
|
|
231
|
+
async CreateAssetImageRegistryScanTaskOneKey(req, cb) {
|
|
232
|
+
return this.request("CreateAssetImageRegistryScanTaskOneKey", req, cb);
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* 容器安全停止镜像扫描
|
|
236
|
+
*/
|
|
237
|
+
async ModifyAssetImageScanStop(req, cb) {
|
|
238
|
+
return this.request("ModifyAssetImageScanStop", req, cb);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* DescribeEscapeEventsExport 查询容器逃逸事件列表导出
|
|
242
|
+
*/
|
|
243
|
+
async DescribeEscapeEventsExport(req, cb) {
|
|
244
|
+
return this.request("DescribeEscapeEventsExport", req, cb);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* 容器安全搜索查询镜像列表导出
|
|
248
|
+
*/
|
|
249
|
+
async DescribeAssetImageListExport(req, cb) {
|
|
250
|
+
return this.request("DescribeAssetImageListExport", req, cb);
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* 获取镜像扫描设置信息
|
|
254
|
+
*/
|
|
255
|
+
async DescribeAssetImageScanSetting(req, cb) {
|
|
256
|
+
return this.request("DescribeAssetImageScanSetting", req, cb);
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* 安装检查组件,创建防护容器
|
|
260
|
+
*/
|
|
261
|
+
async CreateCheckComponent(req, cb) {
|
|
262
|
+
return this.request("CreateCheckComponent", req, cb);
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* 查询运行时高危系统调用系统名称列表
|
|
266
|
+
*/
|
|
267
|
+
async DescribeRiskSyscallNames(req, cb) {
|
|
268
|
+
return this.request("DescribeRiskSyscallNames", req, cb);
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* 查询合规检测的定时任务列表
|
|
272
|
+
*/
|
|
273
|
+
async DescribeCompliancePeriodTaskList(req, cb) {
|
|
274
|
+
return this.request("DescribeCompliancePeriodTaskList", req, cb);
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* 删除运行访问控制策略
|
|
278
|
+
*/
|
|
279
|
+
async DeleteAccessControlRules(req, cb) {
|
|
280
|
+
return this.request("DeleteAccessControlRules", req, cb);
|
|
281
|
+
}
|
|
282
|
+
/**
|
|
283
|
+
* DescribePurchaseStateInfo 查询容器安全服务已购买信息
|
|
284
|
+
*/
|
|
285
|
+
async DescribePurchaseStateInfo(req, cb) {
|
|
286
|
+
return this.request("DescribePurchaseStateInfo", req, cb);
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* 查询运行时高危系统调用白名单详细信息
|
|
290
|
+
*/
|
|
291
|
+
async DescribeRiskSyscallWhiteListDetail(req, cb) {
|
|
292
|
+
return this.request("DescribeRiskSyscallWhiteListDetail", req, cb);
|
|
293
|
+
}
|
|
294
|
+
/**
|
|
295
|
+
* 镜像仓库镜像仓库列表详情
|
|
296
|
+
*/
|
|
297
|
+
async DescribeAssetImageRegistryDetail(req, cb) {
|
|
298
|
+
return this.request("DescribeAssetImageRegistryDetail", req, cb);
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* 运行时高危系统调用列表导出
|
|
302
|
+
*/
|
|
303
|
+
async DescribeRiskSyscallEventsExport(req, cb) {
|
|
304
|
+
return this.request("DescribeRiskSyscallEventsExport", req, cb);
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* 查询运行时异常策略详细信息
|
|
308
|
+
*/
|
|
309
|
+
async DescribeAbnormalProcessRuleDetail(req, cb) {
|
|
310
|
+
return this.request("DescribeAbnormalProcessRuleDetail", req, cb);
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* 查看单个镜像仓库详细信息
|
|
314
|
+
*/
|
|
315
|
+
async DescribeAssetImageRegistryRegistryDetail(req, cb) {
|
|
316
|
+
return this.request("DescribeAssetImageRegistryRegistryDetail", req, cb);
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* DescribeValueAddedSrvInfo查询增值服务需购买信息
|
|
320
|
+
*/
|
|
321
|
+
async DescribeValueAddedSrvInfo(req, cb) {
|
|
322
|
+
return this.request("DescribeValueAddedSrvInfo", req, cb);
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* 添加编辑运行时反弹shell白名单
|
|
326
|
+
*/
|
|
327
|
+
async AddEditReverseShellWhiteList(req, cb) {
|
|
328
|
+
return this.request("AddEditReverseShellWhiteList", req, cb);
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* 查询运行时反弹shell事件详细信息
|
|
332
|
+
*/
|
|
333
|
+
async DescribeReverseShellDetail(req, cb) {
|
|
334
|
+
return this.request("DescribeReverseShellDetail", req, cb);
|
|
335
|
+
}
|
|
336
|
+
/**
|
|
337
|
+
* 镜像绑定规则列表信息,包含运行时访问控制和异常进程公用
|
|
338
|
+
*/
|
|
339
|
+
async DescribeAssetImageBindRuleInfo(req, cb) {
|
|
340
|
+
return this.request("DescribeAssetImageBindRuleInfo", req, cb);
|
|
341
|
+
}
|
|
342
|
+
/**
|
|
343
|
+
* 查询高危系统调用事件详细信息
|
|
344
|
+
*/
|
|
345
|
+
async DescribeRiskSyscallDetail(req, cb) {
|
|
346
|
+
return this.request("DescribeRiskSyscallDetail", req, cb);
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* 查询刷新任务
|
|
350
|
+
*/
|
|
351
|
+
async DescribeRefreshTask(req, cb) {
|
|
352
|
+
return this.request("DescribeRefreshTask", req, cb);
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* 查询检查结果总览,返回受影响的节点数量,返回7天的数据,总共7个
|
|
356
|
+
*/
|
|
357
|
+
async DescribeTaskResultSummary(req, cb) {
|
|
358
|
+
return this.request("DescribeTaskResultSummary", req, cb);
|
|
359
|
+
}
|
|
360
|
+
/**
|
|
361
|
+
* 查询容器详细信息
|
|
362
|
+
*/
|
|
363
|
+
async DescribeAssetContainerDetail(req, cb) {
|
|
364
|
+
return this.request("DescribeAssetContainerDetail", req, cb);
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* 镜像仓库查询镜像高危行为列表
|
|
368
|
+
*/
|
|
369
|
+
async DescribeAssetImageRegistryRiskInfoList(req, cb) {
|
|
370
|
+
return this.request("DescribeAssetImageRegistryRiskInfoList", req, cb);
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* ModifyEscapeRule 修改容器逃逸扫描规则信息
|
|
374
|
+
*/
|
|
375
|
+
async ModifyEscapeRule(req, cb) {
|
|
376
|
+
return this.request("ModifyEscapeRule", req, cb);
|
|
377
|
+
}
|
|
378
|
+
/**
|
|
379
|
+
* 按照 检测项 → 资产 的两级层次展开的第一层级:检测项层级。
|
|
380
|
+
*/
|
|
381
|
+
async DescribeCompliancePolicyItemAffectedSummary(req, cb) {
|
|
382
|
+
return this.request("DescribeCompliancePolicyItemAffectedSummary", req, cb);
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* 查询容器资产概览信息
|
|
386
|
+
*/
|
|
387
|
+
async DescribeContainerAssetSummary(req, cb) {
|
|
388
|
+
return this.request("DescribeContainerAssetSummary", req, cb);
|
|
389
|
+
}
|
|
390
|
+
/**
|
|
391
|
+
* 查询运行时反弹shell事件列表信息导出
|
|
392
|
+
*/
|
|
393
|
+
async DescribeReverseShellEventsExport(req, cb) {
|
|
394
|
+
return this.request("DescribeReverseShellEventsExport", req, cb);
|
|
395
|
+
}
|
|
396
|
+
/**
|
|
397
|
+
* 修改运行时异常进程策略的开启关闭状态
|
|
398
|
+
*/
|
|
399
|
+
async ModifyAbnormalProcessRuleStatus(req, cb) {
|
|
400
|
+
return this.request("ModifyAbnormalProcessRuleStatus", req, cb);
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* 查询容器安全本地镜像风险趋势
|
|
404
|
+
*/
|
|
405
|
+
async DescribeImageRiskTendency(req, cb) {
|
|
406
|
+
return this.request("DescribeImageRiskTendency", req, cb);
|
|
407
|
+
}
|
|
408
|
+
/**
|
|
409
|
+
* 查询导出任务的结果
|
|
410
|
+
*/
|
|
411
|
+
async DescribeExportJobResult(req, cb) {
|
|
412
|
+
return this.request("DescribeExportJobResult", req, cb);
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* 容器安全创建镜像扫描任务
|
|
416
|
+
*/
|
|
417
|
+
async CreateAssetImageScanTask(req, cb) {
|
|
418
|
+
return this.request("CreateAssetImageScanTask", req, cb);
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* 查询正在一键扫描的镜像扫描taskid
|
|
422
|
+
*/
|
|
423
|
+
async DescribeAssetImageScanTask(req, cb) {
|
|
424
|
+
return this.request("DescribeAssetImageScanTask", req, cb);
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* 镜像仓库镜像列表导出
|
|
428
|
+
*/
|
|
429
|
+
async DescribeAssetImageRegistryListExport(req, cb) {
|
|
430
|
+
return this.request("DescribeAssetImageRegistryListExport", req, cb);
|
|
431
|
+
}
|
|
432
|
+
/**
|
|
433
|
+
* 查询上次任务的资产通过率汇总信息
|
|
434
|
+
*/
|
|
435
|
+
async DescribeComplianceTaskAssetSummary(req, cb) {
|
|
436
|
+
return this.request("DescribeComplianceTaskAssetSummary", req, cb);
|
|
437
|
+
}
|
|
438
|
+
/**
|
|
439
|
+
* 查询运行访问控制策略列表信息
|
|
440
|
+
*/
|
|
441
|
+
async DescribeAccessControlRules(req, cb) {
|
|
442
|
+
return this.request("DescribeAccessControlRules", req, cb);
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* 容器安全搜索查询镜像木马列表导出
|
|
446
|
+
*/
|
|
447
|
+
async DescribeAssetImageVirusListExport(req, cb) {
|
|
448
|
+
return this.request("DescribeAssetImageVirusListExport", req, cb);
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* 运行时更新文件查杀实时监控设置
|
|
452
|
+
*/
|
|
453
|
+
async ModifyVirusMonitorSetting(req, cb) {
|
|
454
|
+
return this.request("ModifyVirusMonitorSetting", req, cb);
|
|
455
|
+
}
|
|
456
|
+
/**
|
|
457
|
+
* DescribePostPayDetail 查询后付费详情
|
|
458
|
+
*/
|
|
459
|
+
async DescribePostPayDetail(req, cb) {
|
|
460
|
+
return this.request("DescribePostPayDetail", req, cb);
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* 重新检测选定的资产
|
|
464
|
+
*/
|
|
465
|
+
async ScanComplianceAssets(req, cb) {
|
|
466
|
+
return this.request("ScanComplianceAssets", req, cb);
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* 运行时停止木马查杀任务
|
|
470
|
+
*/
|
|
471
|
+
async StopVirusScanTask(req, cb) {
|
|
472
|
+
return this.request("StopVirusScanTask", req, cb);
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* 查询所有检查项接口,返回总数和检查项列表
|
|
476
|
+
*/
|
|
477
|
+
async DescribeCheckItemList(req, cb) {
|
|
478
|
+
return this.request("DescribeCheckItemList", req, cb);
|
|
479
|
+
}
|
|
480
|
+
/**
|
|
481
|
+
* 运行时查询木马文件信息
|
|
482
|
+
*/
|
|
483
|
+
async DescribeVirusDetail(req, cb) {
|
|
484
|
+
return this.request("DescribeVirusDetail", req, cb);
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* 查询白名单列表
|
|
488
|
+
*/
|
|
489
|
+
async DescribeComplianceWhitelistItemList(req, cb) {
|
|
490
|
+
return this.request("DescribeComplianceWhitelistItemList", req, cb);
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* 创建合规检查任务,在资产级别触发重新检测时使用。
|
|
494
|
+
*/
|
|
495
|
+
async CreateComplianceTask(req, cb) {
|
|
496
|
+
return this.request("CreateComplianceTask", req, cb);
|
|
497
|
+
}
|
|
498
|
+
/**
|
|
499
|
+
* 按照 资产 → 检测项 二层结构展示的信息。这里查询第一层 资产的通过率汇总信息。
|
|
500
|
+
*/
|
|
501
|
+
async DescribeComplianceScanFailedAssetList(req, cb) {
|
|
502
|
+
return this.request("DescribeComplianceScanFailedAssetList", req, cb);
|
|
503
|
+
}
|
|
504
|
+
/**
|
|
505
|
+
* 容器安全搜索查询端口占用列表
|
|
506
|
+
*/
|
|
507
|
+
async DescribeAssetPortList(req, cb) {
|
|
508
|
+
return this.request("DescribeAssetPortList", req, cb);
|
|
509
|
+
}
|
|
510
|
+
/**
|
|
511
|
+
* 镜像仓库漏洞列表导出
|
|
512
|
+
*/
|
|
513
|
+
async DescribeAssetImageRegistryVulListExport(req, cb) {
|
|
514
|
+
return this.request("DescribeAssetImageRegistryVulListExport", req, cb);
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* 删除运行异常进程策略
|
|
518
|
+
*/
|
|
519
|
+
async DeleteAbnormalProcessRules(req, cb) {
|
|
520
|
+
return this.request("DeleteAbnormalProcessRules", req, cb);
|
|
521
|
+
}
|
|
522
|
+
/**
|
|
523
|
+
* 镜像仓库敏感信息列表导出
|
|
524
|
+
*/
|
|
525
|
+
async DescribeAssetImageRegistryRiskListExport(req, cb) {
|
|
526
|
+
return this.request("DescribeAssetImageRegistryRiskListExport", req, cb);
|
|
527
|
+
}
|
|
528
|
+
/**
|
|
529
|
+
* 运行时文件查杀一键扫描
|
|
530
|
+
*/
|
|
531
|
+
async CreateVirusScanTask(req, cb) {
|
|
532
|
+
return this.request("CreateVirusScanTask", req, cb);
|
|
533
|
+
}
|
|
534
|
+
/**
|
|
535
|
+
* DescribeEscapeEventDetail 查询容器逃逸事件详情
|
|
536
|
+
*/
|
|
537
|
+
async DescribeEscapeEventDetail(req, cb) {
|
|
538
|
+
return this.request("DescribeEscapeEventDetail", req, cb);
|
|
539
|
+
}
|
|
540
|
+
/**
|
|
541
|
+
* 删除运行时反弹shell白名单
|
|
542
|
+
*/
|
|
543
|
+
async DeleteReverseShellWhiteLists(req, cb) {
|
|
544
|
+
return this.request("DeleteReverseShellWhiteLists", req, cb);
|
|
545
|
+
}
|
|
546
|
+
/**
|
|
547
|
+
* 查询某个资产的详情
|
|
548
|
+
*/
|
|
549
|
+
async DescribeComplianceAssetDetailInfo(req, cb) {
|
|
550
|
+
return this.request("DescribeComplianceAssetDetailInfo", req, cb);
|
|
551
|
+
}
|
|
552
|
+
/**
|
|
553
|
+
* 获取告警策略列表
|
|
554
|
+
*/
|
|
555
|
+
async DescribeWarningRules(req, cb) {
|
|
556
|
+
return this.request("DescribeWarningRules", req, cb);
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* 修改异常进程事件的状态信息
|
|
560
|
+
*/
|
|
561
|
+
async ModifyAbnormalProcessStatus(req, cb) {
|
|
562
|
+
return this.request("ModifyAbnormalProcessStatus", req, cb);
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* 创建一个导出安全合规信息的任务
|
|
566
|
+
*/
|
|
567
|
+
async CreateExportComplianceStatusListJob(req, cb) {
|
|
568
|
+
return this.request("CreateExportComplianceStatusListJob", req, cb);
|
|
569
|
+
}
|
|
570
|
+
/**
|
|
571
|
+
* 容器安全搜索查询镜像简略信息列表
|
|
572
|
+
*/
|
|
573
|
+
async DescribeAssetImageSimpleList(req, cb) {
|
|
574
|
+
return this.request("DescribeAssetImageSimpleList", req, cb);
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
* DescribeImageSimpleList 查询全部镜像列表
|
|
578
|
+
*/
|
|
579
|
+
async DescribeImageSimpleList(req, cb) {
|
|
580
|
+
return this.request("DescribeImageSimpleList", req, cb);
|
|
581
|
+
}
|
|
582
|
+
/**
|
|
583
|
+
* 修改运行时访问控制事件状态信息
|
|
584
|
+
*/
|
|
585
|
+
async ModifyAccessControlStatus(req, cb) {
|
|
586
|
+
return this.request("ModifyAccessControlStatus", req, cb);
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* DescribeEscapeRuleInfo 查询容器逃逸扫描规则信息
|
|
590
|
+
*/
|
|
591
|
+
async DescribeEscapeRuleInfo(req, cb) {
|
|
592
|
+
return this.request("DescribeEscapeRuleInfo", req, cb);
|
|
593
|
+
}
|
|
594
|
+
/**
|
|
595
|
+
* 容器安全查询镜像风险列表
|
|
596
|
+
*/
|
|
597
|
+
async DescribeAssetImageRiskList(req, cb) {
|
|
598
|
+
return this.request("DescribeAssetImageRiskList", req, cb);
|
|
599
|
+
}
|
|
600
|
+
/**
|
|
601
|
+
* 容器安全搜索查询镜像漏洞列表导出
|
|
602
|
+
*/
|
|
603
|
+
async DescribeAssetImageVulListExport(req, cb) {
|
|
604
|
+
return this.request("DescribeAssetImageVulListExport", req, cb);
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* 查询用户集群资产总览
|
|
608
|
+
*/
|
|
609
|
+
async DescribeClusterSummary(req, cb) {
|
|
610
|
+
return this.request("DescribeClusterSummary", req, cb);
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* DescribeEscapeSafeState 查询容器逃逸安全状态
|
|
614
|
+
*/
|
|
615
|
+
async DescribeEscapeSafeState(req, cb) {
|
|
616
|
+
return this.request("DescribeEscapeSafeState", req, cb);
|
|
617
|
+
}
|
|
618
|
+
/**
|
|
619
|
+
* 运行时查询文件查杀任务列表
|
|
620
|
+
*/
|
|
621
|
+
async DescribeVirusTaskList(req, cb) {
|
|
622
|
+
return this.request("DescribeVirusTaskList", req, cb);
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
* 新增单个镜像仓库详细信息
|
|
626
|
+
*/
|
|
627
|
+
async AddAssetImageRegistryRegistryDetail(req, cb) {
|
|
628
|
+
return this.request("AddAssetImageRegistryRegistryDetail", req, cb);
|
|
629
|
+
}
|
|
630
|
+
/**
|
|
631
|
+
* 运行时文件查杀事件列表
|
|
632
|
+
*/
|
|
633
|
+
async DescribeVirusList(req, cb) {
|
|
634
|
+
return this.request("DescribeVirusList", req, cb);
|
|
635
|
+
}
|
|
636
|
+
/**
|
|
637
|
+
* 镜像仓库资产刷新
|
|
638
|
+
*/
|
|
639
|
+
async SyncAssetImageRegistryAsset(req, cb) {
|
|
640
|
+
return this.request("SyncAssetImageRegistryAsset", req, cb);
|
|
641
|
+
}
|
|
642
|
+
/**
|
|
643
|
+
* 查询本地镜像风险概览
|
|
644
|
+
*/
|
|
645
|
+
async DescribeImageRiskSummary(req, cb) {
|
|
646
|
+
return this.request("DescribeImageRiskSummary", req, cb);
|
|
647
|
+
}
|
|
648
|
+
/**
|
|
649
|
+
* 重新检测选的检测项下的所有资产,返回创建的合规检查任务的ID。
|
|
650
|
+
*/
|
|
651
|
+
async ScanCompliancePolicyItems(req, cb) {
|
|
652
|
+
return this.request("ScanCompliancePolicyItems", req, cb);
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* 运行时文件查杀重新检测
|
|
656
|
+
*/
|
|
657
|
+
async CreateVirusScanAgain(req, cb) {
|
|
658
|
+
return this.request("CreateVirusScanAgain", req, cb);
|
|
659
|
+
}
|
|
660
|
+
/**
|
|
661
|
+
* 查询容器安全未处理事件信息
|
|
662
|
+
*/
|
|
663
|
+
async DescribeContainerSecEventSummary(req, cb) {
|
|
664
|
+
return this.request("DescribeContainerSecEventSummary", req, cb);
|
|
665
|
+
}
|
|
666
|
+
/**
|
|
667
|
+
* 查询最近一次任务发现的检测项的汇总信息列表,按照 检测项 → 资产 的两级层次展开。
|
|
668
|
+
*/
|
|
669
|
+
async DescribeComplianceTaskPolicyItemSummaryList(req, cb) {
|
|
670
|
+
return this.request("DescribeComplianceTaskPolicyItemSummaryList", req, cb);
|
|
671
|
+
}
|
|
672
|
+
/**
|
|
673
|
+
* 容器安全搜索查询镜像列表
|
|
674
|
+
*/
|
|
675
|
+
async DescribeAssetImageList(req, cb) {
|
|
676
|
+
return this.request("DescribeAssetImageList", req, cb);
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* 查询运行时反弹shell事件列表信息
|
|
680
|
+
*/
|
|
681
|
+
async DescribeReverseShellEvents(req, cb) {
|
|
682
|
+
return this.request("DescribeReverseShellEvents", req, cb);
|
|
683
|
+
}
|
|
684
|
+
/**
|
|
685
|
+
* 运行时更新木马文件事件状态
|
|
686
|
+
*/
|
|
687
|
+
async ModifyVirusFileStatus(req, cb) {
|
|
688
|
+
return this.request("ModifyVirusFileStatus", req, cb);
|
|
689
|
+
}
|
|
690
|
+
/**
|
|
691
|
+
* 镜像仓库创建镜像扫描任务
|
|
692
|
+
*/
|
|
693
|
+
async CreateAssetImageRegistryScanTask(req, cb) {
|
|
694
|
+
return this.request("CreateAssetImageRegistryScanTask", req, cb);
|
|
695
|
+
}
|
|
696
|
+
/**
|
|
697
|
+
* 查询未完成的刷新资产任务信息
|
|
698
|
+
*/
|
|
699
|
+
async DescribeUnfinishRefreshTask(req, cb) {
|
|
700
|
+
return this.request("DescribeUnfinishRefreshTask", req, cb);
|
|
701
|
+
}
|
|
702
|
+
/**
|
|
703
|
+
* 添加编辑运行时高危系统调用白名单
|
|
704
|
+
*/
|
|
705
|
+
async AddEditRiskSyscallWhiteList(req, cb) {
|
|
706
|
+
return this.request("AddEditRiskSyscallWhiteList", req, cb);
|
|
707
|
+
}
|
|
708
|
+
/**
|
|
709
|
+
* 镜像仓库查询一键镜像扫描状态
|
|
710
|
+
*/
|
|
711
|
+
async DescribeAssetImageRegistryScanStatusOneKey(req, cb) {
|
|
712
|
+
return this.request("DescribeAssetImageRegistryScanStatusOneKey", req, cb);
|
|
713
|
+
}
|
|
714
|
+
/**
|
|
715
|
+
* 查询运行时访问控制事件的详细信息
|
|
716
|
+
*/
|
|
717
|
+
async DescribeAccessControlDetail(req, cb) {
|
|
718
|
+
return this.request("DescribeAccessControlDetail", req, cb);
|
|
719
|
+
}
|
|
720
|
+
/**
|
|
721
|
+
* 镜像仓库镜像仓库列表
|
|
722
|
+
*/
|
|
723
|
+
async DescribeAssetImageRegistryList(req, cb) {
|
|
724
|
+
return this.request("DescribeAssetImageRegistryList", req, cb);
|
|
725
|
+
}
|
|
726
|
+
/**
|
|
727
|
+
* 容器安全搜索查询进程列表
|
|
728
|
+
*/
|
|
729
|
+
async DescribeAssetProcessList(req, cb) {
|
|
730
|
+
return this.request("DescribeAssetProcessList", req, cb);
|
|
731
|
+
}
|
|
732
|
+
/**
|
|
733
|
+
* 查询运行时异常进程事件列表信息
|
|
734
|
+
*/
|
|
735
|
+
async DescribeAbnormalProcessEvents(req, cb) {
|
|
736
|
+
return this.request("DescribeAbnormalProcessEvents", req, cb);
|
|
737
|
+
}
|
|
738
|
+
/**
|
|
739
|
+
* 更新单个镜像仓库详细信息
|
|
740
|
+
*/
|
|
741
|
+
async UpdateAssetImageRegistryRegistryDetail(req, cb) {
|
|
742
|
+
return this.request("UpdateAssetImageRegistryRegistryDetail", req, cb);
|
|
743
|
+
}
|
|
744
|
+
/**
|
|
745
|
+
* DescribeProVersionInfo 查询专业版需购买信息
|
|
746
|
+
*/
|
|
747
|
+
async DescribeProVersionInfo(req, cb) {
|
|
748
|
+
return this.request("DescribeProVersionInfo", req, cb);
|
|
749
|
+
}
|
|
750
|
+
/**
|
|
751
|
+
* 查询某资产下的检测项列表
|
|
752
|
+
*/
|
|
753
|
+
async DescribeComplianceAssetPolicyItemList(req, cb) {
|
|
754
|
+
return this.request("DescribeComplianceAssetPolicyItemList", req, cb);
|
|
755
|
+
}
|
|
756
|
+
/**
|
|
757
|
+
* 设置检测模式和自动检查
|
|
758
|
+
*/
|
|
759
|
+
async SetCheckMode(req, cb) {
|
|
760
|
+
return this.request("SetCheckMode", req, cb);
|
|
761
|
+
}
|
|
762
|
+
/**
|
|
763
|
+
* 从白名单中删除将指定的检测项。
|
|
764
|
+
*/
|
|
765
|
+
async DeleteCompliancePolicyItemFromWhitelist(req, cb) {
|
|
766
|
+
return this.request("DeleteCompliancePolicyItemFromWhitelist", req, cb);
|
|
767
|
+
}
|
|
768
|
+
/**
|
|
769
|
+
* 运行时查询文件查杀设置
|
|
770
|
+
*/
|
|
771
|
+
async DescribeVirusScanSetting(req, cb) {
|
|
772
|
+
return this.request("DescribeVirusScanSetting", req, cb);
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
* 查询某类资产的列表
|
|
776
|
+
*/
|
|
777
|
+
async DescribeComplianceAssetList(req, cb) {
|
|
778
|
+
return this.request("DescribeComplianceAssetList", req, cb);
|
|
779
|
+
}
|
|
780
|
+
/**
|
|
781
|
+
* 按照 检测项 → 资产 的两级层次展开的第二层级:资产层级。
|
|
782
|
+
*/
|
|
783
|
+
async DescribeCompliancePolicyItemAffectedAssetList(req, cb) {
|
|
784
|
+
return this.request("DescribeCompliancePolicyItemAffectedAssetList", req, cb);
|
|
785
|
+
}
|
|
786
|
+
/**
|
|
787
|
+
* 容器安全主机资产刷新
|
|
788
|
+
*/
|
|
789
|
+
async ModifyAsset(req, cb) {
|
|
790
|
+
return this.request("ModifyAsset", req, cb);
|
|
791
|
+
}
|
|
792
|
+
/**
|
|
793
|
+
* CreateOrModifyPostPayCores 创建或者编辑弹性计费上限
|
|
794
|
+
*/
|
|
795
|
+
async CreateOrModifyPostPayCores(req, cb) {
|
|
796
|
+
return this.request("CreateOrModifyPostPayCores", req, cb);
|
|
797
|
+
}
|
|
798
|
+
/**
|
|
799
|
+
* 查询运行时异常进程事件详细信息
|
|
800
|
+
*/
|
|
801
|
+
async DescribeAbnormalProcessDetail(req, cb) {
|
|
802
|
+
return this.request("DescribeAbnormalProcessDetail", req, cb);
|
|
803
|
+
}
|
|
804
|
+
/**
|
|
805
|
+
* RenewImageAuthorizeState 授权镜像扫描
|
|
806
|
+
*/
|
|
807
|
+
async RenewImageAuthorizeState(req, cb) {
|
|
808
|
+
return this.request("RenewImageAuthorizeState", req, cb);
|
|
809
|
+
}
|
|
810
|
+
/**
|
|
811
|
+
* 镜像仓库停止镜像一键扫描任务
|
|
812
|
+
*/
|
|
813
|
+
async ModifyAssetImageRegistryScanStopOneKey(req, cb) {
|
|
814
|
+
return this.request("ModifyAssetImageRegistryScanStopOneKey", req, cb);
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* 查询运行时访问控制策略详细信息
|
|
818
|
+
*/
|
|
819
|
+
async DescribeAccessControlRuleDetail(req, cb) {
|
|
820
|
+
return this.request("DescribeAccessControlRuleDetail", req, cb);
|
|
821
|
+
}
|
|
822
|
+
/**
|
|
823
|
+
* 查询节点类型的影响范围,返回节点列表
|
|
824
|
+
*/
|
|
825
|
+
async DescribeAffectedNodeList(req, cb) {
|
|
826
|
+
return this.request("DescribeAffectedNodeList", req, cb);
|
|
827
|
+
}
|
|
828
|
+
/**
|
|
829
|
+
* 查询运行时访问控制事件列表导出
|
|
830
|
+
*/
|
|
831
|
+
async DescribeAccessControlEventsExport(req, cb) {
|
|
832
|
+
return this.request("DescribeAccessControlEventsExport", req, cb);
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
* 修改反弹shell事件的状态信息
|
|
836
|
+
*/
|
|
837
|
+
async ModifyReverseShellStatus(req, cb) {
|
|
838
|
+
return this.request("ModifyReverseShellStatus", req, cb);
|
|
839
|
+
}
|
|
840
|
+
/**
|
|
841
|
+
* 添加编辑告警策略
|
|
842
|
+
*/
|
|
843
|
+
async AddEditWarningRules(req, cb) {
|
|
844
|
+
return this.request("AddEditWarningRules", req, cb);
|
|
845
|
+
}
|
|
846
|
+
/**
|
|
847
|
+
* 容器安全搜索查询镜像风险列表导出
|
|
848
|
+
*/
|
|
849
|
+
async DescribeAssetImageRiskListExport(req, cb) {
|
|
850
|
+
return this.request("DescribeAssetImageRiskListExport", req, cb);
|
|
851
|
+
}
|
|
852
|
+
/**
|
|
853
|
+
* 查询运行时访问控制策略列表导出
|
|
854
|
+
*/
|
|
855
|
+
async DescribeAccessControlRulesExport(req, cb) {
|
|
856
|
+
return this.request("DescribeAccessControlRulesExport", req, cb);
|
|
857
|
+
}
|
|
858
|
+
/**
|
|
859
|
+
* 查询最近一次任务发现的风险项的信息列表,支持根据特殊字段进行过滤
|
|
860
|
+
*/
|
|
861
|
+
async DescribeRiskList(req, cb) {
|
|
862
|
+
return this.request("DescribeRiskList", req, cb);
|
|
863
|
+
}
|
|
864
|
+
/**
|
|
865
|
+
* 容器安全查询镜像漏洞列表
|
|
866
|
+
*/
|
|
867
|
+
async DescribeAssetImageVulList(req, cb) {
|
|
868
|
+
return this.request("DescribeAssetImageVulList", req, cb);
|
|
869
|
+
}
|
|
870
|
+
/**
|
|
871
|
+
* 将指定的检测项添加到白名单中,不显示未通过结果。
|
|
872
|
+
*/
|
|
873
|
+
async AddCompliancePolicyItemToWhitelist(req, cb) {
|
|
874
|
+
return this.request("AddCompliancePolicyItemToWhitelist", req, cb);
|
|
875
|
+
}
|
|
876
|
+
/**
|
|
877
|
+
* 为客户初始化合规基线的使用环境,创建必要的数据和选项。
|
|
878
|
+
*/
|
|
879
|
+
async InitializeUserComplianceEnvironment(req, cb) {
|
|
880
|
+
return this.request("InitializeUserComplianceEnvironment", req, cb);
|
|
881
|
+
}
|
|
882
|
+
/**
|
|
883
|
+
* 安全概览和集群安全页进入调用该接口,查询用户集群相关信息。
|
|
884
|
+
*/
|
|
885
|
+
async DescribeUserCluster(req, cb) {
|
|
886
|
+
return this.request("DescribeUserCluster", req, cb);
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
* 修改定时任务的设置,包括检测周期、开启/禁用合规基准。
|
|
890
|
+
*/
|
|
891
|
+
async ModifyCompliancePeriodTask(req, cb) {
|
|
892
|
+
return this.request("ModifyCompliancePeriodTask", req, cb);
|
|
893
|
+
}
|
|
894
|
+
/**
|
|
895
|
+
* 镜像仓库查询镜像统计信息
|
|
896
|
+
*/
|
|
897
|
+
async DescribeAssetImageRegistrySummary(req, cb) {
|
|
898
|
+
return this.request("DescribeAssetImageRegistrySummary", req, cb);
|
|
899
|
+
}
|
|
900
|
+
/**
|
|
901
|
+
* 查询运行时异常进程策略列表信息
|
|
902
|
+
*/
|
|
903
|
+
async DescribeAbnormalProcessRules(req, cb) {
|
|
904
|
+
return this.request("DescribeAbnormalProcessRules", req, cb);
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* 容器安全查询db服务列表
|
|
908
|
+
*/
|
|
909
|
+
async DescribeAssetDBServiceList(req, cb) {
|
|
910
|
+
return this.request("DescribeAssetDBServiceList", req, cb);
|
|
911
|
+
}
|
|
912
|
+
/**
|
|
913
|
+
* 查询运行时运行时高危系统调用列表信息
|
|
914
|
+
*/
|
|
915
|
+
async DescribeRiskSyscallEvents(req, cb) {
|
|
916
|
+
return this.request("DescribeRiskSyscallEvents", req, cb);
|
|
917
|
+
}
|
|
918
|
+
/**
|
|
919
|
+
* 删除运行时高危系统调用白名单
|
|
920
|
+
*/
|
|
921
|
+
async DeleteRiskSyscallWhiteLists(req, cb) {
|
|
922
|
+
return this.request("DeleteRiskSyscallWhiteLists", req, cb);
|
|
923
|
+
}
|
|
924
|
+
/**
|
|
925
|
+
* 添加编辑运行时访问控制策略
|
|
926
|
+
*/
|
|
927
|
+
async AddEditAccessControlRule(req, cb) {
|
|
928
|
+
return this.request("AddEditAccessControlRule", req, cb);
|
|
929
|
+
}
|
|
930
|
+
/**
|
|
931
|
+
* 查询运行时反弹shell白名单详细信息
|
|
932
|
+
*/
|
|
933
|
+
async DescribeReverseShellWhiteListDetail(req, cb) {
|
|
934
|
+
return this.request("DescribeReverseShellWhiteListDetail", req, cb);
|
|
935
|
+
}
|
|
936
|
+
/**
|
|
937
|
+
* 添加容器安全镜像扫描设置
|
|
938
|
+
*/
|
|
939
|
+
async CreateAssetImageScanSetting(req, cb) {
|
|
940
|
+
return this.request("CreateAssetImageScanSetting", req, cb);
|
|
941
|
+
}
|
|
942
|
+
/**
|
|
943
|
+
* 容器安全查询镜像病毒列表
|
|
944
|
+
*/
|
|
945
|
+
async DescribeAssetImageVirusList(req, cb) {
|
|
946
|
+
return this.request("DescribeAssetImageVirusList", req, cb);
|
|
947
|
+
}
|
|
948
|
+
/**
|
|
949
|
+
* 查询账户容器、镜像等统计信息
|
|
950
|
+
*/
|
|
951
|
+
async DescribeAssetSummary(req, cb) {
|
|
952
|
+
return this.request("DescribeAssetSummary", req, cb);
|
|
953
|
+
}
|
|
954
|
+
/**
|
|
955
|
+
* 运行时文件查杀事件列表导出
|
|
956
|
+
*/
|
|
957
|
+
async ExportVirusList(req, cb) {
|
|
958
|
+
return this.request("ExportVirusList", req, cb);
|
|
959
|
+
}
|
|
960
|
+
/**
|
|
961
|
+
* 容器安全查询web服务列表
|
|
962
|
+
*/
|
|
963
|
+
async DescribeAssetWebServiceList(req, cb) {
|
|
964
|
+
return this.request("DescribeAssetWebServiceList", req, cb);
|
|
965
|
+
}
|
|
966
|
+
/**
|
|
967
|
+
* 检查单个镜像仓库名是否重复
|
|
968
|
+
*/
|
|
969
|
+
async CheckRepeatAssetImageRegistry(req, cb) {
|
|
970
|
+
return this.request("CheckRepeatAssetImageRegistry", req, cb);
|
|
971
|
+
}
|
|
972
|
+
/**
|
|
973
|
+
* 添加编辑运行时异常进程策略
|
|
974
|
+
*/
|
|
975
|
+
async AddEditAbnormalProcessRule(req, cb) {
|
|
976
|
+
return this.request("AddEditAbnormalProcessRule", req, cb);
|
|
977
|
+
}
|
|
978
|
+
/**
|
|
979
|
+
* 查询主机详细信息
|
|
980
|
+
*/
|
|
981
|
+
async DescribeAssetHostDetail(req, cb) {
|
|
982
|
+
return this.request("DescribeAssetHostDetail", req, cb);
|
|
983
|
+
}
|
|
984
|
+
/**
|
|
985
|
+
* 容器安全查询镜像关联主机
|
|
986
|
+
*/
|
|
987
|
+
async DescribeAssetImageHostList(req, cb) {
|
|
988
|
+
return this.request("DescribeAssetImageHostList", req, cb);
|
|
989
|
+
}
|
|
990
|
+
/**
|
|
991
|
+
* 查询运行时高危系统调用白名单列表信息
|
|
992
|
+
*/
|
|
993
|
+
async DescribeRiskSyscallWhiteLists(req, cb) {
|
|
994
|
+
return this.request("DescribeRiskSyscallWhiteLists", req, cb);
|
|
995
|
+
}
|
|
996
|
+
/**
|
|
997
|
+
* 镜像仓库查询镜像漏洞列表
|
|
998
|
+
*/
|
|
999
|
+
async DescribeAssetImageRegistryVulList(req, cb) {
|
|
1000
|
+
return this.request("DescribeAssetImageRegistryVulList", req, cb);
|
|
1001
|
+
}
|
|
1002
|
+
/**
|
|
1003
|
+
* 运行时查询文件查杀任务状态
|
|
1004
|
+
*/
|
|
1005
|
+
async DescribeVirusScanTaskStatus(req, cb) {
|
|
1006
|
+
return this.request("DescribeVirusScanTaskStatus", req, cb);
|
|
1007
|
+
}
|
|
1008
|
+
/**
|
|
1009
|
+
* 用指定的检测项重新检测选定的资产,返回创建的合规检查任务的ID。
|
|
1010
|
+
*/
|
|
1011
|
+
async ScanComplianceAssetsByPolicyItem(req, cb) {
|
|
1012
|
+
return this.request("ScanComplianceAssetsByPolicyItem", req, cb);
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
* 查询镜像详细信息
|
|
1016
|
+
*/
|
|
1017
|
+
async DescribeAssetImageDetail(req, cb) {
|
|
1018
|
+
return this.request("DescribeAssetImageDetail", req, cb);
|
|
1019
|
+
}
|
|
1020
|
+
/**
|
|
1021
|
+
* 查询容器运行时安全事件趋势
|
|
1022
|
+
*/
|
|
1023
|
+
async DescribeSecEventsTendency(req, cb) {
|
|
1024
|
+
return this.request("DescribeSecEventsTendency", req, cb);
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
exports.Client = Client;
|