-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathTcssClient.java
More file actions
3849 lines (3476 loc) · 174 KB
/
TcssClient.java
File metadata and controls
3849 lines (3476 loc) · 174 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2017-2025 Tencent. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.tcss.v20201101;
import java.lang.reflect.Type;
import com.google.gson.JsonSyntaxException;
import com.google.gson.reflect.TypeToken;
import com.tencentcloudapi.common.exception.TencentCloudSDKException;
import com.tencentcloudapi.common.AbstractClient;
import com.tencentcloudapi.common.profile.ClientProfile;
import com.tencentcloudapi.common.JsonResponseModel;
import com.tencentcloudapi.common.Credential;
import com.tencentcloudapi.tcss.v20201101.models.*;
public class TcssClient extends AbstractClient{
private static String endpoint = "tcss.tencentcloudapi.com";
private static String service = "tcss";
private static String version = "2020-11-01";
public TcssClient(Credential credential, String region) {
this(credential, region, new ClientProfile());
}
public TcssClient(Credential credential, String region, ClientProfile profile) {
super(TcssClient.endpoint, TcssClient.version, credential, region, profile);
}
/**
*功能已下线待三合一重构
容器网络创建网络策略添加并发布任务
* @param req AddAndPublishNetworkFirewallPolicyDetailRequest
* @return AddAndPublishNetworkFirewallPolicyDetailResponse
* @throws TencentCloudSDKException
*/
public AddAndPublishNetworkFirewallPolicyDetailResponse AddAndPublishNetworkFirewallPolicyDetail(AddAndPublishNetworkFirewallPolicyDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddAndPublishNetworkFirewallPolicyDetail", AddAndPublishNetworkFirewallPolicyDetailResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建Yaml网络策略并发布任务
* @param req AddAndPublishNetworkFirewallPolicyYamlDetailRequest
* @return AddAndPublishNetworkFirewallPolicyYamlDetailResponse
* @throws TencentCloudSDKException
*/
public AddAndPublishNetworkFirewallPolicyYamlDetailResponse AddAndPublishNetworkFirewallPolicyYamlDetail(AddAndPublishNetworkFirewallPolicyYamlDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddAndPublishNetworkFirewallPolicyYamlDetail", AddAndPublishNetworkFirewallPolicyYamlDetailResponse.class);
}
/**
*新增单个镜像仓库详细信息
* @param req AddAssetImageRegistryRegistryDetailRequest
* @return AddAssetImageRegistryRegistryDetailResponse
* @throws TencentCloudSDKException
*/
public AddAssetImageRegistryRegistryDetailResponse AddAssetImageRegistryRegistryDetail(AddAssetImageRegistryRegistryDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddAssetImageRegistryRegistryDetail", AddAssetImageRegistryRegistryDetailResponse.class);
}
/**
*新增安全合规忽略(资产+检测项列表)列表,不显示指定的检查项包含的资产内容
参考的AddCompliancePolicyItemToWhitelist,除输入字段外,其它应该是一致的,如果有不同可能是定义的不对
* @param req AddComplianceAssetPolicySetToWhitelistRequest
* @return AddComplianceAssetPolicySetToWhitelistResponse
* @throws TencentCloudSDKException
*/
public AddComplianceAssetPolicySetToWhitelistResponse AddComplianceAssetPolicySetToWhitelist(AddComplianceAssetPolicySetToWhitelistRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddComplianceAssetPolicySetToWhitelist", AddComplianceAssetPolicySetToWhitelistResponse.class);
}
/**
*新增安全合规忽略(检测项+资产)列表,不显示指定的检查项包含的资产内容
参考的AddCompliancePolicyItemToWhitelist,除输入字段外,其它应该是一致的,如果有不同可能是定义的不对
* @param req AddCompliancePolicyAssetSetToWhitelistRequest
* @return AddCompliancePolicyAssetSetToWhitelistResponse
* @throws TencentCloudSDKException
*/
public AddCompliancePolicyAssetSetToWhitelistResponse AddCompliancePolicyAssetSetToWhitelist(AddCompliancePolicyAssetSetToWhitelistRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddCompliancePolicyAssetSetToWhitelist", AddCompliancePolicyAssetSetToWhitelistResponse.class);
}
/**
*将指定的检测项添加到白名单中,不显示未通过结果。
* @param req AddCompliancePolicyItemToWhitelistRequest
* @return AddCompliancePolicyItemToWhitelistResponse
* @throws TencentCloudSDKException
*/
public AddCompliancePolicyItemToWhitelistResponse AddCompliancePolicyItemToWhitelist(AddCompliancePolicyItemToWhitelistRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddCompliancePolicyItemToWhitelist", AddCompliancePolicyItemToWhitelistResponse.class);
}
/**
*添加编辑运行时异常进程策略
* @param req AddEditAbnormalProcessRuleRequest
* @return AddEditAbnormalProcessRuleResponse
* @throws TencentCloudSDKException
*/
public AddEditAbnormalProcessRuleResponse AddEditAbnormalProcessRule(AddEditAbnormalProcessRuleRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEditAbnormalProcessRule", AddEditAbnormalProcessRuleResponse.class);
}
/**
*添加编辑运行时访问控制策略
* @param req AddEditAccessControlRuleRequest
* @return AddEditAccessControlRuleResponse
* @throws TencentCloudSDKException
*/
public AddEditAccessControlRuleResponse AddEditAccessControlRule(AddEditAccessControlRuleRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEditAccessControlRule", AddEditAccessControlRuleResponse.class);
}
/**
*新增或编辑本地镜像自动授权规则
* @param req AddEditImageAutoAuthorizedRuleRequest
* @return AddEditImageAutoAuthorizedRuleResponse
* @throws TencentCloudSDKException
*/
public AddEditImageAutoAuthorizedRuleResponse AddEditImageAutoAuthorizedRule(AddEditImageAutoAuthorizedRuleRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEditImageAutoAuthorizedRule", AddEditImageAutoAuthorizedRuleResponse.class);
}
/**
*添加编辑运行时反弹shell白名单
* @param req AddEditReverseShellWhiteListRequest
* @return AddEditReverseShellWhiteListResponse
* @throws TencentCloudSDKException
*/
public AddEditReverseShellWhiteListResponse AddEditReverseShellWhiteList(AddEditReverseShellWhiteListRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEditReverseShellWhiteList", AddEditReverseShellWhiteListResponse.class);
}
/**
*添加编辑运行时高危系统调用白名单
* @param req AddEditRiskSyscallWhiteListRequest
* @return AddEditRiskSyscallWhiteListResponse
* @throws TencentCloudSDKException
*/
public AddEditRiskSyscallWhiteListResponse AddEditRiskSyscallWhiteList(AddEditRiskSyscallWhiteListRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEditRiskSyscallWhiteList", AddEditRiskSyscallWhiteListResponse.class);
}
/**
*添加编辑告警策略
* @param req AddEditWarningRulesRequest
* @return AddEditWarningRulesResponse
* @throws TencentCloudSDKException
*/
public AddEditWarningRulesResponse AddEditWarningRules(AddEditWarningRulesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEditWarningRules", AddEditWarningRulesResponse.class);
}
/**
*新增逃逸白名单
* @param req AddEscapeWhiteListRequest
* @return AddEscapeWhiteListResponse
* @throws TencentCloudSDKException
*/
public AddEscapeWhiteListResponse AddEscapeWhiteList(AddEscapeWhiteListRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddEscapeWhiteList", AddEscapeWhiteListResponse.class);
}
/**
*新增漏洞扫描忽略漏洞
* @param req AddIgnoreVulRequest
* @return AddIgnoreVulResponse
* @throws TencentCloudSDKException
*/
public AddIgnoreVulResponse AddIgnoreVul(AddIgnoreVulRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddIgnoreVul", AddIgnoreVulResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建网络策略添加任务
* @param req AddNetworkFirewallPolicyDetailRequest
* @return AddNetworkFirewallPolicyDetailResponse
* @throws TencentCloudSDKException
*/
public AddNetworkFirewallPolicyDetailResponse AddNetworkFirewallPolicyDetail(AddNetworkFirewallPolicyDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddNetworkFirewallPolicyDetail", AddNetworkFirewallPolicyDetailResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建Yaml网络策略添加任务
* @param req AddNetworkFirewallPolicyYamlDetailRequest
* @return AddNetworkFirewallPolicyYamlDetailResponse
* @throws TencentCloudSDKException
*/
public AddNetworkFirewallPolicyYamlDetailResponse AddNetworkFirewallPolicyYamlDetail(AddNetworkFirewallPolicyYamlDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "AddNetworkFirewallPolicyYamlDetail", AddNetworkFirewallPolicyYamlDetailResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建检查Yaml网络策略任务
* @param req CheckNetworkFirewallPolicyYamlRequest
* @return CheckNetworkFirewallPolicyYamlResponse
* @throws TencentCloudSDKException
*/
public CheckNetworkFirewallPolicyYamlResponse CheckNetworkFirewallPolicyYaml(CheckNetworkFirewallPolicyYamlRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CheckNetworkFirewallPolicyYaml", CheckNetworkFirewallPolicyYamlResponse.class);
}
/**
*检查单个镜像仓库名是否重复
* @param req CheckRepeatAssetImageRegistryRequest
* @return CheckRepeatAssetImageRegistryResponse
* @throws TencentCloudSDKException
*/
public CheckRepeatAssetImageRegistryResponse CheckRepeatAssetImageRegistry(CheckRepeatAssetImageRegistryRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CheckRepeatAssetImageRegistry", CheckRepeatAssetImageRegistryResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建网络策略确认任务
* @param req ConfirmNetworkFirewallPolicyRequest
* @return ConfirmNetworkFirewallPolicyResponse
* @throws TencentCloudSDKException
*/
public ConfirmNetworkFirewallPolicyResponse ConfirmNetworkFirewallPolicy(ConfirmNetworkFirewallPolicyRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "ConfirmNetworkFirewallPolicy", ConfirmNetworkFirewallPolicyResponse.class);
}
/**
*创建异常进程规则导出任务
* @param req CreateAbnormalProcessRulesExportJobRequest
* @return CreateAbnormalProcessRulesExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateAbnormalProcessRulesExportJobResponse CreateAbnormalProcessRulesExportJob(CreateAbnormalProcessRulesExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAbnormalProcessRulesExportJob", CreateAbnormalProcessRulesExportJobResponse.class);
}
/**
*创建文件篡改规则导出任务
* @param req CreateAccessControlsRuleExportJobRequest
* @return CreateAccessControlsRuleExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateAccessControlsRuleExportJobResponse CreateAccessControlsRuleExportJob(CreateAccessControlsRuleExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAccessControlsRuleExportJob", CreateAccessControlsRuleExportJobResponse.class);
}
/**
*镜像仓库创建镜像扫描任务
* @param req CreateAssetImageRegistryScanTaskRequest
* @return CreateAssetImageRegistryScanTaskResponse
* @throws TencentCloudSDKException
*/
public CreateAssetImageRegistryScanTaskResponse CreateAssetImageRegistryScanTask(CreateAssetImageRegistryScanTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAssetImageRegistryScanTask", CreateAssetImageRegistryScanTaskResponse.class);
}
/**
*镜像仓库创建镜像一键扫描任务
* @param req CreateAssetImageRegistryScanTaskOneKeyRequest
* @return CreateAssetImageRegistryScanTaskOneKeyResponse
* @throws TencentCloudSDKException
*/
public CreateAssetImageRegistryScanTaskOneKeyResponse CreateAssetImageRegistryScanTaskOneKey(CreateAssetImageRegistryScanTaskOneKeyRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAssetImageRegistryScanTaskOneKey", CreateAssetImageRegistryScanTaskOneKeyResponse.class);
}
/**
*添加容器安全镜像扫描设置
* @param req CreateAssetImageScanSettingRequest
* @return CreateAssetImageScanSettingResponse
* @throws TencentCloudSDKException
*/
public CreateAssetImageScanSettingResponse CreateAssetImageScanSetting(CreateAssetImageScanSettingRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAssetImageScanSetting", CreateAssetImageScanSettingResponse.class);
}
/**
*容器安全创建镜像扫描任务
* @param req CreateAssetImageScanTaskRequest
* @return CreateAssetImageScanTaskResponse
* @throws TencentCloudSDKException
*/
public CreateAssetImageScanTaskResponse CreateAssetImageScanTask(CreateAssetImageScanTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAssetImageScanTask", CreateAssetImageScanTaskResponse.class);
}
/**
*创建本地镜像木马列表导出任务
* @param req CreateAssetImageVirusExportJobRequest
* @return CreateAssetImageVirusExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateAssetImageVirusExportJobResponse CreateAssetImageVirusExportJob(CreateAssetImageVirusExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateAssetImageVirusExportJob", CreateAssetImageVirusExportJobResponse.class);
}
/**
*安装检查组件,创建防护容器
* @param req CreateCheckComponentRequest
* @return CreateCheckComponentResponse
* @throws TencentCloudSDKException
*/
public CreateCheckComponentResponse CreateCheckComponent(CreateCheckComponentRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateCheckComponent", CreateCheckComponentResponse.class);
}
/**
*创建集群接入
* @param req CreateClusterAccessRequest
* @return CreateClusterAccessResponse
* @throws TencentCloudSDKException
*/
public CreateClusterAccessResponse CreateClusterAccess(CreateClusterAccessRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateClusterAccess", CreateClusterAccessResponse.class);
}
/**
*创建集群检查任务,用户检查用户的集群相关风险项
* @param req CreateClusterCheckTaskRequest
* @return CreateClusterCheckTaskResponse
* @throws TencentCloudSDKException
*/
public CreateClusterCheckTaskResponse CreateClusterCheckTask(CreateClusterCheckTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateClusterCheckTask", CreateClusterCheckTaskResponse.class);
}
/**
*创建合规检查任务,在资产级别触发重新检测时使用。
* @param req CreateComplianceTaskRequest
* @return CreateComplianceTaskResponse
* @throws TencentCloudSDKException
*/
public CreateComplianceTaskResponse CreateComplianceTask(CreateComplianceTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateComplianceTask", CreateComplianceTaskResponse.class);
}
/**
*查询本地镜像组件列表导出
* @param req CreateComponentExportJobRequest
* @return CreateComponentExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateComponentExportJobResponse CreateComponentExportJob(CreateComponentExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateComponentExportJob", CreateComponentExportJobResponse.class);
}
/**
*创建支持防御的漏洞导出任务
* @param req CreateDefenceVulExportJobRequest
* @return CreateDefenceVulExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateDefenceVulExportJobResponse CreateDefenceVulExportJob(CreateDefenceVulExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateDefenceVulExportJob", CreateDefenceVulExportJobResponse.class);
}
/**
*创建应急漏洞导出任务
* @param req CreateEmergencyVulExportJobRequest
* @return CreateEmergencyVulExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateEmergencyVulExportJobResponse CreateEmergencyVulExportJob(CreateEmergencyVulExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateEmergencyVulExportJob", CreateEmergencyVulExportJobResponse.class);
}
/**
*创建逃逸事件导出异步任务
* @param req CreateEscapeEventsExportJobRequest
* @return CreateEscapeEventsExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateEscapeEventsExportJobResponse CreateEscapeEventsExportJob(CreateEscapeEventsExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateEscapeEventsExportJob", CreateEscapeEventsExportJobResponse.class);
}
/**
*创建逃逸白名单导出任务
* @param req CreateEscapeWhiteListExportJobRequest
* @return CreateEscapeWhiteListExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateEscapeWhiteListExportJobResponse CreateEscapeWhiteListExportJob(CreateEscapeWhiteListExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateEscapeWhiteListExportJob", CreateEscapeWhiteListExportJobResponse.class);
}
/**
*创建一个导出安全合规信息的任务
* @param req CreateExportComplianceStatusListJobRequest
* @return CreateExportComplianceStatusListJobResponse
* @throws TencentCloudSDKException
*/
public CreateExportComplianceStatusListJobResponse CreateExportComplianceStatusListJob(CreateExportComplianceStatusListJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateExportComplianceStatusListJob", CreateExportComplianceStatusListJobResponse.class);
}
/**
*创建主机列表导出任务
* @param req CreateHostExportJobRequest
* @return CreateHostExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateHostExportJobResponse CreateHostExportJob(CreateHostExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateHostExportJob", CreateHostExportJobResponse.class);
}
/**
*创建镜像导出任务
* @param req CreateImageExportJobRequest
* @return CreateImageExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateImageExportJobResponse CreateImageExportJob(CreateImageExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateImageExportJob", CreateImageExportJobResponse.class);
}
/**
*创建k8s api异常事件导出任务
* @param req CreateK8sApiAbnormalEventExportJobRequest
* @return CreateK8sApiAbnormalEventExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateK8sApiAbnormalEventExportJobResponse CreateK8sApiAbnormalEventExportJob(CreateK8sApiAbnormalEventExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateK8sApiAbnormalEventExportJob", CreateK8sApiAbnormalEventExportJobResponse.class);
}
/**
*创建k8sApi异常规则导出任务
* @param req CreateK8sApiAbnormalRuleExportJobRequest
* @return CreateK8sApiAbnormalRuleExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateK8sApiAbnormalRuleExportJobResponse CreateK8sApiAbnormalRuleExportJob(CreateK8sApiAbnormalRuleExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateK8sApiAbnormalRuleExportJob", CreateK8sApiAbnormalRuleExportJobResponse.class);
}
/**
*创建k8sapi异常事件规则
* @param req CreateK8sApiAbnormalRuleInfoRequest
* @return CreateK8sApiAbnormalRuleInfoResponse
* @throws TencentCloudSDKException
*/
public CreateK8sApiAbnormalRuleInfoResponse CreateK8sApiAbnormalRuleInfo(CreateK8sApiAbnormalRuleInfoRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateK8sApiAbnormalRuleInfo", CreateK8sApiAbnormalRuleInfoResponse.class);
}
/**
*功能已下线待三合一重构
容器网络集群下发刷新任务
* @param req CreateNetworkFirewallClusterRefreshRequest
* @return CreateNetworkFirewallClusterRefreshResponse
* @throws TencentCloudSDKException
*/
public CreateNetworkFirewallClusterRefreshResponse CreateNetworkFirewallClusterRefresh(CreateNetworkFirewallClusterRefreshRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateNetworkFirewallClusterRefresh", CreateNetworkFirewallClusterRefreshResponse.class);
}
/**
*功能已下线待三合一重构
容器网络集群网络策略创建自动发现任务
* @param req CreateNetworkFirewallPolicyDiscoverRequest
* @return CreateNetworkFirewallPolicyDiscoverResponse
* @throws TencentCloudSDKException
*/
public CreateNetworkFirewallPolicyDiscoverResponse CreateNetworkFirewallPolicyDiscover(CreateNetworkFirewallPolicyDiscoverRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateNetworkFirewallPolicyDiscover", CreateNetworkFirewallPolicyDiscoverResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建网络策略发布任务
* @param req CreateNetworkFirewallPublishRequest
* @return CreateNetworkFirewallPublishResponse
* @throws TencentCloudSDKException
*/
public CreateNetworkFirewallPublishResponse CreateNetworkFirewallPublish(CreateNetworkFirewallPublishRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateNetworkFirewallPublish", CreateNetworkFirewallPublishResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建网络策略撤销任务
* @param req CreateNetworkFirewallUndoPublishRequest
* @return CreateNetworkFirewallUndoPublishResponse
* @throws TencentCloudSDKException
*/
public CreateNetworkFirewallUndoPublishResponse CreateNetworkFirewallUndoPublish(CreateNetworkFirewallUndoPublishRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateNetworkFirewallUndoPublish", CreateNetworkFirewallUndoPublishResponse.class);
}
/**
*CreateOrModifyPostPayCores 创建或者编辑弹性计费上限
* @param req CreateOrModifyPostPayCoresRequest
* @return CreateOrModifyPostPayCoresResponse
* @throws TencentCloudSDKException
*/
public CreateOrModifyPostPayCoresResponse CreateOrModifyPostPayCores(CreateOrModifyPostPayCoresRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateOrModifyPostPayCores", CreateOrModifyPostPayCoresResponse.class);
}
/**
*创建异常进程事件导出异步任务
* @param req CreateProcessEventsExportJobRequest
* @return CreateProcessEventsExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateProcessEventsExportJobResponse CreateProcessEventsExportJob(CreateProcessEventsExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateProcessEventsExportJob", CreateProcessEventsExportJobResponse.class);
}
/**
*下发刷新任务,会刷新资产信息
* @param req CreateRefreshTaskRequest
* @return CreateRefreshTaskResponse
* @throws TencentCloudSDKException
*/
public CreateRefreshTaskResponse CreateRefreshTask(CreateRefreshTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateRefreshTask", CreateRefreshTaskResponse.class);
}
/**
*创建恶意请求事件导出任务
* @param req CreateRiskDnsEventExportJobRequest
* @return CreateRiskDnsEventExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateRiskDnsEventExportJobResponse CreateRiskDnsEventExportJob(CreateRiskDnsEventExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateRiskDnsEventExportJob", CreateRiskDnsEventExportJobResponse.class);
}
/**
*添加检索模板
* @param req CreateSearchTemplateRequest
* @return CreateSearchTemplateResponse
* @throws TencentCloudSDKException
*/
public CreateSearchTemplateResponse CreateSearchTemplate(CreateSearchTemplateRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateSearchTemplate", CreateSearchTemplateResponse.class);
}
/**
*创建系统漏洞导出任务
* @param req CreateSystemVulExportJobRequest
* @return CreateSystemVulExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateSystemVulExportJobResponse CreateSystemVulExportJob(CreateSystemVulExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateSystemVulExportJob", CreateSystemVulExportJobResponse.class);
}
/**
*运行时文件查杀重新检测
* @param req CreateVirusScanAgainRequest
* @return CreateVirusScanAgainResponse
* @throws TencentCloudSDKException
*/
public CreateVirusScanAgainResponse CreateVirusScanAgain(CreateVirusScanAgainRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVirusScanAgain", CreateVirusScanAgainResponse.class);
}
/**
*运行时文件查杀一键扫描
* @param req CreateVirusScanTaskRequest
* @return CreateVirusScanTaskResponse
* @throws TencentCloudSDKException
*/
public CreateVirusScanTaskResponse CreateVirusScanTask(CreateVirusScanTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVirusScanTask", CreateVirusScanTaskResponse.class);
}
/**
*创建受漏洞影响的容器导出任务
* @param req CreateVulContainerExportJobRequest
* @return CreateVulContainerExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateVulContainerExportJobResponse CreateVulContainerExportJob(CreateVulContainerExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVulContainerExportJob", CreateVulContainerExportJobResponse.class);
}
/**
*创建漏洞防御导出任务
* @param req CreateVulDefenceEventExportJobRequest
* @return CreateVulDefenceEventExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateVulDefenceEventExportJobResponse CreateVulDefenceEventExportJob(CreateVulDefenceEventExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVulDefenceEventExportJob", CreateVulDefenceEventExportJobResponse.class);
}
/**
*创建漏洞防御主机导出任务
* @param req CreateVulDefenceHostExportJobRequest
* @return CreateVulDefenceHostExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateVulDefenceHostExportJobResponse CreateVulDefenceHostExportJob(CreateVulDefenceHostExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVulDefenceHostExportJob", CreateVulDefenceHostExportJobResponse.class);
}
/**
*查询本地镜像漏洞列表导出
* @param req CreateVulExportJobRequest
* @return CreateVulExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateVulExportJobResponse CreateVulExportJob(CreateVulExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVulExportJob", CreateVulExportJobResponse.class);
}
/**
*创建受漏洞影响的镜像导出任务
* @param req CreateVulImageExportJobRequest
* @return CreateVulImageExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateVulImageExportJobResponse CreateVulImageExportJob(CreateVulImageExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVulImageExportJob", CreateVulImageExportJobResponse.class);
}
/**
*创建漏洞扫描任务
* @param req CreateVulScanTaskRequest
* @return CreateVulScanTaskResponse
* @throws TencentCloudSDKException
*/
public CreateVulScanTaskResponse CreateVulScanTask(CreateVulScanTaskRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateVulScanTask", CreateVulScanTaskResponse.class);
}
/**
*创建web漏洞导出任务
* @param req CreateWebVulExportJobRequest
* @return CreateWebVulExportJobResponse
* @throws TencentCloudSDKException
*/
public CreateWebVulExportJobResponse CreateWebVulExportJob(CreateWebVulExportJobRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "CreateWebVulExportJob", CreateWebVulExportJobResponse.class);
}
/**
*删除运行异常进程策略
* @param req DeleteAbnormalProcessRulesRequest
* @return DeleteAbnormalProcessRulesResponse
* @throws TencentCloudSDKException
*/
public DeleteAbnormalProcessRulesResponse DeleteAbnormalProcessRules(DeleteAbnormalProcessRulesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteAbnormalProcessRules", DeleteAbnormalProcessRulesResponse.class);
}
/**
*删除运行访问控制策略
* @param req DeleteAccessControlRulesRequest
* @return DeleteAccessControlRulesResponse
* @throws TencentCloudSDKException
*/
public DeleteAccessControlRulesResponse DeleteAccessControlRules(DeleteAccessControlRulesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteAccessControlRules", DeleteAccessControlRulesResponse.class);
}
/**
*移除安全合规忽略(资产+检测项)列表,不显示指定的检查项包含的资产内容
参考的AddCompliancePolicyAssetSetToWhitelist,除输入字段外,其它应该是一致的,如果有不同可能是定义的不对
* @param req DeleteComplianceAssetPolicySetFromWhitelistRequest
* @return DeleteComplianceAssetPolicySetFromWhitelistResponse
* @throws TencentCloudSDKException
*/
public DeleteComplianceAssetPolicySetFromWhitelistResponse DeleteComplianceAssetPolicySetFromWhitelist(DeleteComplianceAssetPolicySetFromWhitelistRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteComplianceAssetPolicySetFromWhitelist", DeleteComplianceAssetPolicySetFromWhitelistResponse.class);
}
/**
*新增安全合规忽略(检测项+资产)列表,不显示指定的检查项包含的资产内容
* @param req DeleteCompliancePolicyAssetSetFromWhitelistRequest
* @return DeleteCompliancePolicyAssetSetFromWhitelistResponse
* @throws TencentCloudSDKException
*/
public DeleteCompliancePolicyAssetSetFromWhitelistResponse DeleteCompliancePolicyAssetSetFromWhitelist(DeleteCompliancePolicyAssetSetFromWhitelistRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCompliancePolicyAssetSetFromWhitelist", DeleteCompliancePolicyAssetSetFromWhitelistResponse.class);
}
/**
*产品重构优化,这几个接口已经没有调用了
从白名单中删除将指定的检测项。
* @param req DeleteCompliancePolicyItemFromWhitelistRequest
* @return DeleteCompliancePolicyItemFromWhitelistResponse
* @throws TencentCloudSDKException
*/
public DeleteCompliancePolicyItemFromWhitelistResponse DeleteCompliancePolicyItemFromWhitelist(DeleteCompliancePolicyItemFromWhitelistRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteCompliancePolicyItemFromWhitelist", DeleteCompliancePolicyItemFromWhitelistResponse.class);
}
/**
*删除逃逸白名单
* @param req DeleteEscapeWhiteListRequest
* @return DeleteEscapeWhiteListResponse
* @throws TencentCloudSDKException
*/
public DeleteEscapeWhiteListResponse DeleteEscapeWhiteList(DeleteEscapeWhiteListRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteEscapeWhiteList", DeleteEscapeWhiteListResponse.class);
}
/**
*取消漏洞扫描忽略漏洞
* @param req DeleteIgnoreVulRequest
* @return DeleteIgnoreVulResponse
* @throws TencentCloudSDKException
*/
public DeleteIgnoreVulResponse DeleteIgnoreVul(DeleteIgnoreVulRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteIgnoreVul", DeleteIgnoreVulResponse.class);
}
/**
*删除k8sapi异常事件规则
* @param req DeleteK8sApiAbnormalRuleRequest
* @return DeleteK8sApiAbnormalRuleResponse
* @throws TencentCloudSDKException
*/
public DeleteK8sApiAbnormalRuleResponse DeleteK8sApiAbnormalRule(DeleteK8sApiAbnormalRuleRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteK8sApiAbnormalRule", DeleteK8sApiAbnormalRuleResponse.class);
}
/**
*卸载Agent客户端
* @param req DeleteMachineRequest
* @return DeleteMachineResponse
* @throws TencentCloudSDKException
*/
public DeleteMachineResponse DeleteMachine(DeleteMachineRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteMachine", DeleteMachineResponse.class);
}
/**
*功能已下线待三合一重构
容器网络创建网络策略删除任务
* @param req DeleteNetworkFirewallPolicyDetailRequest
* @return DeleteNetworkFirewallPolicyDetailResponse
* @throws TencentCloudSDKException
*/
public DeleteNetworkFirewallPolicyDetailResponse DeleteNetworkFirewallPolicyDetail(DeleteNetworkFirewallPolicyDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteNetworkFirewallPolicyDetail", DeleteNetworkFirewallPolicyDetailResponse.class);
}
/**
*删除漏洞防御白名单
* @param req DeleteRaspRulesRequest
* @return DeleteRaspRulesResponse
* @throws TencentCloudSDKException
*/
public DeleteRaspRulesResponse DeleteRaspRules(DeleteRaspRulesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteRaspRules", DeleteRaspRulesResponse.class);
}
/**
*删除运行时反弹shell事件
* @param req DeleteReverseShellEventsRequest
* @return DeleteReverseShellEventsResponse
* @throws TencentCloudSDKException
*/
public DeleteReverseShellEventsResponse DeleteReverseShellEvents(DeleteReverseShellEventsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteReverseShellEvents", DeleteReverseShellEventsResponse.class);
}
/**
*删除运行时反弹shell白名单
* @param req DeleteReverseShellWhiteListsRequest
* @return DeleteReverseShellWhiteListsResponse
* @throws TencentCloudSDKException
*/
public DeleteReverseShellWhiteListsResponse DeleteReverseShellWhiteLists(DeleteReverseShellWhiteListsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteReverseShellWhiteLists", DeleteReverseShellWhiteListsResponse.class);
}
/**
*删除运行时高危系统调用事件
* @param req DeleteRiskSyscallEventsRequest
* @return DeleteRiskSyscallEventsResponse
* @throws TencentCloudSDKException
*/
public DeleteRiskSyscallEventsResponse DeleteRiskSyscallEvents(DeleteRiskSyscallEventsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteRiskSyscallEvents", DeleteRiskSyscallEventsResponse.class);
}
/**
*删除运行时高危系统调用白名单
* @param req DeleteRiskSyscallWhiteListsRequest
* @return DeleteRiskSyscallWhiteListsResponse
* @throws TencentCloudSDKException
*/
public DeleteRiskSyscallWhiteListsResponse DeleteRiskSyscallWhiteLists(DeleteRiskSyscallWhiteListsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteRiskSyscallWhiteLists", DeleteRiskSyscallWhiteListsResponse.class);
}
/**
*删除检索模板
* @param req DeleteSearchTemplateRequest
* @return DeleteSearchTemplateResponse
* @throws TencentCloudSDKException
*/
public DeleteSearchTemplateResponse DeleteSearchTemplate(DeleteSearchTemplateRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DeleteSearchTemplate", DeleteSearchTemplateResponse.class);
}
/**
*获取用户当前灰度配置
* @param req DescribeABTestConfigRequest
* @return DescribeABTestConfigResponse
* @throws TencentCloudSDKException
*/
public DescribeABTestConfigResponse DescribeABTestConfig(DescribeABTestConfigRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeABTestConfig", DescribeABTestConfigResponse.class);
}
/**
*查询运行时异常进程事件详细信息
* @param req DescribeAbnormalProcessDetailRequest
* @return DescribeAbnormalProcessDetailResponse
* @throws TencentCloudSDKException
*/
public DescribeAbnormalProcessDetailResponse DescribeAbnormalProcessDetail(DescribeAbnormalProcessDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAbnormalProcessDetail", DescribeAbnormalProcessDetailResponse.class);
}
/**
*查询待处理异常进程事件趋势
* @param req DescribeAbnormalProcessEventTendencyRequest
* @return DescribeAbnormalProcessEventTendencyResponse
* @throws TencentCloudSDKException
*/
public DescribeAbnormalProcessEventTendencyResponse DescribeAbnormalProcessEventTendency(DescribeAbnormalProcessEventTendencyRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAbnormalProcessEventTendency", DescribeAbnormalProcessEventTendencyResponse.class);
}
/**
*查询运行时异常进程事件列表信息
* @param req DescribeAbnormalProcessEventsRequest
* @return DescribeAbnormalProcessEventsResponse
* @throws TencentCloudSDKException
*/
public DescribeAbnormalProcessEventsResponse DescribeAbnormalProcessEvents(DescribeAbnormalProcessEventsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAbnormalProcessEvents", DescribeAbnormalProcessEventsResponse.class);
}
/**
*统计异常进程各威胁等级待处理事件数
* @param req DescribeAbnormalProcessLevelSummaryRequest
* @return DescribeAbnormalProcessLevelSummaryResponse
* @throws TencentCloudSDKException
*/
public DescribeAbnormalProcessLevelSummaryResponse DescribeAbnormalProcessLevelSummary(DescribeAbnormalProcessLevelSummaryRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAbnormalProcessLevelSummary", DescribeAbnormalProcessLevelSummaryResponse.class);
}
/**
*查询运行时异常策略详细信息
* @param req DescribeAbnormalProcessRuleDetailRequest
* @return DescribeAbnormalProcessRuleDetailResponse
* @throws TencentCloudSDKException
*/
public DescribeAbnormalProcessRuleDetailResponse DescribeAbnormalProcessRuleDetail(DescribeAbnormalProcessRuleDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAbnormalProcessRuleDetail", DescribeAbnormalProcessRuleDetailResponse.class);
}
/**
*查询运行时异常进程策略列表信息
* @param req DescribeAbnormalProcessRulesRequest
* @return DescribeAbnormalProcessRulesResponse
* @throws TencentCloudSDKException
*/
public DescribeAbnormalProcessRulesResponse DescribeAbnormalProcessRules(DescribeAbnormalProcessRulesRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAbnormalProcessRules", DescribeAbnormalProcessRulesResponse.class);
}
/**
*查询运行时访问控制事件的详细信息
* @param req DescribeAccessControlDetailRequest
* @return DescribeAccessControlDetailResponse
* @throws TencentCloudSDKException
*/
public DescribeAccessControlDetailResponse DescribeAccessControlDetail(DescribeAccessControlDetailRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAccessControlDetail", DescribeAccessControlDetailResponse.class);
}
/**
*查询运行时访问控制事件列表
* @param req DescribeAccessControlEventsRequest
* @return DescribeAccessControlEventsResponse
* @throws TencentCloudSDKException
*/
public DescribeAccessControlEventsResponse DescribeAccessControlEvents(DescribeAccessControlEventsRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "DescribeAccessControlEvents", DescribeAccessControlEventsResponse.class);