tencentcloud-sdk-nodejs 4.1.299 → 4.1.300
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/common/sdk_version.js +1 -1
- package/es/services/csip/v20221121/csip_client.js +307 -52
- package/es/services/cynosdb/v20190107/cynosdb_client.js +3 -0
- package/es/services/redis/v20180412/redis_client.js +3 -0
- package/es/services/tke/v20220501/tke_client.js +3 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +393 -53
- package/tencentcloud/services/csip/v20221121/csip_client.js +588 -78
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +6905 -1501
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +5 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +6 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +52 -14
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +4 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +2 -2
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +65 -1
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +5 -1
- package/tencentcloud/services/redis/v20180412/redis_client.js +6 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +22 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +37 -7
- package/tencentcloud/services/tke/v20220501/tke_client.d.ts +5 -1
- package/tencentcloud/services/tke/v20220501/tke_client.js +6 -0
- package/tencentcloud/services/tke/v20220501/tke_models.d.ts +22 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +4 -0
|
@@ -87,6 +87,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
87
87
|
async DescribeAccessKeyUserList(req, cb) {
|
|
88
88
|
return this.request("DescribeAccessKeyUserList", req, cb);
|
|
89
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* 查询镜像敏感信息列表
|
|
92
|
+
*/
|
|
93
|
+
async DescribeImageSensitiveInfoList(req, cb) {
|
|
94
|
+
return this.request("DescribeImageSensitiveInfoList", req, cb);
|
|
95
|
+
}
|
|
90
96
|
/**
|
|
91
97
|
* 关闭进程守护功能
|
|
92
98
|
*/
|
|
@@ -111,6 +117,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
111
117
|
async ModifyCSIPLicenseUnBinds(req, cb) {
|
|
112
118
|
return this.request("ModifyCSIPLicenseUnBinds", req, cb);
|
|
113
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* 批量修改镜像木马白名单
|
|
122
|
+
*/
|
|
123
|
+
async BatchModifyImageVirusWhitelist(req, cb) {
|
|
124
|
+
return this.request("BatchModifyImageVirusWhitelist", req, cb);
|
|
125
|
+
}
|
|
114
126
|
/**
|
|
115
127
|
* 停止漏洞扫描(任务扫描)
|
|
116
128
|
*/
|
|
@@ -118,10 +130,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
118
130
|
return this.request("StopVulScanTask", req, cb);
|
|
119
131
|
}
|
|
120
132
|
/**
|
|
121
|
-
*
|
|
133
|
+
* 查询镜像仓库命名空间列表
|
|
122
134
|
*/
|
|
123
|
-
async
|
|
124
|
-
return this.request("
|
|
135
|
+
async DescribeImageRegistryNamespaceList(req, cb) {
|
|
136
|
+
return this.request("DescribeImageRegistryNamespaceList", req, cb);
|
|
125
137
|
}
|
|
126
138
|
/**
|
|
127
139
|
* 获取漏洞展开详情
|
|
@@ -190,10 +202,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
190
202
|
return this.request("DescribeEdrAlertInfo", req, cb);
|
|
191
203
|
}
|
|
192
204
|
/**
|
|
193
|
-
*
|
|
205
|
+
* 获取爆破破解规则
|
|
194
206
|
*/
|
|
195
|
-
async
|
|
196
|
-
return this.request("
|
|
207
|
+
async DescribeBruteAttackRules(req, cb) {
|
|
208
|
+
return this.request("DescribeBruteAttackRules", req, cb);
|
|
197
209
|
}
|
|
198
210
|
/**
|
|
199
211
|
* 修改Dspm资产账号权限
|
|
@@ -219,6 +231,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
219
231
|
async ModifyWebhookPolicyStatus(req, cb) {
|
|
220
232
|
return this.request("ModifyWebhookPolicyStatus", req, cb);
|
|
221
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* 查询Dspm风险分组策略
|
|
236
|
+
*/
|
|
237
|
+
async DescribeDspmRiskStrategyGroup(req, cb) {
|
|
238
|
+
return this.request("DescribeDspmRiskStrategyGroup", req, cb);
|
|
239
|
+
}
|
|
222
240
|
/**
|
|
223
241
|
* 查询dspm资产字段样本值
|
|
224
242
|
*/
|
|
@@ -255,6 +273,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
255
273
|
async StartOrModifyPreventUninstall(req, cb) {
|
|
256
274
|
return this.request("StartOrModifyPreventUninstall", req, cb);
|
|
257
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* 查询仓库总览
|
|
278
|
+
*/
|
|
279
|
+
async DescribeRegistryOverview(req, cb) {
|
|
280
|
+
return this.request("DescribeRegistryOverview", req, cb);
|
|
281
|
+
}
|
|
258
282
|
/**
|
|
259
283
|
* 获取CSPM自动配额共享配置
|
|
260
284
|
*/
|
|
@@ -303,6 +327,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
303
327
|
async CreateCosPolicy(req, cb) {
|
|
304
328
|
return this.request("CreateCosPolicy", req, cb);
|
|
305
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* 删除镜像木马白名单
|
|
332
|
+
*/
|
|
333
|
+
async DeleteImageVirusWhitelist(req, cb) {
|
|
334
|
+
return this.request("DeleteImageVirusWhitelist", req, cb);
|
|
335
|
+
}
|
|
306
336
|
/**
|
|
307
337
|
* 查询客户端运行策略(策略组),从DescribeAgentRunMode拆分出的独立接口
|
|
308
338
|
*/
|
|
@@ -339,6 +369,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
339
369
|
async CreateClusterContainerListExportJob(req, cb) {
|
|
340
370
|
return this.request("CreateClusterContainerListExportJob", req, cb);
|
|
341
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
* 获取 AIAgent 资产凭据扫描列表
|
|
374
|
+
*/
|
|
375
|
+
async DescribeAIAgentCredentialList(req, cb) {
|
|
376
|
+
return this.request("DescribeAIAgentCredentialList", req, cb);
|
|
377
|
+
}
|
|
342
378
|
/**
|
|
343
379
|
* 分页查询漏洞修复任务记录列表,支持按修复状态、时间范围等条件筛选,展示每个修复任务的概要信息。
|
|
344
380
|
*/
|
|
@@ -387,12 +423,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
387
423
|
async DescribePublicCloudAssets(req, cb) {
|
|
388
424
|
return this.request("DescribePublicCloudAssets", req, cb);
|
|
389
425
|
}
|
|
426
|
+
/**
|
|
427
|
+
* 镜像仓库同步
|
|
428
|
+
*/
|
|
429
|
+
async SyncImageRegistry(req, cb) {
|
|
430
|
+
return this.request("SyncImageRegistry", req, cb);
|
|
431
|
+
}
|
|
390
432
|
/**
|
|
391
433
|
* 查询Dspm资产登录凭据
|
|
392
434
|
*/
|
|
393
435
|
async DescribeDspmAssetLoginCredential(req, cb) {
|
|
394
436
|
return this.request("DescribeDspmAssetLoginCredential", req, cb);
|
|
395
437
|
}
|
|
438
|
+
/**
|
|
439
|
+
* 修改通知设置(云API风险治理)
|
|
440
|
+
*/
|
|
441
|
+
async ModifyNotifySettingAk(req, cb) {
|
|
442
|
+
return this.request("ModifyNotifySettingAk", req, cb);
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* 查询资产数据库信息
|
|
446
|
+
*/
|
|
447
|
+
async ModifyImageVirusWhitelist(req, cb) {
|
|
448
|
+
return this.request("ModifyImageVirusWhitelist", req, cb);
|
|
449
|
+
}
|
|
396
450
|
/**
|
|
397
451
|
* 查询AI 定时任务列表。
|
|
398
452
|
|
|
@@ -419,6 +473,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
419
473
|
async DeleteLoginWhiteList(req, cb) {
|
|
420
474
|
return this.request("DeleteLoginWhiteList", req, cb);
|
|
421
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* 批量修改容器镜像敏感信息白名单
|
|
478
|
+
*/
|
|
479
|
+
async BatchModifyImageSensitiveWhitelist(req, cb) {
|
|
480
|
+
return this.request("BatchModifyImageSensitiveWhitelist", req, cb);
|
|
481
|
+
}
|
|
422
482
|
/**
|
|
423
483
|
* 获取资产视角的端口风险列表
|
|
424
484
|
*/
|
|
@@ -456,10 +516,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
456
516
|
return this.request("UpdateAccessKeyRemark", req, cb);
|
|
457
517
|
}
|
|
458
518
|
/**
|
|
459
|
-
*
|
|
519
|
+
* 查看镜像仓库定时扫描任务配置
|
|
460
520
|
*/
|
|
461
|
-
async
|
|
462
|
-
return this.request("
|
|
521
|
+
async DescribeImageRegistryTimedScanTaskConfig(req, cb) {
|
|
522
|
+
return this.request("DescribeImageRegistryTimedScanTaskConfig", req, cb);
|
|
523
|
+
}
|
|
524
|
+
/**
|
|
525
|
+
* 获取EDR告警统计
|
|
526
|
+
*/
|
|
527
|
+
async DescribeEdrAlertSummary(req, cb) {
|
|
528
|
+
return this.request("DescribeEdrAlertSummary", req, cb);
|
|
463
529
|
}
|
|
464
530
|
/**
|
|
465
531
|
* 获取扫描子任务列表,用于任务详情页“资产维度”展示每台主机/每个集群的扫描状态与失败原因。
|
|
@@ -485,6 +551,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
485
551
|
async ModifyDspmAssetDataScanTaskStatus(req, cb) {
|
|
486
552
|
return this.request("ModifyDspmAssetDataScanTaskStatus", req, cb);
|
|
487
553
|
}
|
|
554
|
+
/**
|
|
555
|
+
* 删除容器镜像漏洞白名单
|
|
556
|
+
*/
|
|
557
|
+
async DeleteImageVulWhitelist(req, cb) {
|
|
558
|
+
return this.request("DeleteImageVulWhitelist", req, cb);
|
|
559
|
+
}
|
|
488
560
|
/**
|
|
489
561
|
* 标记资产是否核心
|
|
490
562
|
*/
|
|
@@ -497,6 +569,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
497
569
|
async DescribeDspmPersonApplyHistory(req, cb) {
|
|
498
570
|
return this.request("DescribeDspmPersonApplyHistory", req, cb);
|
|
499
571
|
}
|
|
572
|
+
/**
|
|
573
|
+
* 批量修改容器镜像漏洞白名单
|
|
574
|
+
*/
|
|
575
|
+
async BatchModifyImageVulWhitelist(req, cb) {
|
|
576
|
+
return this.request("BatchModifyImageVulWhitelist", req, cb);
|
|
577
|
+
}
|
|
500
578
|
/**
|
|
501
579
|
* 查询Dspm白名单策略
|
|
502
580
|
*/
|
|
@@ -533,6 +611,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
533
611
|
async DescribeRiskDetailList(req, cb) {
|
|
534
612
|
return this.request("DescribeRiskDetailList", req, cb);
|
|
535
613
|
}
|
|
614
|
+
/**
|
|
615
|
+
* 重保防护包防护设置
|
|
616
|
+
*/
|
|
617
|
+
async ModifyProtectionSetting(req, cb) {
|
|
618
|
+
return this.request("ModifyProtectionSetting", req, cb);
|
|
619
|
+
}
|
|
620
|
+
/**
|
|
621
|
+
* 停止镜像仓库镜像扫描任务
|
|
622
|
+
*/
|
|
623
|
+
async StopImageRegistryScanTask(req, cb) {
|
|
624
|
+
return this.request("StopImageRegistryScanTask", req, cb);
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* 批量修改 Skill 安全检测告警的处理状态
|
|
628
|
+
*/
|
|
629
|
+
async ModifySkillScanAlertStatus(req, cb) {
|
|
630
|
+
return this.request("ModifySkillScanAlertStatus", req, cb);
|
|
631
|
+
}
|
|
536
632
|
/**
|
|
537
633
|
* 修改对象存储备注
|
|
538
634
|
*/
|
|
@@ -575,12 +671,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
575
671
|
async DescribeClusterContainerList(req, cb) {
|
|
576
672
|
return this.request("DescribeClusterContainerList", req, cb);
|
|
577
673
|
}
|
|
674
|
+
/**
|
|
675
|
+
* 添加镜像仓库信息
|
|
676
|
+
*/
|
|
677
|
+
async AddImageRegistry(req, cb) {
|
|
678
|
+
return this.request("AddImageRegistry", req, cb);
|
|
679
|
+
}
|
|
578
680
|
/**
|
|
579
681
|
* 绑定 RASP / 旗舰版授权到指定订单。异步执行,返回TaskId供查询进度。LicenseType=rasp 绑 RASP,LicenseType=enterprise_hp 绑旗舰版主机授权;AssetType 区分主机/容器节点/EKS。
|
|
580
682
|
*/
|
|
581
683
|
async ModifyCSIPRaspLicenseBinds(req, cb) {
|
|
582
684
|
return this.request("ModifyCSIPRaspLicenseBinds", req, cb);
|
|
583
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
* 获取 AI Agent skill 列表
|
|
688
|
+
*/
|
|
689
|
+
async DescribeAIAgentSkillList(req, cb) {
|
|
690
|
+
return this.request("DescribeAIAgentSkillList", req, cb);
|
|
691
|
+
}
|
|
584
692
|
/**
|
|
585
693
|
* 全部资产
|
|
586
694
|
*/
|
|
@@ -638,10 +746,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
638
746
|
return this.request("DescribeBaselinePolicyNameExistAppidList", req, cb);
|
|
639
747
|
}
|
|
640
748
|
/**
|
|
641
|
-
*
|
|
749
|
+
* 获取已购Dspm订单信息
|
|
642
750
|
*/
|
|
643
|
-
async
|
|
644
|
-
return this.request("
|
|
751
|
+
async DescribeDspmPayInfo(req, cb) {
|
|
752
|
+
return this.request("DescribeDspmPayInfo", req, cb);
|
|
753
|
+
}
|
|
754
|
+
/**
|
|
755
|
+
* 获取TCR实例列表
|
|
756
|
+
*/
|
|
757
|
+
async DescribeTCRInstanceList(req, cb) {
|
|
758
|
+
return this.request("DescribeTCRInstanceList", req, cb);
|
|
645
759
|
}
|
|
646
760
|
/**
|
|
647
761
|
* 集群列表
|
|
@@ -655,6 +769,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
655
769
|
async ModifyDspmAssetLogDeliverySwitch(req, cb) {
|
|
656
770
|
return this.request("ModifyDspmAssetLogDeliverySwitch", req, cb);
|
|
657
771
|
}
|
|
772
|
+
/**
|
|
773
|
+
* 查询镜像仓库列表
|
|
774
|
+
*/
|
|
775
|
+
async DescribeImageRegistryList(req, cb) {
|
|
776
|
+
return this.request("DescribeImageRegistryList", req, cb);
|
|
777
|
+
}
|
|
658
778
|
/**
|
|
659
779
|
* 查询指定安全组ID对应安全组规则
|
|
660
780
|
*/
|
|
@@ -734,10 +854,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
734
854
|
return this.request("ModifyWebhookPolicy", req, cb);
|
|
735
855
|
}
|
|
736
856
|
/**
|
|
737
|
-
*
|
|
857
|
+
* 删除镜像仓库定时扫描任务配置
|
|
738
858
|
*/
|
|
739
|
-
async
|
|
740
|
-
return this.request("
|
|
859
|
+
async DeleteImageRegistryTimedScanTaskConfig(req, cb) {
|
|
860
|
+
return this.request("DeleteImageRegistryTimedScanTaskConfig", req, cb);
|
|
741
861
|
}
|
|
742
862
|
/**
|
|
743
863
|
* 创建Dspm白名单策略
|
|
@@ -751,6 +871,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
751
871
|
async CreateRiskDetailExportJob(req, cb) {
|
|
752
872
|
return this.request("CreateRiskDetailExportJob", req, cb);
|
|
753
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
* 获取漏洞扫描(周期扫描)
|
|
876
|
+
*/
|
|
877
|
+
async DescribeVulScanPeriodic(req, cb) {
|
|
878
|
+
return this.request("DescribeVulScanPeriodic", req, cb);
|
|
879
|
+
}
|
|
754
880
|
/**
|
|
755
881
|
* ip访问列表详情信息
|
|
756
882
|
*/
|
|
@@ -793,6 +919,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
793
919
|
async DescribePortDetectList(req, cb) {
|
|
794
920
|
return this.request("DescribePortDetectList", req, cb);
|
|
795
921
|
}
|
|
922
|
+
/**
|
|
923
|
+
* 查询镜像木马白名单详情
|
|
924
|
+
*/
|
|
925
|
+
async DescribeImageVirusWhitelistDetail(req, cb) {
|
|
926
|
+
return this.request("DescribeImageVirusWhitelistDetail", req, cb);
|
|
927
|
+
}
|
|
796
928
|
/**
|
|
797
929
|
* 查询集团的子账号列表
|
|
798
930
|
*/
|
|
@@ -800,16 +932,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
800
932
|
return this.request("DescribeSubUserInfo", req, cb);
|
|
801
933
|
}
|
|
802
934
|
/**
|
|
803
|
-
*
|
|
935
|
+
* 获取资产视角的漏洞风险列表
|
|
804
936
|
*/
|
|
805
|
-
async
|
|
806
|
-
return this.request("
|
|
937
|
+
async DescribeRiskCenterAssetViewVULRiskList(req, cb) {
|
|
938
|
+
return this.request("DescribeRiskCenterAssetViewVULRiskList", req, cb);
|
|
807
939
|
}
|
|
808
940
|
/**
|
|
809
|
-
*
|
|
941
|
+
* 查询镜像层信息列表
|
|
810
942
|
*/
|
|
811
|
-
async
|
|
812
|
-
return this.request("
|
|
943
|
+
async DescribeImageLayerList(req, cb) {
|
|
944
|
+
return this.request("DescribeImageLayerList", req, cb);
|
|
813
945
|
}
|
|
814
946
|
/**
|
|
815
947
|
* 更新CSPM自动配额管理者共享开关
|
|
@@ -935,6 +1067,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
935
1067
|
async StopProcessDaemon(req, cb) {
|
|
936
1068
|
return this.request("StopProcessDaemon", req, cb);
|
|
937
1069
|
}
|
|
1070
|
+
/**
|
|
1071
|
+
* 创建镜像资产列表导出任务
|
|
1072
|
+
*/
|
|
1073
|
+
async CreateImageAssetListExportJob(req, cb) {
|
|
1074
|
+
return this.request("CreateImageAssetListExportJob", req, cb);
|
|
1075
|
+
}
|
|
938
1076
|
/**
|
|
939
1077
|
* 删除dspm数据识别模板
|
|
940
1078
|
*/
|
|
@@ -953,6 +1091,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
953
1091
|
async ModifyAgentRunMode(req, cb) {
|
|
954
1092
|
return this.request("ModifyAgentRunMode", req, cb);
|
|
955
1093
|
}
|
|
1094
|
+
/**
|
|
1095
|
+
* 新增或更新NFS扫描全局配置
|
|
1096
|
+
*/
|
|
1097
|
+
async ModifyNFSScanConf(req, cb) {
|
|
1098
|
+
return this.request("ModifyNFSScanConf", req, cb);
|
|
1099
|
+
}
|
|
956
1100
|
/**
|
|
957
1101
|
* 查询日志备份配置
|
|
958
1102
|
*/
|
|
@@ -1031,6 +1175,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1031
1175
|
async DescribeCosRoleAccessPermission(req, cb) {
|
|
1032
1176
|
return this.request("DescribeCosRoleAccessPermission", req, cb);
|
|
1033
1177
|
}
|
|
1178
|
+
/**
|
|
1179
|
+
* 创建镜像仓库组件关联镜像列表导出任务
|
|
1180
|
+
*/
|
|
1181
|
+
async CreateAssetComponentRelatedImageListExportJob(req, cb) {
|
|
1182
|
+
return this.request("CreateAssetComponentRelatedImageListExportJob", req, cb);
|
|
1183
|
+
}
|
|
1034
1184
|
/**
|
|
1035
1185
|
* 风险验证示例
|
|
1036
1186
|
*/
|
|
@@ -1061,12 +1211,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1061
1211
|
async DescribeBaselinePolicyItemList(req, cb) {
|
|
1062
1212
|
return this.request("DescribeBaselinePolicyItemList", req, cb);
|
|
1063
1213
|
}
|
|
1214
|
+
/**
|
|
1215
|
+
* 查询镜像仓库定时扫描任务预览
|
|
1216
|
+
*/
|
|
1217
|
+
async DescribeImageRegistryTimedScanTaskPreview(req, cb) {
|
|
1218
|
+
return this.request("DescribeImageRegistryTimedScanTaskPreview", req, cb);
|
|
1219
|
+
}
|
|
1220
|
+
/**
|
|
1221
|
+
* 立体防护中心查询漏洞信息
|
|
1222
|
+
*/
|
|
1223
|
+
async DescribeSearchBugInfo(req, cb) {
|
|
1224
|
+
return this.request("DescribeSearchBugInfo", req, cb);
|
|
1225
|
+
}
|
|
1064
1226
|
/**
|
|
1065
1227
|
* 点击开始扫描后触发,支持多账号、多资产类型。同时选主机和容器集群时拆分为两个独立任务(主机+容器)。
|
|
1066
1228
|
*/
|
|
1067
1229
|
async CreateEDRManualScan(req, cb) {
|
|
1068
1230
|
return this.request("CreateEDRManualScan", req, cb);
|
|
1069
1231
|
}
|
|
1232
|
+
/**
|
|
1233
|
+
* 删除容器镜像敏感信息白名单
|
|
1234
|
+
*/
|
|
1235
|
+
async DeleteImageSensitiveWhitelist(req, cb) {
|
|
1236
|
+
return this.request("DeleteImageSensitiveWhitelist", req, cb);
|
|
1237
|
+
}
|
|
1070
1238
|
/**
|
|
1071
1239
|
* 查询集群节点列表
|
|
1072
1240
|
*/
|
|
@@ -1104,10 +1272,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1104
1272
|
return this.request("DescribeSubnetAssets", req, cb);
|
|
1105
1273
|
}
|
|
1106
1274
|
/**
|
|
1107
|
-
*
|
|
1275
|
+
* 创建镜像漏洞列表导出任务
|
|
1108
1276
|
*/
|
|
1109
|
-
async
|
|
1110
|
-
return this.request("
|
|
1277
|
+
async CreateImageVulListExportJob(req, cb) {
|
|
1278
|
+
return this.request("CreateImageVulListExportJob", req, cb);
|
|
1111
1279
|
}
|
|
1112
1280
|
/**
|
|
1113
1281
|
* 创建/修改SMTP邮箱接入请求
|
|
@@ -1181,12 +1349,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1181
1349
|
async DescribeEdrExportJobDownloadURL(req, cb) {
|
|
1182
1350
|
return this.request("DescribeEdrExportJobDownloadURL", req, cb);
|
|
1183
1351
|
}
|
|
1352
|
+
/**
|
|
1353
|
+
* 创建镜像仓库列表导出任务
|
|
1354
|
+
*/
|
|
1355
|
+
async CreateImageRegistryListExportJob(req, cb) {
|
|
1356
|
+
return this.request("CreateImageRegistryListExportJob", req, cb);
|
|
1357
|
+
}
|
|
1184
1358
|
/**
|
|
1185
1359
|
* csip角色授权绑定接口
|
|
1186
1360
|
*/
|
|
1187
1361
|
async AddNewBindRoleUser(req, cb) {
|
|
1188
1362
|
return this.request("AddNewBindRoleUser", req, cb);
|
|
1189
1363
|
}
|
|
1364
|
+
/**
|
|
1365
|
+
* 查询联通性检测主机列表
|
|
1366
|
+
*/
|
|
1367
|
+
async DescribeCheckConnectivityHostList(req, cb) {
|
|
1368
|
+
return this.request("DescribeCheckConnectivityHostList", req, cb);
|
|
1369
|
+
}
|
|
1190
1370
|
/**
|
|
1191
1371
|
* 获取存储桶角色权限列表
|
|
1192
1372
|
*/
|
|
@@ -1241,6 +1421,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1241
1421
|
async CreateExposureAutoTagRule(req, cb) {
|
|
1242
1422
|
return this.request("CreateExposureAutoTagRule", req, cb);
|
|
1243
1423
|
}
|
|
1424
|
+
/**
|
|
1425
|
+
* 查询镜像仓库导出任务列表
|
|
1426
|
+
*/
|
|
1427
|
+
async DescribeImageExportJobList(req, cb) {
|
|
1428
|
+
return this.request("DescribeImageExportJobList", req, cb);
|
|
1429
|
+
}
|
|
1244
1430
|
/**
|
|
1245
1431
|
* 获取云安全AI助手基础信息
|
|
1246
1432
|
*/
|
|
@@ -1278,10 +1464,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1278
1464
|
return this.request("DescribeEdrAlertThreatTags", req, cb);
|
|
1279
1465
|
}
|
|
1280
1466
|
/**
|
|
1281
|
-
*
|
|
1467
|
+
* 上传 Skill ZIP 文件,触发异步安全检测。上传成功后应使用返回的 ContentHash + EngineVersion 轮询 DescribeSkillScanResult 接口获取结果。上传接口具备幂等性,同一 Hash 的文件重复上传不会创建重复任务。检测结果保留90天,超期后需重新上传检测。
|
|
1282
1468
|
*/
|
|
1283
|
-
async
|
|
1284
|
-
return this.request("
|
|
1469
|
+
async CreateSkillScan(req, cb) {
|
|
1470
|
+
return this.request("CreateSkillScan", req, cb);
|
|
1285
1471
|
}
|
|
1286
1472
|
/**
|
|
1287
1473
|
* 资产风险详情
|
|
@@ -1301,6 +1487,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1301
1487
|
async DescribeClusterServiceList(req, cb) {
|
|
1302
1488
|
return this.request("DescribeClusterServiceList", req, cb);
|
|
1303
1489
|
}
|
|
1490
|
+
/**
|
|
1491
|
+
* 查询镜像漏洞列表
|
|
1492
|
+
*/
|
|
1493
|
+
async DescribeImageVulList(req, cb) {
|
|
1494
|
+
return this.request("DescribeImageVulList", req, cb);
|
|
1495
|
+
}
|
|
1304
1496
|
/**
|
|
1305
1497
|
* 查询Dspm资产账号身份信息
|
|
1306
1498
|
*/
|
|
@@ -1421,6 +1613,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1421
1613
|
async DescribeVulRiskList(req, cb) {
|
|
1422
1614
|
return this.request("DescribeVulRiskList", req, cb);
|
|
1423
1615
|
}
|
|
1616
|
+
/**
|
|
1617
|
+
* 查询镜像仓库扫描子任务信息
|
|
1618
|
+
*/
|
|
1619
|
+
async DescribeImageRegistryScanSubTaskList(req, cb) {
|
|
1620
|
+
return this.request("DescribeImageRegistryScanSubTaskList", req, cb);
|
|
1621
|
+
}
|
|
1424
1622
|
/**
|
|
1425
1623
|
* 安装集群容器安全Agent(平行容器方式安装 Agent)。
|
|
1426
1624
|
|
|
@@ -1561,6 +1759,12 @@ capi 层处理流程:
|
|
|
1561
1759
|
async CheckIsUltimateVersion(req, cb) {
|
|
1562
1760
|
return this.request("CheckIsUltimateVersion", req, cb);
|
|
1563
1761
|
}
|
|
1762
|
+
/**
|
|
1763
|
+
* 修改镜像仓库定时扫描任务配置
|
|
1764
|
+
*/
|
|
1765
|
+
async ModifyImageRegistryTimedScanTaskConfig(req, cb) {
|
|
1766
|
+
return this.request("ModifyImageRegistryTimedScanTaskConfig", req, cb);
|
|
1767
|
+
}
|
|
1564
1768
|
/**
|
|
1565
1769
|
* 开启或者修改进程守护功能配置
|
|
1566
1770
|
*/
|
|
@@ -1622,16 +1826,22 @@ capi 层处理流程:
|
|
|
1622
1826
|
return this.request("DescribeUserCSPMInfoList", req, cb);
|
|
1623
1827
|
}
|
|
1624
1828
|
/**
|
|
1625
|
-
*
|
|
1829
|
+
* 查询EDR日志采集例外网段配置,添加至例外名单的网段,其TCP日志将不被采集。如果用户未配置过,则返回系统推荐的默认网段
|
|
1626
1830
|
*/
|
|
1627
|
-
async
|
|
1628
|
-
return this.request("
|
|
1831
|
+
async DescribeEdrExcludeNetworkSegments(req, cb) {
|
|
1832
|
+
return this.request("DescribeEdrExcludeNetworkSegments", req, cb);
|
|
1629
1833
|
}
|
|
1630
1834
|
/**
|
|
1631
|
-
*
|
|
1835
|
+
* 修改容器镜像漏洞白名单
|
|
1632
1836
|
*/
|
|
1633
|
-
async
|
|
1634
|
-
return this.request("
|
|
1837
|
+
async ModifyImageVulWhitelist(req, cb) {
|
|
1838
|
+
return this.request("ModifyImageVulWhitelist", req, cb);
|
|
1839
|
+
}
|
|
1840
|
+
/**
|
|
1841
|
+
* 修改集团账号状态
|
|
1842
|
+
*/
|
|
1843
|
+
async ModifyOrganizationAccountStatus(req, cb) {
|
|
1844
|
+
return this.request("ModifyOrganizationAccountStatus", req, cb);
|
|
1635
1845
|
}
|
|
1636
1846
|
/**
|
|
1637
1847
|
* 创建dspm数据识别模板数据项关联
|
|
@@ -1676,16 +1886,16 @@ capi 层处理流程:
|
|
|
1676
1886
|
return this.request("CreateDspmIdentifyRule", req, cb);
|
|
1677
1887
|
}
|
|
1678
1888
|
/**
|
|
1679
|
-
*
|
|
1889
|
+
* 查询镜像木马白名单
|
|
1680
1890
|
*/
|
|
1681
|
-
async
|
|
1682
|
-
return this.request("
|
|
1891
|
+
async DescribeImageVirusWhitelist(req, cb) {
|
|
1892
|
+
return this.request("DescribeImageVirusWhitelist", req, cb);
|
|
1683
1893
|
}
|
|
1684
1894
|
/**
|
|
1685
|
-
*
|
|
1895
|
+
* 查看ak资产列表信息
|
|
1686
1896
|
*/
|
|
1687
|
-
async
|
|
1688
|
-
return this.request("
|
|
1897
|
+
async DescribeCosAkAsset(req, cb) {
|
|
1898
|
+
return this.request("DescribeCosAkAsset", req, cb);
|
|
1689
1899
|
}
|
|
1690
1900
|
/**
|
|
1691
1901
|
* 查询用户的账号详情
|
|
@@ -1724,10 +1934,10 @@ capi 层处理流程:
|
|
|
1724
1934
|
return this.request("ModifyDspmIdentifyCategory", req, cb);
|
|
1725
1935
|
}
|
|
1726
1936
|
/**
|
|
1727
|
-
*
|
|
1937
|
+
* 查询镜像仓库资产总览
|
|
1728
1938
|
*/
|
|
1729
|
-
async
|
|
1730
|
-
return this.request("
|
|
1939
|
+
async DescribeImageRegistryAssetOverview(req, cb) {
|
|
1940
|
+
return this.request("DescribeImageRegistryAssetOverview", req, cb);
|
|
1731
1941
|
}
|
|
1732
1942
|
/**
|
|
1733
1943
|
* 获取进程守护主机列表
|
|
@@ -1784,10 +1994,16 @@ capi 层处理流程:
|
|
|
1784
1994
|
return this.request("DescribeDbAssets", req, cb);
|
|
1785
1995
|
}
|
|
1786
1996
|
/**
|
|
1787
|
-
*
|
|
1997
|
+
* 查询镜像仓库联通性检查任务结果
|
|
1788
1998
|
*/
|
|
1789
|
-
async
|
|
1790
|
-
return this.request("
|
|
1999
|
+
async DescribeImageRegistryConnectivityTaskResult(req, cb) {
|
|
2000
|
+
return this.request("DescribeImageRegistryConnectivityTaskResult", req, cb);
|
|
2001
|
+
}
|
|
2002
|
+
/**
|
|
2003
|
+
* 创建镜像层漏洞列表导出任务
|
|
2004
|
+
*/
|
|
2005
|
+
async CreateImageLayerVulListExportJob(req, cb) {
|
|
2006
|
+
return this.request("CreateImageLayerVulListExportJob", req, cb);
|
|
1791
2007
|
}
|
|
1792
2008
|
/**
|
|
1793
2009
|
* 修改机器清理配置
|
|
@@ -1801,18 +2017,36 @@ capi 层处理流程:
|
|
|
1801
2017
|
async DescribeVulViewVulRiskList(req, cb) {
|
|
1802
2018
|
return this.request("DescribeVulViewVulRiskList", req, cb);
|
|
1803
2019
|
}
|
|
2020
|
+
/**
|
|
2021
|
+
* 查询镜像层漏洞列表
|
|
2022
|
+
*/
|
|
2023
|
+
async DescribeImageLayerVulList(req, cb) {
|
|
2024
|
+
return this.request("DescribeImageLayerVulList", req, cb);
|
|
2025
|
+
}
|
|
1804
2026
|
/**
|
|
1805
2027
|
* 创建域名、ip相关信息
|
|
1806
2028
|
*/
|
|
1807
2029
|
async CreateDomainAndIp(req, cb) {
|
|
1808
2030
|
return this.request("CreateDomainAndIp", req, cb);
|
|
1809
2031
|
}
|
|
2032
|
+
/**
|
|
2033
|
+
* 查询容器镜像漏洞白名单
|
|
2034
|
+
*/
|
|
2035
|
+
async DescribeImageVulWhitelist(req, cb) {
|
|
2036
|
+
return this.request("DescribeImageVulWhitelist", req, cb);
|
|
2037
|
+
}
|
|
1810
2038
|
/**
|
|
1811
2039
|
* 批量告警状态处理接口
|
|
1812
2040
|
*/
|
|
1813
2041
|
async UpdateAlertStatusList(req, cb) {
|
|
1814
2042
|
return this.request("UpdateAlertStatusList", req, cb);
|
|
1815
2043
|
}
|
|
2044
|
+
/**
|
|
2045
|
+
* 查询镜像组件列表
|
|
2046
|
+
*/
|
|
2047
|
+
async DescribeImageComponentList(req, cb) {
|
|
2048
|
+
return this.request("DescribeImageComponentList", req, cb);
|
|
2049
|
+
}
|
|
1816
2050
|
/**
|
|
1817
2051
|
* 查询云边界分析-暴露路径下主机节点的高危基线风险列表
|
|
1818
2052
|
*/
|
|
@@ -1837,6 +2071,12 @@ capi 层处理流程:
|
|
|
1837
2071
|
async DescribeKeySandboxCredentialList(req, cb) {
|
|
1838
2072
|
return this.request("DescribeKeySandboxCredentialList", req, cb);
|
|
1839
2073
|
}
|
|
2074
|
+
/**
|
|
2075
|
+
* 修改容器镜像敏感信息白名单
|
|
2076
|
+
*/
|
|
2077
|
+
async ModifyImageSensitiveWhitelist(req, cb) {
|
|
2078
|
+
return this.request("ModifyImageSensitiveWhitelist", req, cb);
|
|
2079
|
+
}
|
|
1840
2080
|
/**
|
|
1841
2081
|
* 编辑资产标签
|
|
1842
2082
|
*/
|
|
@@ -1903,6 +2143,12 @@ capi 层处理流程:
|
|
|
1903
2143
|
async DescribeClusterPodDetail(req, cb) {
|
|
1904
2144
|
return this.request("DescribeClusterPodDetail", req, cb);
|
|
1905
2145
|
}
|
|
2146
|
+
/**
|
|
2147
|
+
* 查询 Skill 安全检测告警详情,包含本地告警信息和引擎实时检测数据
|
|
2148
|
+
*/
|
|
2149
|
+
async DescribeSkillScanAlertDetail(req, cb) {
|
|
2150
|
+
return this.request("DescribeSkillScanAlertDetail", req, cb);
|
|
2151
|
+
}
|
|
1906
2152
|
/**
|
|
1907
2153
|
* 删除dspm数据识别分级组
|
|
1908
2154
|
*/
|
|
@@ -1921,6 +2167,12 @@ capi 层处理流程:
|
|
|
1921
2167
|
async DescribeLoginTypeHost(req, cb) {
|
|
1922
2168
|
return this.request("DescribeLoginTypeHost", req, cb);
|
|
1923
2169
|
}
|
|
2170
|
+
/**
|
|
2171
|
+
* 修改客户端日志采集配置(CSIP专属),支持设置日志采集类型和生效资产范围
|
|
2172
|
+
*/
|
|
2173
|
+
async ModifyAgentConfigSetting(req, cb) {
|
|
2174
|
+
return this.request("ModifyAgentConfigSetting", req, cb);
|
|
2175
|
+
}
|
|
1924
2176
|
/**
|
|
1925
2177
|
* 全部资产
|
|
1926
2178
|
*/
|
|
@@ -1969,6 +2221,12 @@ capi 层处理流程:
|
|
|
1969
2221
|
async DescribeVpcAssets(req, cb) {
|
|
1970
2222
|
return this.request("DescribeVpcAssets", req, cb);
|
|
1971
2223
|
}
|
|
2224
|
+
/**
|
|
2225
|
+
* 查询镜像关联容器资产
|
|
2226
|
+
*/
|
|
2227
|
+
async DescribeImageAssociatedContainerList(req, cb) {
|
|
2228
|
+
return this.request("DescribeImageAssociatedContainerList", req, cb);
|
|
2229
|
+
}
|
|
1972
2230
|
/**
|
|
1973
2231
|
* 查询扫描任务详情。Filter.Filters支持Name:Status(资产扫描状态,OperatorType=7 IN匹配,取值WAIT/SCANNING/FINISHED/FAILED)。
|
|
1974
2232
|
*/
|
|
@@ -1993,6 +2251,12 @@ capi 层处理流程:
|
|
|
1993
2251
|
async CreateIaCAccessToken(req, cb) {
|
|
1994
2252
|
return this.request("CreateIaCAccessToken", req, cb);
|
|
1995
2253
|
}
|
|
2254
|
+
/**
|
|
2255
|
+
* 查询资产中组件列表
|
|
2256
|
+
*/
|
|
2257
|
+
async DescribeAssetComponentList(req, cb) {
|
|
2258
|
+
return this.request("DescribeAssetComponentList", req, cb);
|
|
2259
|
+
}
|
|
1996
2260
|
/**
|
|
1997
2261
|
* 查询Dspm风险策略
|
|
1998
2262
|
*/
|
|
@@ -2065,6 +2329,12 @@ capi 层处理流程:
|
|
|
2065
2329
|
async DescribeExposeRiskStatistics(req, cb) {
|
|
2066
2330
|
return this.request("DescribeExposeRiskStatistics", req, cb);
|
|
2067
2331
|
}
|
|
2332
|
+
/**
|
|
2333
|
+
* 查询镜像关联主机资产列表
|
|
2334
|
+
*/
|
|
2335
|
+
async DescribeImageAssociatedHostList(req, cb) {
|
|
2336
|
+
return this.request("DescribeImageAssociatedHostList", req, cb);
|
|
2337
|
+
}
|
|
2068
2338
|
/**
|
|
2069
2339
|
* 查看告警列表
|
|
2070
2340
|
*/
|
|
@@ -2211,12 +2481,24 @@ capi 层处理流程:
|
|
|
2211
2481
|
async DescribeCWPExposures(req, cb) {
|
|
2212
2482
|
return this.request("DescribeCWPExposures", req, cb);
|
|
2213
2483
|
}
|
|
2484
|
+
/**
|
|
2485
|
+
* 修改镜像仓库信息
|
|
2486
|
+
*/
|
|
2487
|
+
async ModifyImageRegistry(req, cb) {
|
|
2488
|
+
return this.request("ModifyImageRegistry", req, cb);
|
|
2489
|
+
}
|
|
2214
2490
|
/**
|
|
2215
2491
|
* 创建资产视角下风险列表导出任务示例
|
|
2216
2492
|
*/
|
|
2217
2493
|
async CreateCheckViewRisksExportJob(req, cb) {
|
|
2218
2494
|
return this.request("CreateCheckViewRisksExportJob", req, cb);
|
|
2219
2495
|
}
|
|
2496
|
+
/**
|
|
2497
|
+
* 创建镜像关联主机资产列表导出任务
|
|
2498
|
+
*/
|
|
2499
|
+
async CreateImageAssociatedHostListExportJob(req, cb) {
|
|
2500
|
+
return this.request("CreateImageAssociatedHostListExportJob", req, cb);
|
|
2501
|
+
}
|
|
2220
2502
|
/**
|
|
2221
2503
|
* 创建漏洞重新扫描
|
|
2222
2504
|
*/
|
|
@@ -2283,6 +2565,24 @@ capi 层处理流程:
|
|
|
2283
2565
|
async DescribeVulComponentRelateHost(req, cb) {
|
|
2284
2566
|
return this.request("DescribeVulComponentRelateHost", req, cb);
|
|
2285
2567
|
}
|
|
2568
|
+
/**
|
|
2569
|
+
* 查询 Skill 安全检测告警列表,支持分页、过滤和排序
|
|
2570
|
+
*/
|
|
2571
|
+
async DescribeSkillScanAlertList(req, cb) {
|
|
2572
|
+
return this.request("DescribeSkillScanAlertList", req, cb);
|
|
2573
|
+
}
|
|
2574
|
+
/**
|
|
2575
|
+
* 修改dspm数据识别模板数据项关联级别信息
|
|
2576
|
+
*/
|
|
2577
|
+
async ModifyDspmIdentifyComplianceRuleLevelInfo(req, cb) {
|
|
2578
|
+
return this.request("ModifyDspmIdentifyComplianceRuleLevelInfo", req, cb);
|
|
2579
|
+
}
|
|
2580
|
+
/**
|
|
2581
|
+
* 查询当前租户的 ACL 用户访问控制规则列表。传入 Filter.Name=RuleID 可精确查询单条规则(用于详情页面场景)
|
|
2582
|
+
*/
|
|
2583
|
+
async DescribeSandboxACLRuleList(req, cb) {
|
|
2584
|
+
return this.request("DescribeSandboxACLRuleList", req, cb);
|
|
2585
|
+
}
|
|
2286
2586
|
/**
|
|
2287
2587
|
* 访问密钥风险记录列表
|
|
2288
2588
|
*/
|
|
@@ -2319,6 +2619,12 @@ capi 层处理流程:
|
|
|
2319
2619
|
async DescribeCVMAssetInfo(req, cb) {
|
|
2320
2620
|
return this.request("DescribeCVMAssetInfo", req, cb);
|
|
2321
2621
|
}
|
|
2622
|
+
/**
|
|
2623
|
+
* 查询镜像资产列表
|
|
2624
|
+
*/
|
|
2625
|
+
async DescribeImageAssetList(req, cb) {
|
|
2626
|
+
return this.request("DescribeImageAssetList", req, cb);
|
|
2627
|
+
}
|
|
2322
2628
|
/**
|
|
2323
2629
|
* 修改dspm数据识别数据项状态
|
|
2324
2630
|
*/
|
|
@@ -2343,6 +2649,12 @@ capi 层处理流程:
|
|
|
2343
2649
|
async DescribeCFGRiskStatistics(req, cb) {
|
|
2344
2650
|
return this.request("DescribeCFGRiskStatistics", req, cb);
|
|
2345
2651
|
}
|
|
2652
|
+
/**
|
|
2653
|
+
* 创建镜像木马病毒列表导出任务
|
|
2654
|
+
*/
|
|
2655
|
+
async CreateImageVirusListExportJob(req, cb) {
|
|
2656
|
+
return this.request("CreateImageVirusListExportJob", req, cb);
|
|
2657
|
+
}
|
|
2346
2658
|
/**
|
|
2347
2659
|
* 查询扫描任务列表。Filter.Filters支持Name:Keyword(模糊OperatorType=9)、ScanType(MANUAL/CYCLE)、TaskType(HOST/CONTAINER)、Status(WAIT/SCANNING/FINISHED/FAILED/CANCELED)、AppId(账号)。
|
|
2348
2660
|
*/
|
|
@@ -2451,6 +2763,12 @@ capi 层处理流程:
|
|
|
2451
2763
|
async DescribeGatewayAssets(req, cb) {
|
|
2452
2764
|
return this.request("DescribeGatewayAssets", req, cb);
|
|
2453
2765
|
}
|
|
2766
|
+
/**
|
|
2767
|
+
* 创建镜像关联容器资产导出任务
|
|
2768
|
+
*/
|
|
2769
|
+
async CreateImageAssociatedContainerListExportJob(req, cb) {
|
|
2770
|
+
return this.request("CreateImageAssociatedContainerListExportJob", req, cb);
|
|
2771
|
+
}
|
|
2454
2772
|
/**
|
|
2455
2773
|
* 创建日志导出任务
|
|
2456
2774
|
*/
|
|
@@ -2495,12 +2813,24 @@ capi 层处理流程:
|
|
|
2495
2813
|
async DescribeClusterListV2(req, cb) {
|
|
2496
2814
|
return this.request("DescribeClusterListV2", req, cb);
|
|
2497
2815
|
}
|
|
2816
|
+
/**
|
|
2817
|
+
* 查询镜像资产详情
|
|
2818
|
+
*/
|
|
2819
|
+
async DescribeImageAssetDetail(req, cb) {
|
|
2820
|
+
return this.request("DescribeImageAssetDetail", req, cb);
|
|
2821
|
+
}
|
|
2498
2822
|
/**
|
|
2499
2823
|
* 用户CSPM配额信息
|
|
2500
2824
|
*/
|
|
2501
2825
|
async DescribeUserInfo(req, cb) {
|
|
2502
2826
|
return this.request("DescribeUserInfo", req, cb);
|
|
2503
2827
|
}
|
|
2828
|
+
/**
|
|
2829
|
+
* 查询镜像关联资产数
|
|
2830
|
+
*/
|
|
2831
|
+
async DescribeImageAssociatedAssetCount(req, cb) {
|
|
2832
|
+
return this.request("DescribeImageAssociatedAssetCount", req, cb);
|
|
2833
|
+
}
|
|
2504
2834
|
/**
|
|
2505
2835
|
* ip公网列表
|
|
2506
2836
|
*/
|
|
@@ -2558,10 +2888,10 @@ capi 层处理流程:
|
|
|
2558
2888
|
return this.request("DeleteEDRScanTask", req, cb);
|
|
2559
2889
|
}
|
|
2560
2890
|
/**
|
|
2561
|
-
*
|
|
2891
|
+
* 创建资产视角下风险列表导出任务示例
|
|
2562
2892
|
*/
|
|
2563
|
-
async
|
|
2564
|
-
return this.request("
|
|
2893
|
+
async CreateCFGRisksExportJob(req, cb) {
|
|
2894
|
+
return this.request("CreateCFGRisksExportJob", req, cb);
|
|
2565
2895
|
}
|
|
2566
2896
|
/**
|
|
2567
2897
|
* 修改对象存储识别开关
|
|
@@ -2575,6 +2905,12 @@ capi 层处理流程:
|
|
|
2575
2905
|
async DescribeTopAttackInfo(req, cb) {
|
|
2576
2906
|
return this.request("DescribeTopAttackInfo", req, cb);
|
|
2577
2907
|
}
|
|
2908
|
+
/**
|
|
2909
|
+
* 创建镜像仓库镜像扫描任务配置
|
|
2910
|
+
*/
|
|
2911
|
+
async CreateImageRegistryTimedScanTaskConfig(req, cb) {
|
|
2912
|
+
return this.request("CreateImageRegistryTimedScanTaskConfig", req, cb);
|
|
2913
|
+
}
|
|
2578
2914
|
/**
|
|
2579
2915
|
* 操作资产编辑标签
|
|
2580
2916
|
*/
|
|
@@ -2599,6 +2935,12 @@ capi 层处理流程:
|
|
|
2599
2935
|
async ModifyCosAuditMonitorAccount(req, cb) {
|
|
2600
2936
|
return this.request("ModifyCosAuditMonitorAccount", req, cb);
|
|
2601
2937
|
}
|
|
2938
|
+
/**
|
|
2939
|
+
* 查询镜像仓库地域列表
|
|
2940
|
+
*/
|
|
2941
|
+
async DescribeRegistryRegionList(req, cb) {
|
|
2942
|
+
return this.request("DescribeRegistryRegionList", req, cb);
|
|
2943
|
+
}
|
|
2602
2944
|
/**
|
|
2603
2945
|
* 修改Dspm个人身份id
|
|
2604
2946
|
*/
|
|
@@ -2618,10 +2960,16 @@ capi 层处理流程:
|
|
|
2618
2960
|
return this.request("DescribeNatRules", req, cb);
|
|
2619
2961
|
}
|
|
2620
2962
|
/**
|
|
2621
|
-
*
|
|
2963
|
+
* 创建镜像组件列表导出任务
|
|
2622
2964
|
*/
|
|
2623
|
-
async
|
|
2624
|
-
return this.request("
|
|
2965
|
+
async CreateImageComponentListExportJob(req, cb) {
|
|
2966
|
+
return this.request("CreateImageComponentListExportJob", req, cb);
|
|
2967
|
+
}
|
|
2968
|
+
/**
|
|
2969
|
+
* 下载导出日志
|
|
2970
|
+
*/
|
|
2971
|
+
async DownloadDspmExportLog(req, cb) {
|
|
2972
|
+
return this.request("DownloadDspmExportLog", req, cb);
|
|
2625
2973
|
}
|
|
2626
2974
|
/**
|
|
2627
2975
|
* 修改自动扩容配置(多模块可扩展,本期仅主机安全模块)。
|
|
@@ -2656,6 +3004,12 @@ capi 层处理流程:
|
|
|
2656
3004
|
async DescribeDspmStatistics(req, cb) {
|
|
2657
3005
|
return this.request("DescribeDspmStatistics", req, cb);
|
|
2658
3006
|
}
|
|
3007
|
+
/**
|
|
3008
|
+
* 创建容器镜像漏洞白名单
|
|
3009
|
+
*/
|
|
3010
|
+
async CreateImageVulWhitelist(req, cb) {
|
|
3011
|
+
return this.request("CreateImageVulWhitelist", req, cb);
|
|
3012
|
+
}
|
|
2659
3013
|
/**
|
|
2660
3014
|
* 导出任务结果下载URL
|
|
2661
3015
|
*/
|
|
@@ -2663,10 +3017,10 @@ capi 层处理流程:
|
|
|
2663
3017
|
return this.request("DescribeExportJobDownloadURL", req, cb);
|
|
2664
3018
|
}
|
|
2665
3019
|
/**
|
|
2666
|
-
*
|
|
3020
|
+
* 访问密钥告警记录AI分析结果详情
|
|
2667
3021
|
*/
|
|
2668
|
-
async
|
|
2669
|
-
return this.request("
|
|
3022
|
+
async DescribeAKAnalysisDetail(req, cb) {
|
|
3023
|
+
return this.request("DescribeAKAnalysisDetail", req, cb);
|
|
2670
3024
|
}
|
|
2671
3025
|
/**
|
|
2672
3026
|
* 删除风险中心扫描任务
|
|
@@ -2710,6 +3064,12 @@ capi 层处理流程:
|
|
|
2710
3064
|
async CreateDspmAssetAccessTopologyExportJob(req, cb) {
|
|
2711
3065
|
return this.request("CreateDspmAssetAccessTopologyExportJob", req, cb);
|
|
2712
3066
|
}
|
|
3067
|
+
/**
|
|
3068
|
+
* 查询容器镜像敏感信息白名单
|
|
3069
|
+
*/
|
|
3070
|
+
async DescribeImageSensitiveWhitelist(req, cb) {
|
|
3071
|
+
return this.request("DescribeImageSensitiveWhitelist", req, cb);
|
|
3072
|
+
}
|
|
2713
3073
|
/**
|
|
2714
3074
|
* 获取IaC检测文件列表
|
|
2715
3075
|
*/
|
|
@@ -2770,6 +3130,12 @@ capi 层处理流程:
|
|
|
2770
3130
|
async DescribeTaskLogList(req, cb) {
|
|
2771
3131
|
return this.request("DescribeTaskLogList", req, cb);
|
|
2772
3132
|
}
|
|
3133
|
+
/**
|
|
3134
|
+
* 查询镜像仓库镜像扫描任务列表
|
|
3135
|
+
*/
|
|
3136
|
+
async DescribeImageRegistryScanTaskList(req, cb) {
|
|
3137
|
+
return this.request("DescribeImageRegistryScanTaskList", req, cb);
|
|
3138
|
+
}
|
|
2773
3139
|
/**
|
|
2774
3140
|
* 创建漏洞扫描(一键扫描)
|
|
2775
3141
|
*/
|
|
@@ -2812,6 +3178,12 @@ capi 层处理流程:
|
|
|
2812
3178
|
async CreateIaCFileExportJob(req, cb) {
|
|
2813
3179
|
return this.request("CreateIaCFileExportJob", req, cb);
|
|
2814
3180
|
}
|
|
3181
|
+
/**
|
|
3182
|
+
* 获取命令沙箱文件规则列表
|
|
3183
|
+
*/
|
|
3184
|
+
async DescribeSandboxFileRuleList(req, cb) {
|
|
3185
|
+
return this.request("DescribeSandboxFileRuleList", req, cb);
|
|
3186
|
+
}
|
|
2815
3187
|
/**
|
|
2816
3188
|
* 获取主机漏洞风险列表
|
|
2817
3189
|
*/
|
|
@@ -2819,10 +3191,16 @@ capi 层处理流程:
|
|
|
2819
3191
|
return this.request("DescribeHostVulRiskList", req, cb);
|
|
2820
3192
|
}
|
|
2821
3193
|
/**
|
|
2822
|
-
*
|
|
3194
|
+
* 获取防卸载全局配置
|
|
2823
3195
|
*/
|
|
2824
|
-
async
|
|
2825
|
-
return this.request("
|
|
3196
|
+
async DescribePreventUninstallGlobalConf(req, cb) {
|
|
3197
|
+
return this.request("DescribePreventUninstallGlobalConf", req, cb);
|
|
3198
|
+
}
|
|
3199
|
+
/**
|
|
3200
|
+
* 分页查询 ACL 访问控制告警日志列表。支持按 Filter.Name=ID 精确过滤单条告警用于详情页场景
|
|
3201
|
+
*/
|
|
3202
|
+
async DescribeSandboxACLAlertList(req, cb) {
|
|
3203
|
+
return this.request("DescribeSandboxACLAlertList", req, cb);
|
|
2826
3204
|
}
|
|
2827
3205
|
/**
|
|
2828
3206
|
* 修改文件查杀定时扫描配置,包含扫描周期、检测模式、资产范围、引擎选择、隔离配置等
|
|
@@ -2914,6 +3292,12 @@ capi 层处理流程:
|
|
|
2914
3292
|
async DeleteCSIPMalwareScanTask(req, cb) {
|
|
2915
3293
|
return this.request("DeleteCSIPMalwareScanTask", req, cb);
|
|
2916
3294
|
}
|
|
3295
|
+
/**
|
|
3296
|
+
* 批量切换 LLM 审计用户规则的启禁用状态。任一规则不存在、属于其他租户或已删除时整体返回错误
|
|
3297
|
+
*/
|
|
3298
|
+
async ModifySandboxLLMAuditRuleStatus(req, cb) {
|
|
3299
|
+
return this.request("ModifySandboxLLMAuditRuleStatus", req, cb);
|
|
3300
|
+
}
|
|
2917
3301
|
/**
|
|
2918
3302
|
* 新增或修改一个接收机器人。ID > 0 表示修改已有记录;ID = 0 或不传表示新增。机器人类型由 Type 字段决定,Type=WEBHOOK 时 WebhookAddr 必填,Type=SCF 时 SCFRegion/Namespace/FunctionName/FunctionVersion/Alias/MaxWaitSeconds 全部必填。修改时不允许变更 Type
|
|
2919
3303
|
*/
|
|
@@ -2938,6 +3322,12 @@ capi 层处理流程:
|
|
|
2938
3322
|
async DescribeExportJobManageList(req, cb) {
|
|
2939
3323
|
return this.request("DescribeExportJobManageList", req, cb);
|
|
2940
3324
|
}
|
|
3325
|
+
/**
|
|
3326
|
+
* 查询cos审计字典信息列表
|
|
3327
|
+
*/
|
|
3328
|
+
async DescribeCosAuditDictionaryList(req, cb) {
|
|
3329
|
+
return this.request("DescribeCosAuditDictionaryList", req, cb);
|
|
3330
|
+
}
|
|
2941
3331
|
/**
|
|
2942
3332
|
* 查看风险关联的存储桶信息
|
|
2943
3333
|
*/
|
|
@@ -2962,6 +3352,12 @@ capi 层处理流程:
|
|
|
2962
3352
|
async DescribeClusterNamespaceList(req, cb) {
|
|
2963
3353
|
return this.request("DescribeClusterNamespaceList", req, cb);
|
|
2964
3354
|
}
|
|
3355
|
+
/**
|
|
3356
|
+
* 创建镜像敏感信息列表导出任务
|
|
3357
|
+
*/
|
|
3358
|
+
async CreateImageSensitiveInfoListExportJob(req, cb) {
|
|
3359
|
+
return this.request("CreateImageSensitiveInfoListExportJob", req, cb);
|
|
3360
|
+
}
|
|
2965
3361
|
/**
|
|
2966
3362
|
* 停止扫风险中心扫描任务
|
|
2967
3363
|
*/
|
|
@@ -2992,6 +3388,12 @@ capi 层处理流程:
|
|
|
2992
3388
|
async ModifyDspmApplyingIdentifyComplianceGroup(req, cb) {
|
|
2993
3389
|
return this.request("ModifyDspmApplyingIdentifyComplianceGroup", req, cb);
|
|
2994
3390
|
}
|
|
3391
|
+
/**
|
|
3392
|
+
* 创建镜像木马白名单
|
|
3393
|
+
*/
|
|
3394
|
+
async CreateImageVirusWhitelist(req, cb) {
|
|
3395
|
+
return this.request("CreateImageVirusWhitelist", req, cb);
|
|
3396
|
+
}
|
|
2995
3397
|
/**
|
|
2996
3398
|
* CSIP 手动扫描停止接口
|
|
2997
3399
|
*/
|
|
@@ -3022,6 +3424,12 @@ capi 层处理流程:
|
|
|
3022
3424
|
async DescribeScanReportList(req, cb) {
|
|
3023
3425
|
return this.request("DescribeScanReportList", req, cb);
|
|
3024
3426
|
}
|
|
3427
|
+
/**
|
|
3428
|
+
* 修改通知成员账号
|
|
3429
|
+
*/
|
|
3430
|
+
async ModifyNotifyMember(req, cb) {
|
|
3431
|
+
return this.request("ModifyNotifyMember", req, cb);
|
|
3432
|
+
}
|
|
3025
3433
|
/**
|
|
3026
3434
|
* 更新自定义策略的开关
|
|
3027
3435
|
*/
|
|
@@ -3035,10 +3443,16 @@ capi 层处理流程:
|
|
|
3035
3443
|
return this.request("DescribeDspmIdentifyRuleDetail", req, cb);
|
|
3036
3444
|
}
|
|
3037
3445
|
/**
|
|
3038
|
-
*
|
|
3446
|
+
* 创建镜像仓库联通性检查任务
|
|
3039
3447
|
*/
|
|
3040
|
-
async
|
|
3041
|
-
return this.request("
|
|
3448
|
+
async CreateImageRegistryConnectivityTask(req, cb) {
|
|
3449
|
+
return this.request("CreateImageRegistryConnectivityTask", req, cb);
|
|
3450
|
+
}
|
|
3451
|
+
/**
|
|
3452
|
+
* 删除镜像仓库信息
|
|
3453
|
+
*/
|
|
3454
|
+
async DeleteImageRegistry(req, cb) {
|
|
3455
|
+
return this.request("DeleteImageRegistry", req, cb);
|
|
3042
3456
|
}
|
|
3043
3457
|
/**
|
|
3044
3458
|
* 查询Dspm申请单列表
|
|
@@ -3064,6 +3478,12 @@ capi 层处理流程:
|
|
|
3064
3478
|
async DescribeScfCustomDomainEndpoints(req, cb) {
|
|
3065
3479
|
return this.request("DescribeScfCustomDomainEndpoints", req, cb);
|
|
3066
3480
|
}
|
|
3481
|
+
/**
|
|
3482
|
+
* 创建镜像扫描任务
|
|
3483
|
+
*/
|
|
3484
|
+
async CreateImageRegistryScanTask(req, cb) {
|
|
3485
|
+
return this.request("CreateImageRegistryScanTask", req, cb);
|
|
3486
|
+
}
|
|
3067
3487
|
/**
|
|
3068
3488
|
* cos概览信息
|
|
3069
3489
|
*/
|
|
@@ -3108,6 +3528,12 @@ capi 层处理流程:
|
|
|
3108
3528
|
async DescribeCosAkInvokeIpList(req, cb) {
|
|
3109
3529
|
return this.request("DescribeCosAkInvokeIpList", req, cb);
|
|
3110
3530
|
}
|
|
3531
|
+
/**
|
|
3532
|
+
* 查询后台扫描引擎地域列表
|
|
3533
|
+
*/
|
|
3534
|
+
async DescribeBackendScanEngineRegionList(req, cb) {
|
|
3535
|
+
return this.request("DescribeBackendScanEngineRegionList", req, cb);
|
|
3536
|
+
}
|
|
3111
3537
|
/**
|
|
3112
3538
|
* 查询日志列表信息
|
|
3113
3539
|
*/
|
|
@@ -3132,6 +3558,12 @@ capi 层处理流程:
|
|
|
3132
3558
|
async SyncDspmUsers(req, cb) {
|
|
3133
3559
|
return this.request("SyncDspmUsers", req, cb);
|
|
3134
3560
|
}
|
|
3561
|
+
/**
|
|
3562
|
+
* 查询镜像木马病毒列表
|
|
3563
|
+
*/
|
|
3564
|
+
async DescribeImageVirusList(req, cb) {
|
|
3565
|
+
return this.request("DescribeImageVirusList", req, cb);
|
|
3566
|
+
}
|
|
3135
3567
|
/**
|
|
3136
3568
|
* 重保防护授权包绑定
|
|
3137
3569
|
*/
|
|
@@ -3156,6 +3588,12 @@ capi 层处理流程:
|
|
|
3156
3588
|
async DescribeDspmDictionaryList(req, cb) {
|
|
3157
3589
|
return this.request("DescribeDspmDictionaryList", req, cb);
|
|
3158
3590
|
}
|
|
3591
|
+
/**
|
|
3592
|
+
* 创建镜像资产中组件列表导出任务
|
|
3593
|
+
*/
|
|
3594
|
+
async CreateAssetComponentListExportJob(req, cb) {
|
|
3595
|
+
return this.request("CreateAssetComponentListExportJob", req, cb);
|
|
3596
|
+
}
|
|
3159
3597
|
/**
|
|
3160
3598
|
* 获取cvm列表
|
|
3161
3599
|
*/
|
|
@@ -3187,10 +3625,10 @@ capi 层处理流程:
|
|
|
3187
3625
|
return this.request("DescribeBucketInvokeIpList", req, cb);
|
|
3188
3626
|
}
|
|
3189
3627
|
/**
|
|
3190
|
-
* 查询Dspm
|
|
3628
|
+
* 查询Dspm身份id列表
|
|
3191
3629
|
*/
|
|
3192
|
-
async
|
|
3193
|
-
return this.request("
|
|
3630
|
+
async DescribeDspmIdentifyIdList(req, cb) {
|
|
3631
|
+
return this.request("DescribeDspmIdentifyIdList", req, cb);
|
|
3194
3632
|
}
|
|
3195
3633
|
/**
|
|
3196
3634
|
* 修改日志备份设置
|
|
@@ -3276,6 +3714,12 @@ capi 层处理流程:
|
|
|
3276
3714
|
async DescribeBaselineMainTaskList(req, cb) {
|
|
3277
3715
|
return this.request("DescribeBaselineMainTaskList", req, cb);
|
|
3278
3716
|
}
|
|
3717
|
+
/**
|
|
3718
|
+
* 获取通知设置(云API风险治理)
|
|
3719
|
+
*/
|
|
3720
|
+
async DescribeNotifySettingAk(req, cb) {
|
|
3721
|
+
return this.request("DescribeNotifySettingAk", req, cb);
|
|
3722
|
+
}
|
|
3279
3723
|
/**
|
|
3280
3724
|
* 获取扫描预消耗配额
|
|
3281
3725
|
*/
|
|
@@ -3300,6 +3744,12 @@ capi 层处理流程:
|
|
|
3300
3744
|
async DescribeLicenseStatus(req, cb) {
|
|
3301
3745
|
return this.request("DescribeLicenseStatus", req, cb);
|
|
3302
3746
|
}
|
|
3747
|
+
/**
|
|
3748
|
+
* 查询镜像仓库组件关联的镜像列表
|
|
3749
|
+
*/
|
|
3750
|
+
async DescribeAssetComponentRelatedImageList(req, cb) {
|
|
3751
|
+
return this.request("DescribeAssetComponentRelatedImageList", req, cb);
|
|
3752
|
+
}
|
|
3303
3753
|
/**
|
|
3304
3754
|
* 批量删除自定义基线策略。仅支持删除 PolicyType=SELF 的策略;删除后历史风险记录保留,但不再产生新结果。
|
|
3305
3755
|
*/
|
|
@@ -3313,10 +3763,10 @@ capi 层处理流程:
|
|
|
3313
3763
|
return this.request("DescribeVulFixedList", req, cb);
|
|
3314
3764
|
}
|
|
3315
3765
|
/**
|
|
3316
|
-
*
|
|
3766
|
+
* 创建容器镜像敏感信息白名单
|
|
3317
3767
|
*/
|
|
3318
|
-
async
|
|
3319
|
-
return this.request("
|
|
3768
|
+
async CreateImageSensitiveWhitelist(req, cb) {
|
|
3769
|
+
return this.request("CreateImageSensitiveWhitelist", req, cb);
|
|
3320
3770
|
}
|
|
3321
3771
|
/**
|
|
3322
3772
|
* 获取资产标签属性
|
|
@@ -3342,6 +3792,18 @@ capi 层处理流程:
|
|
|
3342
3792
|
async DescribeBaselineSyncConf(req, cb) {
|
|
3343
3793
|
return this.request("DescribeBaselineSyncConf", req, cb);
|
|
3344
3794
|
}
|
|
3795
|
+
/**
|
|
3796
|
+
* 绑定主机授权或RASP授权到指定订单。异步执行,返回TaskId供查询进度。通过LicenseType指定授权版本(旗舰版/专业版/RASP)。
|
|
3797
|
+
*/
|
|
3798
|
+
async ModifyCSIPLicenseBinds(req, cb) {
|
|
3799
|
+
return this.request("ModifyCSIPLicenseBinds", req, cb);
|
|
3800
|
+
}
|
|
3801
|
+
/**
|
|
3802
|
+
* 查询集团账号详情
|
|
3803
|
+
*/
|
|
3804
|
+
async DescribeOrganizationInfo(req, cb) {
|
|
3805
|
+
return this.request("DescribeOrganizationInfo", req, cb);
|
|
3806
|
+
}
|
|
3345
3807
|
/**
|
|
3346
3808
|
* 对修复失败的漏洞修复任务进行重试,仅针对原任务中修复失败的主机重新下发修复指令。仅当任务状态为部分修复失败或全部修复失败时允许重试。
|
|
3347
3809
|
*/
|
|
@@ -3390,6 +3852,12 @@ capi 层处理流程:
|
|
|
3390
3852
|
async DeleteDspmRestoreLogList(req, cb) {
|
|
3391
3853
|
return this.request("DeleteDspmRestoreLogList", req, cb);
|
|
3392
3854
|
}
|
|
3855
|
+
/**
|
|
3856
|
+
* 查询Dspm风险记录
|
|
3857
|
+
*/
|
|
3858
|
+
async DescribeDspmRisk(req, cb) {
|
|
3859
|
+
return this.request("DescribeDspmRisk", req, cb);
|
|
3860
|
+
}
|
|
3393
3861
|
/**
|
|
3394
3862
|
* 云防资产中心统计数据
|
|
3395
3863
|
*/
|
|
@@ -3409,10 +3877,10 @@ capi 层处理流程:
|
|
|
3409
3877
|
return this.request("RevertDspmAssetAccount", req, cb);
|
|
3410
3878
|
}
|
|
3411
3879
|
/**
|
|
3412
|
-
*
|
|
3880
|
+
* 获取阻断按钮状态
|
|
3413
3881
|
*/
|
|
3414
|
-
async
|
|
3415
|
-
return this.request("
|
|
3882
|
+
async DescribeBanStatus(req, cb) {
|
|
3883
|
+
return this.request("DescribeBanStatus", req, cb);
|
|
3416
3884
|
}
|
|
3417
3885
|
/**
|
|
3418
3886
|
* 修改漏洞扫描(周期扫描)
|
|
@@ -3444,6 +3912,12 @@ capi 层处理流程:
|
|
|
3444
3912
|
async DescribeCWPOrderList(req, cb) {
|
|
3445
3913
|
return this.request("DescribeCWPOrderList", req, cb);
|
|
3446
3914
|
}
|
|
3915
|
+
/**
|
|
3916
|
+
* 创建镜像漏洞概览列表导出任务
|
|
3917
|
+
*/
|
|
3918
|
+
async CreateImageVulSummaryListExportJob(req, cb) {
|
|
3919
|
+
return this.request("CreateImageVulSummaryListExportJob", req, cb);
|
|
3920
|
+
}
|
|
3447
3921
|
/**
|
|
3448
3922
|
* 打标策略生效资产列表
|
|
3449
3923
|
*/
|
|
@@ -3518,6 +3992,18 @@ capi 层处理流程:
|
|
|
3518
3992
|
async DescribeDspmAccessRecord(req, cb) {
|
|
3519
3993
|
return this.request("DescribeDspmAccessRecord", req, cb);
|
|
3520
3994
|
}
|
|
3995
|
+
/**
|
|
3996
|
+
* 查询流量沙箱访问控制(ACL)系统规则列表,系统规则由 CSIP 平台内置,可被用户规则引用
|
|
3997
|
+
*/
|
|
3998
|
+
async DescribeSandboxACLSystemRuleList(req, cb) {
|
|
3999
|
+
return this.request("DescribeSandboxACLSystemRuleList", req, cb);
|
|
4000
|
+
}
|
|
4001
|
+
/**
|
|
4002
|
+
* 批量删除 LLM 审计用户规则。任一 ID 不存在或属于其他租户时整体返回错误
|
|
4003
|
+
*/
|
|
4004
|
+
async DeleteSandboxLLMAuditRule(req, cb) {
|
|
4005
|
+
return this.request("DeleteSandboxLLMAuditRule", req, cb);
|
|
4006
|
+
}
|
|
3521
4007
|
/**
|
|
3522
4008
|
* 获取漏洞扫描任务记录
|
|
3523
4009
|
*/
|
|
@@ -3567,10 +4053,10 @@ capi 层处理流程:
|
|
|
3567
4053
|
return this.request("DescribeDspmIdentifyInfo", req, cb);
|
|
3568
4054
|
}
|
|
3569
4055
|
/**
|
|
3570
|
-
*
|
|
4056
|
+
* 检查镜像仓库实例名是否重复
|
|
3571
4057
|
*/
|
|
3572
|
-
async
|
|
3573
|
-
return this.request("
|
|
4058
|
+
async CheckImageRegistryInstanceNameDuplicate(req, cb) {
|
|
4059
|
+
return this.request("CheckImageRegistryInstanceNameDuplicate", req, cb);
|
|
3574
4060
|
}
|
|
3575
4061
|
/**
|
|
3576
4062
|
* 查询指定 SCF 函数下的别名列表。
|
|
@@ -3590,6 +4076,12 @@ capi 层处理流程:
|
|
|
3590
4076
|
async DescribeDspmApproveOrderList(req, cb) {
|
|
3591
4077
|
return this.request("DescribeDspmApproveOrderList", req, cb);
|
|
3592
4078
|
}
|
|
4079
|
+
/**
|
|
4080
|
+
* 查询流量沙箱数据泄露防护(DLP)系统规则列表,系统规则由 CSIP 平台内置,可被用户规则引用
|
|
4081
|
+
*/
|
|
4082
|
+
async DescribeSandboxDLPSystemRuleList(req, cb) {
|
|
4083
|
+
return this.request("DescribeSandboxDLPSystemRuleList", req, cb);
|
|
4084
|
+
}
|
|
3593
4085
|
/**
|
|
3594
4086
|
* 获取资产视角的配置风险列表
|
|
3595
4087
|
*/
|
|
@@ -3597,10 +4089,16 @@ capi 层处理流程:
|
|
|
3597
4089
|
return this.request("DescribeRiskCenterAssetViewCFGRiskList", req, cb);
|
|
3598
4090
|
}
|
|
3599
4091
|
/**
|
|
3600
|
-
*
|
|
4092
|
+
* 删除镜像仓库扫描任务
|
|
3601
4093
|
*/
|
|
3602
|
-
async
|
|
3603
|
-
return this.request("
|
|
4094
|
+
async DeleteImageRegistryScanTask(req, cb) {
|
|
4095
|
+
return this.request("DeleteImageRegistryScanTask", req, cb);
|
|
4096
|
+
}
|
|
4097
|
+
/**
|
|
4098
|
+
* 验证Dspm资产登录验证码
|
|
4099
|
+
*/
|
|
4100
|
+
async VerifyDspmAssetLoginCode(req, cb) {
|
|
4101
|
+
return this.request("VerifyDspmAssetLoginCode", req, cb);
|
|
3604
4102
|
}
|
|
3605
4103
|
/**
|
|
3606
4104
|
* 操作资产编辑标签
|
|
@@ -3663,10 +4161,10 @@ capi 层处理流程:
|
|
|
3663
4161
|
return this.request("DescribeAssetInfo", req, cb);
|
|
3664
4162
|
}
|
|
3665
4163
|
/**
|
|
3666
|
-
*
|
|
4164
|
+
* 查询镜像漏洞概览列表
|
|
3667
4165
|
*/
|
|
3668
|
-
async
|
|
3669
|
-
return this.request("
|
|
4166
|
+
async DescribeImageVulSummaryList(req, cb) {
|
|
4167
|
+
return this.request("DescribeImageVulSummaryList", req, cb);
|
|
3670
4168
|
}
|
|
3671
4169
|
/**
|
|
3672
4170
|
* 修改Dspm身份信息
|
|
@@ -3680,6 +4178,12 @@ capi 层处理流程:
|
|
|
3680
4178
|
async DescribeDspmPersonalIdentifyList(req, cb) {
|
|
3681
4179
|
return this.request("DescribeDspmPersonalIdentifyList", req, cb);
|
|
3682
4180
|
}
|
|
4181
|
+
/**
|
|
4182
|
+
* 按凭据组行 ID 分页查询单个凭据的泄露位置列表。用于配合 DescribeAIAgentCredentialList 接口拆分后的展开场景,避免单接口在数据倾斜场景下一次拉取几十万行 location 导致性能问题。
|
|
4183
|
+
*/
|
|
4184
|
+
async DescribeAIAgentCredentialLocationList(req, cb) {
|
|
4185
|
+
return this.request("DescribeAIAgentCredentialLocationList", req, cb);
|
|
4186
|
+
}
|
|
3683
4187
|
/**
|
|
3684
4188
|
* 查询AI 定时任务执行详情。
|
|
3685
4189
|
|
|
@@ -3730,6 +4234,12 @@ capi 层处理流程:
|
|
|
3730
4234
|
async DescribeRiskCallRecord(req, cb) {
|
|
3731
4235
|
return this.request("DescribeRiskCallRecord", req, cb);
|
|
3732
4236
|
}
|
|
4237
|
+
/**
|
|
4238
|
+
* 批量修改镜像仓库定时扫描任务配置
|
|
4239
|
+
*/
|
|
4240
|
+
async BatchModifyImageRegistryTimedScanTaskConfig(req, cb) {
|
|
4241
|
+
return this.request("BatchModifyImageRegistryTimedScanTaskConfig", req, cb);
|
|
4242
|
+
}
|
|
3733
4243
|
/**
|
|
3734
4244
|
* 查询指定漏洞修复任务的详情信息,包含每台主机的修复状态、快照状态等明细数据,支持分页和筛选。
|
|
3735
4245
|
*/
|