tencentcloud-sdk-nodejs 4.0.552 → 4.0.554
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +404 -0
- package/SERVICE_CHANGELOG.md +441 -49
- package/package.json +1 -1
- package/products.md +30 -30
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bpaas/v20181217/bpaas_models.ts +6 -0
- package/src/services/ccc/v20200210/ccc_models.ts +10 -5
- package/src/services/clb/v20180317/clb_models.ts +13 -1
- package/src/services/cwp/v20180228/cwp_client.ts +445 -84
- package/src/services/cwp/v20180228/cwp_models.ts +2230 -688
- package/src/services/dlc/v20210125/dlc_client.ts +103 -30
- package/src/services/dlc/v20210125/dlc_models.ts +437 -150
- package/src/services/essbasic/v20210526/essbasic_client.ts +18 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +256 -17
- package/src/services/monitor/v20180724/monitor_models.ts +27 -2
- package/src/services/tcbr/v20220217/tcbr_models.ts +7 -2
- package/src/services/tdmq/v20200217/tdmq_models.ts +24 -16
- package/src/services/tke/v20180525/tke_models.ts +19 -19
- package/src/services/trtc/v20190722/trtc_client.ts +1 -0
- package/src/services/trtc/v20190722/trtc_models.ts +55 -1
- package/src/services/tse/v20201207/tse_client.ts +1 -0
- package/src/services/tse/v20201207/tse_models.ts +28 -0
- package/src/services/wedata/v20210820/wedata_client.ts +1 -0
- package/src/services/wedata/v20210820/wedata_models.ts +111 -22
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bpaas/v20181217/bpaas_models.d.ts +5 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +8 -4
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +11 -1
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +137 -21
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +204 -30
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +1860 -544
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +33 -9
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +48 -12
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +368 -128
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +5 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +6 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +219 -17
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +24 -2
- package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +6 -2
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +22 -15
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +19 -19
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +46 -1
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +24 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +93 -18
- package/test/cwp.v20180228.test.js +310 -20
- package/test/dlc.v20210125.test.js +68 -8
- package/test/essbasic.v20210526.test.js +10 -0
|
@@ -66,14 +66,40 @@ export interface ExportReverseShellEventsResponse {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* DescribeBaselineDetectOverview返回参数结构体
|
|
70
70
|
*/
|
|
71
|
-
export interface
|
|
71
|
+
export interface DescribeBaselineDetectOverviewResponse {
|
|
72
72
|
/**
|
|
73
|
-
|
|
73
|
+
* 检测服务器数
|
|
74
|
+
*/
|
|
75
|
+
HostCount: number
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* 检测项
|
|
79
|
+
*/
|
|
80
|
+
ItemCount: number
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* 检测策略项
|
|
84
|
+
*/
|
|
85
|
+
PolicyCount: number
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* 通过率*100%
|
|
89
|
+
*/
|
|
90
|
+
PassRate: number
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* 最近一次检测通过个数
|
|
74
94
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
75
95
|
*/
|
|
76
|
-
|
|
96
|
+
LatestPassCount: number
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* 最近一次检测未通过个数
|
|
100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
101
|
+
*/
|
|
102
|
+
LatestNotPassCount: number
|
|
77
103
|
|
|
78
104
|
/**
|
|
79
105
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -123,6 +149,62 @@ export interface DescribeAssetAppProcessListResponse {
|
|
|
123
149
|
RequestId?: string
|
|
124
150
|
}
|
|
125
151
|
|
|
152
|
+
/**
|
|
153
|
+
* 基线检测策略
|
|
154
|
+
*/
|
|
155
|
+
export interface BaselinePolicyDetect {
|
|
156
|
+
/**
|
|
157
|
+
* 策略Id
|
|
158
|
+
*/
|
|
159
|
+
PolicyId: number
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* 检测任务Id
|
|
163
|
+
*/
|
|
164
|
+
TaskId: number
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* 关联主机数
|
|
168
|
+
*/
|
|
169
|
+
HostCount: number
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* 开始时间
|
|
173
|
+
*/
|
|
174
|
+
StartTime: string
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* 结束时间
|
|
178
|
+
*/
|
|
179
|
+
FinishTime: string
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* 策略名称
|
|
183
|
+
*/
|
|
184
|
+
PolicyName: string
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* 成功主机数
|
|
188
|
+
*/
|
|
189
|
+
SuccessCount: number
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* 失败主技数
|
|
193
|
+
*/
|
|
194
|
+
FailedCount: number
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* 失败主机数
|
|
198
|
+
*/
|
|
199
|
+
TimeoutCount: number
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* 1:检测中 2:检测完成
|
|
203
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
204
|
+
*/
|
|
205
|
+
PolicyDetectStatus: number
|
|
206
|
+
}
|
|
207
|
+
|
|
126
208
|
/**
|
|
127
209
|
* ScanVulAgain请求参数结构体
|
|
128
210
|
*/
|
|
@@ -138,6 +220,37 @@ export interface ScanVulAgainRequest {
|
|
|
138
220
|
Uuids?: string
|
|
139
221
|
}
|
|
140
222
|
|
|
223
|
+
/**
|
|
224
|
+
* ExportBaselineFixList请求参数结构体
|
|
225
|
+
*/
|
|
226
|
+
export interface ExportBaselineFixListRequest {
|
|
227
|
+
/**
|
|
228
|
+
* <li>ItemName - String - 是否必填:否 - 项名称</li>
|
|
229
|
+
*/
|
|
230
|
+
Filters?: Array<Filter>
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* 0:过滤的结果导出;1:全部导出
|
|
234
|
+
*/
|
|
235
|
+
ExportAll?: number
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* DescribeBaselineTop返回参数结构体
|
|
240
|
+
*/
|
|
241
|
+
export interface DescribeBaselineTopResponse {
|
|
242
|
+
/**
|
|
243
|
+
* 检测项Top列表
|
|
244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
245
|
+
*/
|
|
246
|
+
RuleTopList: Array<BaselineRuleTopInfo>
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
250
|
+
*/
|
|
251
|
+
RequestId?: string
|
|
252
|
+
}
|
|
253
|
+
|
|
141
254
|
/**
|
|
142
255
|
* DeleteBaselineStrategy返回参数结构体
|
|
143
256
|
*/
|
|
@@ -300,6 +413,26 @@ export interface DescribeAssetProcessInfoListRequest {
|
|
|
300
413
|
By?: string
|
|
301
414
|
}
|
|
302
415
|
|
|
416
|
+
/**
|
|
417
|
+
* ModifyBaselineRule请求参数结构体
|
|
418
|
+
*/
|
|
419
|
+
export interface ModifyBaselineRuleRequest {
|
|
420
|
+
/**
|
|
421
|
+
* 无
|
|
422
|
+
*/
|
|
423
|
+
Data: BaselineRule
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* 是否过滤全选
|
|
427
|
+
*/
|
|
428
|
+
SelectAll?: number
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* <li>ItemName - string - 是否必填:否 - 项名称</li>
|
|
432
|
+
*/
|
|
433
|
+
Filters?: Array<Filter>
|
|
434
|
+
}
|
|
435
|
+
|
|
303
436
|
/**
|
|
304
437
|
* ExportWebPageEventList请求参数结构体
|
|
305
438
|
*/
|
|
@@ -467,6 +600,98 @@ export interface DeleteBashRulesResponse {
|
|
|
467
600
|
RequestId?: string
|
|
468
601
|
}
|
|
469
602
|
|
|
603
|
+
/**
|
|
604
|
+
* DescribeSecurityEventsCnt返回参数结构体
|
|
605
|
+
*/
|
|
606
|
+
export interface DescribeSecurityEventsCntResponse {
|
|
607
|
+
/**
|
|
608
|
+
* 木马文件相关风险事件
|
|
609
|
+
*/
|
|
610
|
+
Malware: SecurityEventInfo
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* 登录审计相关风险事件
|
|
614
|
+
*/
|
|
615
|
+
HostLogin: SecurityEventInfo
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* 密码破解相关风险事件
|
|
619
|
+
*/
|
|
620
|
+
BruteAttack: SecurityEventInfo
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* 恶意请求相关风险事件
|
|
624
|
+
*/
|
|
625
|
+
RiskDns: SecurityEventInfo
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* 高危命令相关风险事件
|
|
629
|
+
*/
|
|
630
|
+
Bash: SecurityEventInfo
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* 本地提权相关风险事件
|
|
634
|
+
*/
|
|
635
|
+
PrivilegeRules: SecurityEventInfo
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* 反弹Shell相关风险事件
|
|
639
|
+
*/
|
|
640
|
+
ReverseShell: SecurityEventInfo
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* 应用漏洞风险事件
|
|
644
|
+
*/
|
|
645
|
+
SysVul: SecurityEventInfo
|
|
646
|
+
|
|
647
|
+
/**
|
|
648
|
+
* Web应用漏洞相关风险事件
|
|
649
|
+
*/
|
|
650
|
+
WebVul: SecurityEventInfo
|
|
651
|
+
|
|
652
|
+
/**
|
|
653
|
+
* 应急漏洞相关风险事件
|
|
654
|
+
*/
|
|
655
|
+
EmergencyVul: SecurityEventInfo
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* 安全基线相关风险事件
|
|
659
|
+
*/
|
|
660
|
+
BaseLine: SecurityEventInfo
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* 攻击检测相关风险事件
|
|
664
|
+
*/
|
|
665
|
+
AttackLogs: SecurityEventInfo
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* 受影响机器数
|
|
669
|
+
*/
|
|
670
|
+
EffectMachineCount: number
|
|
671
|
+
|
|
672
|
+
/**
|
|
673
|
+
* 所有事件总数
|
|
674
|
+
*/
|
|
675
|
+
EventsCount: number
|
|
676
|
+
|
|
677
|
+
/**
|
|
678
|
+
* window 系统漏洞事件总数
|
|
679
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
680
|
+
*/
|
|
681
|
+
WindowVul: SecurityEventInfo
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* linux系统漏洞事件总数
|
|
685
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
686
|
+
*/
|
|
687
|
+
LinuxVul: SecurityEventInfo
|
|
688
|
+
|
|
689
|
+
/**
|
|
690
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
691
|
+
*/
|
|
692
|
+
RequestId?: string
|
|
693
|
+
}
|
|
694
|
+
|
|
470
695
|
/**
|
|
471
696
|
* ExportVulList返回参数结构体
|
|
472
697
|
*/
|
|
@@ -716,6 +941,26 @@ export interface ModifyWebPageProtectSettingResponse {
|
|
|
716
941
|
RequestId?: string
|
|
717
942
|
}
|
|
718
943
|
|
|
944
|
+
/**
|
|
945
|
+
* DeleteBaselineRuleIgnore返回参数结构体
|
|
946
|
+
*/
|
|
947
|
+
export interface DeleteBaselineRuleIgnoreResponse {
|
|
948
|
+
/**
|
|
949
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
950
|
+
*/
|
|
951
|
+
RequestId?: string
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
/**
|
|
955
|
+
* ModifyAutoOpenProVersionConfig返回参数结构体
|
|
956
|
+
*/
|
|
957
|
+
export interface ModifyAutoOpenProVersionConfigResponse {
|
|
958
|
+
/**
|
|
959
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
960
|
+
*/
|
|
961
|
+
RequestId?: string
|
|
962
|
+
}
|
|
963
|
+
|
|
719
964
|
/**
|
|
720
965
|
* DescribeVulInfoCvss返回参数结构体
|
|
721
966
|
*/
|
|
@@ -1499,38 +1744,23 @@ export interface DescribeMonthInspectionReportRequest {
|
|
|
1499
1744
|
}
|
|
1500
1745
|
|
|
1501
1746
|
/**
|
|
1502
|
-
*
|
|
1747
|
+
* DescribeBaselineDetectList返回参数结构体
|
|
1503
1748
|
*/
|
|
1504
|
-
export interface
|
|
1505
|
-
/**
|
|
1506
|
-
* 任务id
|
|
1507
|
-
*/
|
|
1508
|
-
TaskId: string
|
|
1509
|
-
|
|
1510
|
-
/**
|
|
1511
|
-
* 护网天数
|
|
1512
|
-
*/
|
|
1513
|
-
ProtectDays: number
|
|
1514
|
-
|
|
1515
|
-
/**
|
|
1516
|
-
* 护网状态 0未启动,1护网中,2已完成
|
|
1517
|
-
*/
|
|
1518
|
-
Status: number
|
|
1519
|
-
|
|
1749
|
+
export interface DescribeBaselineDetectListResponse {
|
|
1520
1750
|
/**
|
|
1521
|
-
*
|
|
1751
|
+
* 无
|
|
1522
1752
|
*/
|
|
1523
|
-
|
|
1753
|
+
List: Array<BaselinePolicyDetect>
|
|
1524
1754
|
|
|
1525
1755
|
/**
|
|
1526
|
-
*
|
|
1756
|
+
* 总数
|
|
1527
1757
|
*/
|
|
1528
|
-
|
|
1758
|
+
Total: number
|
|
1529
1759
|
|
|
1530
1760
|
/**
|
|
1531
|
-
*
|
|
1761
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1532
1762
|
*/
|
|
1533
|
-
|
|
1763
|
+
RequestId?: string
|
|
1534
1764
|
}
|
|
1535
1765
|
|
|
1536
1766
|
/**
|
|
@@ -1784,34 +2014,74 @@ export interface DescribeSearchExportListResponse {
|
|
|
1784
2014
|
}
|
|
1785
2015
|
|
|
1786
2016
|
/**
|
|
1787
|
-
*
|
|
2017
|
+
* DescribeAttackLogs请求参数结构体
|
|
1788
2018
|
*/
|
|
1789
|
-
export interface
|
|
2019
|
+
export interface DescribeAttackLogsRequest {
|
|
1790
2020
|
/**
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
VulLevelList: Array<VulLevelInfo>
|
|
2021
|
+
* 返回数量,最大值为100。
|
|
2022
|
+
*/
|
|
2023
|
+
Limit?: number
|
|
1795
2024
|
|
|
1796
2025
|
/**
|
|
1797
|
-
*
|
|
2026
|
+
* 偏移量,默认为0。
|
|
1798
2027
|
*/
|
|
1799
|
-
|
|
2028
|
+
Offset?: number
|
|
2029
|
+
|
|
2030
|
+
/**
|
|
2031
|
+
* 过滤条件。
|
|
2032
|
+
<li>HttpMethod - String - 是否必填:否 - 攻击方法(POST|GET)</li>
|
|
2033
|
+
<li>DateRange - String - 是否必填:否 - 时间范围(存储最近3个月的数据),如最近一个月["2019-11-17", "2019-12-17"]</li>
|
|
2034
|
+
<li>VulType - String 威胁类型 - 是否必填: 否</li>
|
|
2035
|
+
<li>SrcIp - String 攻击源IP - 是否必填: 否</li>
|
|
2036
|
+
<li>DstIp - String 攻击目标IP - 是否必填: 否</li>
|
|
2037
|
+
<li>SrcPort - String 攻击源端口 - 是否必填: 否</li>
|
|
2038
|
+
<li>DstPort - String 攻击目标端口 - 是否必填: 否</li>
|
|
2039
|
+
*/
|
|
2040
|
+
Filters?: Array<Filter>
|
|
2041
|
+
|
|
2042
|
+
/**
|
|
2043
|
+
* 主机安全客户端ID
|
|
2044
|
+
*/
|
|
2045
|
+
Uuid?: string
|
|
2046
|
+
|
|
2047
|
+
/**
|
|
2048
|
+
* 云主机机器ID
|
|
2049
|
+
*/
|
|
2050
|
+
Quuid?: string
|
|
1800
2051
|
}
|
|
1801
2052
|
|
|
1802
2053
|
/**
|
|
1803
|
-
*
|
|
2054
|
+
* DescribeVulLevelCount返回参数结构体
|
|
1804
2055
|
*/
|
|
1805
|
-
export interface
|
|
2056
|
+
export interface DescribeVulLevelCountResponse {
|
|
1806
2057
|
/**
|
|
1807
|
-
|
|
2058
|
+
* 统计结果
|
|
2059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2060
|
+
*/
|
|
2061
|
+
VulLevelList: Array<VulLevelInfo>
|
|
2062
|
+
|
|
2063
|
+
/**
|
|
2064
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1808
2065
|
*/
|
|
1809
|
-
|
|
2066
|
+
RequestId?: string
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
/**
|
|
2070
|
+
* ExportBaselineItemDetectList请求参数结构体
|
|
2071
|
+
*/
|
|
2072
|
+
export interface ExportBaselineItemDetectListRequest {
|
|
2073
|
+
/**
|
|
2074
|
+
* <li>HostId - string - 是否必填:否 - 主机Id</i>
|
|
2075
|
+
<li>RuleId - int64 - 是否必填:否 - 规则Id</i>
|
|
2076
|
+
<li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
|
2077
|
+
<li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
|
2078
|
+
*/
|
|
2079
|
+
Filters?: Array<Filter>
|
|
1810
2080
|
|
|
1811
2081
|
/**
|
|
1812
|
-
*
|
|
2082
|
+
* 0:过滤的结果导出;1:全部导出
|
|
1813
2083
|
*/
|
|
1814
|
-
|
|
2084
|
+
ExportAll?: number
|
|
1815
2085
|
}
|
|
1816
2086
|
|
|
1817
2087
|
/**
|
|
@@ -1935,6 +2205,16 @@ export interface EditBashRulesResponse {
|
|
|
1935
2205
|
RequestId?: string
|
|
1936
2206
|
}
|
|
1937
2207
|
|
|
2208
|
+
/**
|
|
2209
|
+
* ModifyBruteAttackRules返回参数结构体
|
|
2210
|
+
*/
|
|
2211
|
+
export interface ModifyBruteAttackRulesResponse {
|
|
2212
|
+
/**
|
|
2213
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2214
|
+
*/
|
|
2215
|
+
RequestId?: string
|
|
2216
|
+
}
|
|
2217
|
+
|
|
1938
2218
|
/**
|
|
1939
2219
|
* 异地登录白名单
|
|
1940
2220
|
*/
|
|
@@ -2134,6 +2414,38 @@ export interface LicenseUnBindRsp {
|
|
|
2134
2414
|
ErrMsg: string
|
|
2135
2415
|
}
|
|
2136
2416
|
|
|
2417
|
+
/**
|
|
2418
|
+
* DescribeBaselineRuleList请求参数结构体
|
|
2419
|
+
*/
|
|
2420
|
+
export interface DescribeBaselineRuleListRequest {
|
|
2421
|
+
/**
|
|
2422
|
+
* <li>RuleName - String - 是否必填:否 - 规则名称</li>
|
|
2423
|
+
<li>CategoryId - int64 - 是否必填:否 自定义筛选为-1 - 规则分类</li>
|
|
2424
|
+
<li>RuleType - int - 是否必填:否 0:系统 1:自定义 - 规则类型</li>
|
|
2425
|
+
*/
|
|
2426
|
+
Filters?: Array<Filter>
|
|
2427
|
+
|
|
2428
|
+
/**
|
|
2429
|
+
* 限制条数,默认10,最大100
|
|
2430
|
+
*/
|
|
2431
|
+
Limit?: number
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* 偏移量,默认0
|
|
2435
|
+
*/
|
|
2436
|
+
Offset?: number
|
|
2437
|
+
|
|
2438
|
+
/**
|
|
2439
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
2440
|
+
*/
|
|
2441
|
+
Order?: string
|
|
2442
|
+
|
|
2443
|
+
/**
|
|
2444
|
+
* 可选排序列
|
|
2445
|
+
*/
|
|
2446
|
+
By?: string
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2137
2449
|
/**
|
|
2138
2450
|
* ModifyAutoOpenProVersionConfig请求参数结构体
|
|
2139
2451
|
*/
|
|
@@ -2240,6 +2552,105 @@ export interface IgnoreRuleEffectHostInfo {
|
|
|
2240
2552
|
Quuid: string
|
|
2241
2553
|
}
|
|
2242
2554
|
|
|
2555
|
+
/**
|
|
2556
|
+
* 主机风险计数
|
|
2557
|
+
*/
|
|
2558
|
+
export interface HostRiskLevelCount {
|
|
2559
|
+
/**
|
|
2560
|
+
* 主机ID
|
|
2561
|
+
*/
|
|
2562
|
+
HostId: string
|
|
2563
|
+
|
|
2564
|
+
/**
|
|
2565
|
+
* 主机名
|
|
2566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2567
|
+
*/
|
|
2568
|
+
HostName: string
|
|
2569
|
+
|
|
2570
|
+
/**
|
|
2571
|
+
* 严重个数
|
|
2572
|
+
*/
|
|
2573
|
+
SeriousCount: number
|
|
2574
|
+
|
|
2575
|
+
/**
|
|
2576
|
+
* 高危个数
|
|
2577
|
+
*/
|
|
2578
|
+
HighCount: number
|
|
2579
|
+
|
|
2580
|
+
/**
|
|
2581
|
+
* 中危个数
|
|
2582
|
+
*/
|
|
2583
|
+
MediumCount: number
|
|
2584
|
+
|
|
2585
|
+
/**
|
|
2586
|
+
* 低危个数
|
|
2587
|
+
*/
|
|
2588
|
+
LowCount: number
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
/**
|
|
2592
|
+
* 资产管理jar包详情
|
|
2593
|
+
*/
|
|
2594
|
+
export interface AssetJarDetail {
|
|
2595
|
+
/**
|
|
2596
|
+
* 名称
|
|
2597
|
+
*/
|
|
2598
|
+
Name: string
|
|
2599
|
+
|
|
2600
|
+
/**
|
|
2601
|
+
* 类型:1应用程序,2系统类库,3Web服务自带库,8:其他,
|
|
2602
|
+
*/
|
|
2603
|
+
Type: number
|
|
2604
|
+
|
|
2605
|
+
/**
|
|
2606
|
+
* 是否可执行:0未知,1是,2否
|
|
2607
|
+
*/
|
|
2608
|
+
Status: number
|
|
2609
|
+
|
|
2610
|
+
/**
|
|
2611
|
+
* 版本
|
|
2612
|
+
*/
|
|
2613
|
+
Version: string
|
|
2614
|
+
|
|
2615
|
+
/**
|
|
2616
|
+
* 路径
|
|
2617
|
+
*/
|
|
2618
|
+
Path: string
|
|
2619
|
+
|
|
2620
|
+
/**
|
|
2621
|
+
* 服务器IP
|
|
2622
|
+
*/
|
|
2623
|
+
MachineIp: string
|
|
2624
|
+
|
|
2625
|
+
/**
|
|
2626
|
+
* 服务器名称
|
|
2627
|
+
*/
|
|
2628
|
+
MachineName: string
|
|
2629
|
+
|
|
2630
|
+
/**
|
|
2631
|
+
* 操作系统
|
|
2632
|
+
*/
|
|
2633
|
+
OsInfo: string
|
|
2634
|
+
|
|
2635
|
+
/**
|
|
2636
|
+
* 引用进程列表
|
|
2637
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2638
|
+
*/
|
|
2639
|
+
Process: Array<AssetAppProcessInfo>
|
|
2640
|
+
|
|
2641
|
+
/**
|
|
2642
|
+
* Jar包Md5
|
|
2643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2644
|
+
*/
|
|
2645
|
+
Md5: string
|
|
2646
|
+
|
|
2647
|
+
/**
|
|
2648
|
+
* 数据更新时间
|
|
2649
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2650
|
+
*/
|
|
2651
|
+
UpdateTime: string
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2243
2654
|
/**
|
|
2244
2655
|
* DescribeBanMode请求参数结构体
|
|
2245
2656
|
*/
|
|
@@ -2505,6 +2916,26 @@ export interface DescribeAttackLogsResponse {
|
|
|
2505
2916
|
RequestId?: string
|
|
2506
2917
|
}
|
|
2507
2918
|
|
|
2919
|
+
/**
|
|
2920
|
+
* DescribeBaselineHostIgnoreList返回参数结构体
|
|
2921
|
+
*/
|
|
2922
|
+
export interface DescribeBaselineHostIgnoreListResponse {
|
|
2923
|
+
/**
|
|
2924
|
+
* 总数
|
|
2925
|
+
*/
|
|
2926
|
+
Total: number
|
|
2927
|
+
|
|
2928
|
+
/**
|
|
2929
|
+
* 无
|
|
2930
|
+
*/
|
|
2931
|
+
List: Array<BaselineHost>
|
|
2932
|
+
|
|
2933
|
+
/**
|
|
2934
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2935
|
+
*/
|
|
2936
|
+
RequestId?: string
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2508
2939
|
/**
|
|
2509
2940
|
* DeleteMalwares返回参数结构体
|
|
2510
2941
|
*/
|
|
@@ -2815,6 +3246,16 @@ export interface DescribeAssetJarListResponse {
|
|
|
2815
3246
|
RequestId?: string
|
|
2816
3247
|
}
|
|
2817
3248
|
|
|
3249
|
+
/**
|
|
3250
|
+
* ExportBaselineItemDetectList返回参数结构体
|
|
3251
|
+
*/
|
|
3252
|
+
export interface ExportBaselineItemDetectListResponse {
|
|
3253
|
+
/**
|
|
3254
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3255
|
+
*/
|
|
3256
|
+
RequestId?: string
|
|
3257
|
+
}
|
|
3258
|
+
|
|
2818
3259
|
/**
|
|
2819
3260
|
* ExportMaliciousRequests请求参数结构体
|
|
2820
3261
|
*/
|
|
@@ -2964,66 +3405,38 @@ XTI - 威胁情报
|
|
|
2964
3405
|
export type DescribeWebPageProtectStatRequest = null
|
|
2965
3406
|
|
|
2966
3407
|
/**
|
|
2967
|
-
*
|
|
3408
|
+
* DescribeBaselineItemInfo返回参数结构体
|
|
2968
3409
|
*/
|
|
2969
|
-
export interface
|
|
2970
|
-
/**
|
|
2971
|
-
* 名称
|
|
2972
|
-
*/
|
|
2973
|
-
Name: string
|
|
2974
|
-
|
|
2975
|
-
/**
|
|
2976
|
-
* 类型:1应用程序,2系统类库,3Web服务自带库,8:其他,
|
|
2977
|
-
*/
|
|
2978
|
-
Type: number
|
|
2979
|
-
|
|
2980
|
-
/**
|
|
2981
|
-
* 是否可执行:0未知,1是,2否
|
|
2982
|
-
*/
|
|
2983
|
-
Status: number
|
|
2984
|
-
|
|
3410
|
+
export interface DescribeBaselineItemInfoResponse {
|
|
2985
3411
|
/**
|
|
2986
|
-
*
|
|
3412
|
+
* 结果列表
|
|
2987
3413
|
*/
|
|
2988
|
-
|
|
3414
|
+
List: Array<BaselineItemInfo>
|
|
2989
3415
|
|
|
2990
3416
|
/**
|
|
2991
|
-
*
|
|
3417
|
+
* 总条目数
|
|
2992
3418
|
*/
|
|
2993
|
-
|
|
3419
|
+
Total: number
|
|
2994
3420
|
|
|
2995
3421
|
/**
|
|
2996
|
-
*
|
|
3422
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2997
3423
|
*/
|
|
2998
|
-
|
|
3424
|
+
RequestId?: string
|
|
3425
|
+
}
|
|
2999
3426
|
|
|
3427
|
+
/**
|
|
3428
|
+
* DescribeBaselineRuleCategoryList返回参数结构体
|
|
3429
|
+
*/
|
|
3430
|
+
export interface DescribeBaselineRuleCategoryListResponse {
|
|
3000
3431
|
/**
|
|
3001
|
-
*
|
|
3432
|
+
* 无
|
|
3002
3433
|
*/
|
|
3003
|
-
|
|
3434
|
+
List: Array<BaselineCategory>
|
|
3004
3435
|
|
|
3005
3436
|
/**
|
|
3006
|
-
*
|
|
3437
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3007
3438
|
*/
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
/**
|
|
3011
|
-
* 引用进程列表
|
|
3012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3013
|
-
*/
|
|
3014
|
-
Process: Array<AssetAppProcessInfo>
|
|
3015
|
-
|
|
3016
|
-
/**
|
|
3017
|
-
* Jar包Md5
|
|
3018
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3019
|
-
*/
|
|
3020
|
-
Md5: string
|
|
3021
|
-
|
|
3022
|
-
/**
|
|
3023
|
-
* 数据更新时间
|
|
3024
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3025
|
-
*/
|
|
3026
|
-
UpdateTime: string
|
|
3439
|
+
RequestId?: string
|
|
3027
3440
|
}
|
|
3028
3441
|
|
|
3029
3442
|
/**
|
|
@@ -3077,7 +3490,17 @@ export interface ExportMalwaresResponse {
|
|
|
3077
3490
|
export type DescribeScanVulSettingRequest = null
|
|
3078
3491
|
|
|
3079
3492
|
/**
|
|
3080
|
-
*
|
|
3493
|
+
* DescribeServersAndRiskAndFirstInfo请求参数结构体
|
|
3494
|
+
*/
|
|
3495
|
+
export type DescribeServersAndRiskAndFirstInfoRequest = null
|
|
3496
|
+
|
|
3497
|
+
/**
|
|
3498
|
+
* DescribeMalwareRiskWarning请求参数结构体
|
|
3499
|
+
*/
|
|
3500
|
+
export type DescribeMalwareRiskWarningRequest = null
|
|
3501
|
+
|
|
3502
|
+
/**
|
|
3503
|
+
* StartBaselineDetect请求参数结构体
|
|
3081
3504
|
*/
|
|
3082
3505
|
export interface StartBaselineDetectRequest {
|
|
3083
3506
|
/**
|
|
@@ -3086,6 +3509,31 @@ export interface StartBaselineDetectRequest {
|
|
|
3086
3509
|
Param: BaselineDetectParam
|
|
3087
3510
|
}
|
|
3088
3511
|
|
|
3512
|
+
/**
|
|
3513
|
+
* 基线弱口令
|
|
3514
|
+
*/
|
|
3515
|
+
export interface BaselineWeakPassword {
|
|
3516
|
+
/**
|
|
3517
|
+
* 密码Id
|
|
3518
|
+
*/
|
|
3519
|
+
PasswordId: number
|
|
3520
|
+
|
|
3521
|
+
/**
|
|
3522
|
+
* 密码
|
|
3523
|
+
*/
|
|
3524
|
+
WeakPassword: string
|
|
3525
|
+
|
|
3526
|
+
/**
|
|
3527
|
+
* 创建时间
|
|
3528
|
+
*/
|
|
3529
|
+
CreateTime?: string
|
|
3530
|
+
|
|
3531
|
+
/**
|
|
3532
|
+
* 修改时间
|
|
3533
|
+
*/
|
|
3534
|
+
ModifyTime?: string
|
|
3535
|
+
}
|
|
3536
|
+
|
|
3089
3537
|
/**
|
|
3090
3538
|
* DescribeAssetPlanTaskList返回参数结构体
|
|
3091
3539
|
*/
|
|
@@ -3198,6 +3646,26 @@ export interface CancelIgnoreVulResponse {
|
|
|
3198
3646
|
RequestId?: string
|
|
3199
3647
|
}
|
|
3200
3648
|
|
|
3649
|
+
/**
|
|
3650
|
+
* FixBaselineDetect请求参数结构体
|
|
3651
|
+
*/
|
|
3652
|
+
export interface FixBaselineDetectRequest {
|
|
3653
|
+
/**
|
|
3654
|
+
* 主机Id
|
|
3655
|
+
*/
|
|
3656
|
+
HostId: string
|
|
3657
|
+
|
|
3658
|
+
/**
|
|
3659
|
+
* 项Id
|
|
3660
|
+
*/
|
|
3661
|
+
ItemId: number
|
|
3662
|
+
|
|
3663
|
+
/**
|
|
3664
|
+
* 修复内容
|
|
3665
|
+
*/
|
|
3666
|
+
Data?: Array<string>
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3201
3669
|
/**
|
|
3202
3670
|
* IgnoreImpactedHosts返回参数结构体
|
|
3203
3671
|
*/
|
|
@@ -3208,6 +3676,37 @@ export interface IgnoreImpactedHostsResponse {
|
|
|
3208
3676
|
RequestId?: string
|
|
3209
3677
|
}
|
|
3210
3678
|
|
|
3679
|
+
/**
|
|
3680
|
+
* DescribeBaselineRuleIgnoreList请求参数结构体
|
|
3681
|
+
*/
|
|
3682
|
+
export interface DescribeBaselineRuleIgnoreListRequest {
|
|
3683
|
+
/**
|
|
3684
|
+
* <li>RuleName - String - 是否必填:否 - 规则名称</li>
|
|
3685
|
+
<li>ItemId- int - 是否必填:否 - 检测项Id</li>
|
|
3686
|
+
*/
|
|
3687
|
+
Filters?: Array<Filter>
|
|
3688
|
+
|
|
3689
|
+
/**
|
|
3690
|
+
* 限制条数,默认10,最大100
|
|
3691
|
+
*/
|
|
3692
|
+
Limit?: number
|
|
3693
|
+
|
|
3694
|
+
/**
|
|
3695
|
+
* 偏移量,默认0
|
|
3696
|
+
*/
|
|
3697
|
+
Offset?: number
|
|
3698
|
+
|
|
3699
|
+
/**
|
|
3700
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
3701
|
+
*/
|
|
3702
|
+
Order?: string
|
|
3703
|
+
|
|
3704
|
+
/**
|
|
3705
|
+
* 可选排序列: [HostCount]
|
|
3706
|
+
*/
|
|
3707
|
+
By?: string
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3211
3710
|
/**
|
|
3212
3711
|
* DescribeAssetMachineDetail返回参数结构体
|
|
3213
3712
|
*/
|
|
@@ -3223,6 +3722,39 @@ export interface DescribeAssetMachineDetailResponse {
|
|
|
3223
3722
|
RequestId?: string
|
|
3224
3723
|
}
|
|
3225
3724
|
|
|
3725
|
+
/**
|
|
3726
|
+
* DescribeBaselineDownloadList请求参数结构体
|
|
3727
|
+
*/
|
|
3728
|
+
export interface DescribeBaselineDownloadListRequest {
|
|
3729
|
+
/**
|
|
3730
|
+
* <li>Status - int - 是否必填:否 - 0:导出中 1:已完成</li>
|
|
3731
|
+
<li>StartTime - string - 是否必填:否 - 开始时间</li>
|
|
3732
|
+
<li>EndTime - string - 是否必填:否 - 结束时间</li>
|
|
3733
|
+
<li>TaskName - string - 是否必填:否 - 任务名称</li>
|
|
3734
|
+
*/
|
|
3735
|
+
Filters?: Array<Filter>
|
|
3736
|
+
|
|
3737
|
+
/**
|
|
3738
|
+
* 限制条数,默认10,最大100
|
|
3739
|
+
*/
|
|
3740
|
+
Limit?: number
|
|
3741
|
+
|
|
3742
|
+
/**
|
|
3743
|
+
* 偏移量,默认0
|
|
3744
|
+
*/
|
|
3745
|
+
Offset?: number
|
|
3746
|
+
|
|
3747
|
+
/**
|
|
3748
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
3749
|
+
*/
|
|
3750
|
+
Order?: string
|
|
3751
|
+
|
|
3752
|
+
/**
|
|
3753
|
+
* 可选排序列: [StartTime|EndTime]
|
|
3754
|
+
*/
|
|
3755
|
+
By?: string
|
|
3756
|
+
}
|
|
3757
|
+
|
|
3226
3758
|
/**
|
|
3227
3759
|
* DescribeStrategyExist返回参数结构体
|
|
3228
3760
|
*/
|
|
@@ -3310,6 +3842,36 @@ export interface IgnoreImpactedHostsRequest {
|
|
|
3310
3842
|
Ids: Array<number>
|
|
3311
3843
|
}
|
|
3312
3844
|
|
|
3845
|
+
/**
|
|
3846
|
+
* DescribeBaselineWeakPasswordList请求参数结构体
|
|
3847
|
+
*/
|
|
3848
|
+
export interface DescribeBaselineWeakPasswordListRequest {
|
|
3849
|
+
/**
|
|
3850
|
+
* <li>WeakPassword - string - 是否必填:否 - 弱口令</li>
|
|
3851
|
+
*/
|
|
3852
|
+
Filters?: Array<Filter>
|
|
3853
|
+
|
|
3854
|
+
/**
|
|
3855
|
+
* 限制条数,默认10,最大100
|
|
3856
|
+
*/
|
|
3857
|
+
Limit?: number
|
|
3858
|
+
|
|
3859
|
+
/**
|
|
3860
|
+
* 偏移量,默认0
|
|
3861
|
+
*/
|
|
3862
|
+
Offset?: number
|
|
3863
|
+
|
|
3864
|
+
/**
|
|
3865
|
+
* 排序方式 [ASC:升序|DESC:降序]
|
|
3866
|
+
*/
|
|
3867
|
+
Order?: string
|
|
3868
|
+
|
|
3869
|
+
/**
|
|
3870
|
+
* 可选排序列 [CreateTime|ModifyTime]
|
|
3871
|
+
*/
|
|
3872
|
+
By?: string
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3313
3875
|
/**
|
|
3314
3876
|
* 资源管理账号基本信息
|
|
3315
3877
|
*/
|
|
@@ -3615,6 +4177,21 @@ export interface DeletePrivilegeRulesRequest {
|
|
|
3615
4177
|
Ids: Array<number>
|
|
3616
4178
|
}
|
|
3617
4179
|
|
|
4180
|
+
/**
|
|
4181
|
+
* ModifyBaselinePolicyState请求参数结构体
|
|
4182
|
+
*/
|
|
4183
|
+
export interface ModifyBaselinePolicyStateRequest {
|
|
4184
|
+
/**
|
|
4185
|
+
* 策略Id
|
|
4186
|
+
*/
|
|
4187
|
+
PolicyId: number
|
|
4188
|
+
|
|
4189
|
+
/**
|
|
4190
|
+
* 开启状态[1:开启|0:未开启]
|
|
4191
|
+
*/
|
|
4192
|
+
IsEnabled: number
|
|
4193
|
+
}
|
|
4194
|
+
|
|
3618
4195
|
/**
|
|
3619
4196
|
* DescribeLicenseBindSchedule返回参数结构体
|
|
3620
4197
|
*/
|
|
@@ -3747,114 +4324,23 @@ export interface DescribeReverseShellEventsRequest {
|
|
|
3747
4324
|
}
|
|
3748
4325
|
|
|
3749
4326
|
/**
|
|
3750
|
-
*
|
|
4327
|
+
* 基线规则或项的分类
|
|
3751
4328
|
*/
|
|
3752
|
-
export interface
|
|
3753
|
-
/**
|
|
3754
|
-
* ID 主键
|
|
3755
|
-
*/
|
|
3756
|
-
Id?: number
|
|
3757
|
-
|
|
3758
|
-
/**
|
|
3759
|
-
* 云镜UUID
|
|
3760
|
-
*/
|
|
3761
|
-
Uuid?: string
|
|
3762
|
-
|
|
3763
|
-
/**
|
|
3764
|
-
* 主机ID
|
|
3765
|
-
*/
|
|
3766
|
-
Quuid?: string
|
|
3767
|
-
|
|
3768
|
-
/**
|
|
3769
|
-
* 主机内网IP
|
|
3770
|
-
*/
|
|
3771
|
-
Hostip?: string
|
|
3772
|
-
|
|
3773
|
-
/**
|
|
3774
|
-
* 目标IP
|
|
3775
|
-
*/
|
|
3776
|
-
DstIp?: string
|
|
3777
|
-
|
|
3778
|
-
/**
|
|
3779
|
-
* 目标端口
|
|
3780
|
-
*/
|
|
3781
|
-
DstPort?: number
|
|
3782
|
-
|
|
3783
|
-
/**
|
|
3784
|
-
* 进程名
|
|
3785
|
-
*/
|
|
3786
|
-
ProcessName?: string
|
|
3787
|
-
|
|
3788
|
-
/**
|
|
3789
|
-
* 进程路径
|
|
3790
|
-
*/
|
|
3791
|
-
FullPath?: string
|
|
3792
|
-
|
|
3793
|
-
/**
|
|
3794
|
-
* 命令详情
|
|
3795
|
-
*/
|
|
3796
|
-
CmdLine?: string
|
|
3797
|
-
|
|
3798
|
-
/**
|
|
3799
|
-
* 执行用户
|
|
3800
|
-
*/
|
|
3801
|
-
UserName?: string
|
|
3802
|
-
|
|
3803
|
-
/**
|
|
3804
|
-
* 执行用户组
|
|
3805
|
-
*/
|
|
3806
|
-
UserGroup?: string
|
|
3807
|
-
|
|
4329
|
+
export interface BaselineCategory {
|
|
3808
4330
|
/**
|
|
3809
|
-
*
|
|
3810
|
-
*/
|
|
3811
|
-
ParentProcName?: string
|
|
3812
|
-
|
|
3813
|
-
/**
|
|
3814
|
-
* 父进程用户
|
|
3815
|
-
*/
|
|
3816
|
-
ParentProcUser?: string
|
|
3817
|
-
|
|
3818
|
-
/**
|
|
3819
|
-
* 父进程用户组
|
|
3820
|
-
*/
|
|
3821
|
-
ParentProcGroup?: string
|
|
3822
|
-
|
|
3823
|
-
/**
|
|
3824
|
-
* 父进程路径
|
|
4331
|
+
* 分类Id
|
|
3825
4332
|
*/
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
/**
|
|
3829
|
-
* 处理状态:0-待处理 2-白名单 3-已处理 4-已忽略
|
|
3830
|
-
*/
|
|
3831
|
-
Status?: number
|
|
3832
|
-
|
|
3833
|
-
/**
|
|
3834
|
-
* 产生时间
|
|
3835
|
-
*/
|
|
3836
|
-
CreateTime?: string
|
|
3837
|
-
|
|
3838
|
-
/**
|
|
3839
|
-
* 主机名
|
|
3840
|
-
*/
|
|
3841
|
-
MachineName?: string
|
|
4333
|
+
CategoryId: number
|
|
3842
4334
|
|
|
3843
4335
|
/**
|
|
3844
|
-
*
|
|
4336
|
+
* 分类名称
|
|
3845
4337
|
*/
|
|
3846
|
-
|
|
4338
|
+
CategoryName: string
|
|
3847
4339
|
|
|
3848
4340
|
/**
|
|
3849
|
-
*
|
|
4341
|
+
* 父分类ID,如果为0则没有父分类
|
|
3850
4342
|
*/
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
/**
|
|
3854
|
-
* 主机额外信息
|
|
3855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3856
|
-
*/
|
|
3857
|
-
MachineExtraInfo?: MachineExtraInfo
|
|
4343
|
+
ParentCategoryId: number
|
|
3858
4344
|
}
|
|
3859
4345
|
|
|
3860
4346
|
/**
|
|
@@ -3987,6 +4473,26 @@ export interface ExportIgnoreBaselineRuleResponse {
|
|
|
3987
4473
|
RequestId?: string
|
|
3988
4474
|
}
|
|
3989
4475
|
|
|
4476
|
+
/**
|
|
4477
|
+
* DescribeBaselineRuleList返回参数结构体
|
|
4478
|
+
*/
|
|
4479
|
+
export interface DescribeBaselineRuleListResponse {
|
|
4480
|
+
/**
|
|
4481
|
+
* 无
|
|
4482
|
+
*/
|
|
4483
|
+
List: Array<BaselineRule>
|
|
4484
|
+
|
|
4485
|
+
/**
|
|
4486
|
+
* 总数
|
|
4487
|
+
*/
|
|
4488
|
+
Total: number
|
|
4489
|
+
|
|
4490
|
+
/**
|
|
4491
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4492
|
+
*/
|
|
4493
|
+
RequestId?: string
|
|
4494
|
+
}
|
|
4495
|
+
|
|
3990
4496
|
/**
|
|
3991
4497
|
* 暴力破解判定规则列表
|
|
3992
4498
|
*/
|
|
@@ -4457,10 +4963,27 @@ export interface ModifyWarningSettingRequest {
|
|
|
4457
4963
|
}
|
|
4458
4964
|
|
|
4459
4965
|
/**
|
|
4460
|
-
*
|
|
4966
|
+
* DescribeBruteAttackList返回参数结构体
|
|
4461
4967
|
*/
|
|
4462
|
-
export
|
|
4463
|
-
|
|
4968
|
+
export interface DescribeBruteAttackListResponse {
|
|
4969
|
+
/**
|
|
4970
|
+
* 总数
|
|
4971
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4972
|
+
*/
|
|
4973
|
+
TotalCount: number
|
|
4974
|
+
|
|
4975
|
+
/**
|
|
4976
|
+
* 密码破解列表
|
|
4977
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4978
|
+
*/
|
|
4979
|
+
BruteAttackList: Array<BruteAttackInfo>
|
|
4980
|
+
|
|
4981
|
+
/**
|
|
4982
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4983
|
+
*/
|
|
4984
|
+
RequestId?: string
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4464
4987
|
/**
|
|
4465
4988
|
* DescribeAssetInfo请求参数结构体
|
|
4466
4989
|
*/
|
|
@@ -4601,6 +5124,16 @@ export interface DescribeSearchExportListRequest {
|
|
|
4601
5124
|
Query: string
|
|
4602
5125
|
}
|
|
4603
5126
|
|
|
5127
|
+
/**
|
|
5128
|
+
* DeleteBaselineWeakPassword请求参数结构体
|
|
5129
|
+
*/
|
|
5130
|
+
export interface DeleteBaselineWeakPasswordRequest {
|
|
5131
|
+
/**
|
|
5132
|
+
* 弱口令Id
|
|
5133
|
+
*/
|
|
5134
|
+
PasswordIds: Array<number>
|
|
5135
|
+
}
|
|
5136
|
+
|
|
4604
5137
|
/**
|
|
4605
5138
|
* ScanAsset请求参数结构体
|
|
4606
5139
|
*/
|
|
@@ -4668,6 +5201,16 @@ export interface StopBaselineDetectResponse {
|
|
|
4668
5201
|
RequestId?: string
|
|
4669
5202
|
}
|
|
4670
5203
|
|
|
5204
|
+
/**
|
|
5205
|
+
* DescribeBaselineItemRiskTop请求参数结构体
|
|
5206
|
+
*/
|
|
5207
|
+
export interface DescribeBaselineItemRiskTopRequest {
|
|
5208
|
+
/**
|
|
5209
|
+
* 策略ID
|
|
5210
|
+
*/
|
|
5211
|
+
PolicyId?: number
|
|
5212
|
+
}
|
|
5213
|
+
|
|
4671
5214
|
/**
|
|
4672
5215
|
* DeleteMaliciousRequests返回参数结构体
|
|
4673
5216
|
*/
|
|
@@ -4835,25 +5378,173 @@ export interface ScanVulRequest {
|
|
|
4835
5378
|
}
|
|
4836
5379
|
|
|
4837
5380
|
/**
|
|
4838
|
-
*
|
|
5381
|
+
* ExportBaselineRuleDetectList请求参数结构体
|
|
4839
5382
|
*/
|
|
4840
|
-
export interface
|
|
5383
|
+
export interface ExportBaselineRuleDetectListRequest {
|
|
4841
5384
|
/**
|
|
4842
|
-
*
|
|
4843
|
-
|
|
5385
|
+
* <li>RuleName - string - 是否必填:否 - 规则名称</i>
|
|
5386
|
+
<li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
|
5387
|
+
<li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
|
4844
5388
|
*/
|
|
4845
|
-
|
|
5389
|
+
Filters?: Array<Filter>
|
|
4846
5390
|
|
|
4847
5391
|
/**
|
|
4848
|
-
|
|
5392
|
+
* 0:过滤的结果导出;1:全部导出
|
|
5393
|
+
*/
|
|
5394
|
+
ExportAll?: number
|
|
5395
|
+
}
|
|
5396
|
+
|
|
5397
|
+
/**
|
|
5398
|
+
* 资源管理账号基本信息
|
|
5399
|
+
*/
|
|
5400
|
+
export interface AssetUserBaseInfo {
|
|
5401
|
+
/**
|
|
5402
|
+
* 主机内网IP
|
|
5403
|
+
*/
|
|
5404
|
+
MachineIp?: string
|
|
5405
|
+
|
|
5406
|
+
/**
|
|
5407
|
+
* 主机外网IP
|
|
5408
|
+
*/
|
|
5409
|
+
MachineWanIp?: string
|
|
5410
|
+
|
|
5411
|
+
/**
|
|
5412
|
+
* 主机名称
|
|
5413
|
+
*/
|
|
5414
|
+
MachineName?: string
|
|
5415
|
+
|
|
5416
|
+
/**
|
|
5417
|
+
* 操作系统信息
|
|
5418
|
+
*/
|
|
5419
|
+
OsInfo?: string
|
|
5420
|
+
|
|
5421
|
+
/**
|
|
5422
|
+
* 主机Uuid
|
|
5423
|
+
*/
|
|
5424
|
+
Uuid?: string
|
|
5425
|
+
|
|
5426
|
+
/**
|
|
5427
|
+
* 主机Quuid
|
|
5428
|
+
*/
|
|
5429
|
+
Quuid?: string
|
|
5430
|
+
|
|
5431
|
+
/**
|
|
5432
|
+
* 账号UID
|
|
5433
|
+
*/
|
|
5434
|
+
Uid?: string
|
|
5435
|
+
|
|
5436
|
+
/**
|
|
5437
|
+
* 账号GID
|
|
5438
|
+
*/
|
|
5439
|
+
Gid?: string
|
|
5440
|
+
|
|
5441
|
+
/**
|
|
5442
|
+
* 账号状态:0-禁用;1-启用
|
|
5443
|
+
*/
|
|
5444
|
+
Status?: number
|
|
5445
|
+
|
|
5446
|
+
/**
|
|
5447
|
+
* 是否有root权限:0-否;1是,999为空: 仅linux
|
|
5448
|
+
*/
|
|
5449
|
+
IsRoot?: number
|
|
5450
|
+
|
|
5451
|
+
/**
|
|
5452
|
+
* 登录方式:0-不可登录;1-只允许key登录;2只允许密码登录;3-允许key和密码,999为空,仅linux
|
|
5453
|
+
*/
|
|
5454
|
+
LoginType?: number
|
|
5455
|
+
|
|
5456
|
+
/**
|
|
5457
|
+
* 上次登录时间
|
|
5458
|
+
*/
|
|
5459
|
+
LastLoginTime?: string
|
|
5460
|
+
|
|
5461
|
+
/**
|
|
5462
|
+
* 账号名称
|
|
5463
|
+
*/
|
|
5464
|
+
Name?: string
|
|
5465
|
+
|
|
5466
|
+
/**
|
|
5467
|
+
* 主机业务组ID
|
|
5468
|
+
*/
|
|
5469
|
+
ProjectId?: number
|
|
5470
|
+
|
|
5471
|
+
/**
|
|
5472
|
+
* 账号类型:0访客用户,1标准用户,2管理员用户 ,999为空,仅windows
|
|
5473
|
+
*/
|
|
5474
|
+
UserType?: number
|
|
5475
|
+
|
|
5476
|
+
/**
|
|
5477
|
+
* 是否域账号:0否, 1是,2否, 999为空 仅windows
|
|
5478
|
+
*/
|
|
5479
|
+
IsDomain?: number
|
|
5480
|
+
|
|
5481
|
+
/**
|
|
5482
|
+
* 是否有sudo权限,1是,0否, 999为空, 仅linux
|
|
5483
|
+
*/
|
|
5484
|
+
IsSudo?: number
|
|
5485
|
+
|
|
5486
|
+
/**
|
|
5487
|
+
* 是否允许ssh登录,1是,0否, 999为空, 仅linux
|
|
5488
|
+
*/
|
|
5489
|
+
IsSshLogin?: number
|
|
5490
|
+
|
|
5491
|
+
/**
|
|
5492
|
+
* Home目录
|
|
5493
|
+
*/
|
|
5494
|
+
HomePath?: string
|
|
5495
|
+
|
|
5496
|
+
/**
|
|
5497
|
+
* Shell路径 仅linux
|
|
5498
|
+
*/
|
|
5499
|
+
Shell?: string
|
|
5500
|
+
|
|
5501
|
+
/**
|
|
5502
|
+
* 是否shell登录性,0不是;1是 仅linux
|
|
5503
|
+
*/
|
|
5504
|
+
ShellLoginStatus?: number
|
|
5505
|
+
|
|
5506
|
+
/**
|
|
5507
|
+
* 密码修改时间
|
|
5508
|
+
*/
|
|
5509
|
+
PasswordChangeTime?: string
|
|
5510
|
+
|
|
5511
|
+
/**
|
|
5512
|
+
* 密码过期时间 仅linux
|
|
5513
|
+
*/
|
|
5514
|
+
PasswordDueTime?: string
|
|
5515
|
+
|
|
5516
|
+
/**
|
|
5517
|
+
* 密码锁定时间:单位天, -1为永不锁定 999为空,仅linux
|
|
5518
|
+
*/
|
|
5519
|
+
PasswordLockDays?: number
|
|
5520
|
+
|
|
5521
|
+
/**
|
|
5522
|
+
* 密码状态:1正常 2即将过期 3已过期 4已锁定 999为空 仅linux
|
|
5523
|
+
*/
|
|
5524
|
+
PasswordStatus?: number
|
|
5525
|
+
|
|
5526
|
+
/**
|
|
5527
|
+
* 更新时间
|
|
4849
5528
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4850
5529
|
*/
|
|
4851
|
-
|
|
5530
|
+
UpdateTime?: string
|
|
4852
5531
|
|
|
4853
5532
|
/**
|
|
4854
|
-
*
|
|
5533
|
+
* 首次采集时间
|
|
4855
5534
|
*/
|
|
4856
|
-
|
|
5535
|
+
FirstTime?: string
|
|
5536
|
+
|
|
5537
|
+
/**
|
|
5538
|
+
* 是否新增[0:否|1:是]
|
|
5539
|
+
*/
|
|
5540
|
+
IsNew?: number
|
|
5541
|
+
|
|
5542
|
+
/**
|
|
5543
|
+
*
|
|
5544
|
+
附加信息
|
|
5545
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5546
|
+
*/
|
|
5547
|
+
MachineExtraInfo?: MachineExtraInfo
|
|
4857
5548
|
}
|
|
4858
5549
|
|
|
4859
5550
|
/**
|
|
@@ -4866,6 +5557,38 @@ export interface RecoverMalwaresRequest {
|
|
|
4866
5557
|
Ids: Array<number>
|
|
4867
5558
|
}
|
|
4868
5559
|
|
|
5560
|
+
/**
|
|
5561
|
+
* DescribeProtectNetList请求参数结构体
|
|
5562
|
+
*/
|
|
5563
|
+
export interface DescribeProtectNetListRequest {
|
|
5564
|
+
/**
|
|
5565
|
+
* 过滤条件。
|
|
5566
|
+
<li>Keyword- String - 是否必填:否 - 关键词过滤,</li>
|
|
5567
|
+
<li>Uuids - String - 是否必填:否 - 主机id过滤</li>
|
|
5568
|
+
*/
|
|
5569
|
+
Filters?: Array<Filters>
|
|
5570
|
+
|
|
5571
|
+
/**
|
|
5572
|
+
* 需要返回的数量,最大值为100
|
|
5573
|
+
*/
|
|
5574
|
+
Limit?: number
|
|
5575
|
+
|
|
5576
|
+
/**
|
|
5577
|
+
* 排序步长
|
|
5578
|
+
*/
|
|
5579
|
+
Offset?: number
|
|
5580
|
+
|
|
5581
|
+
/**
|
|
5582
|
+
* 排序方法
|
|
5583
|
+
*/
|
|
5584
|
+
Order?: string
|
|
5585
|
+
|
|
5586
|
+
/**
|
|
5587
|
+
* 排序字段 StartTime,EndTime
|
|
5588
|
+
*/
|
|
5589
|
+
By?: string
|
|
5590
|
+
}
|
|
5591
|
+
|
|
4869
5592
|
/**
|
|
4870
5593
|
* 标签相关服务器信息
|
|
4871
5594
|
*/
|
|
@@ -5162,51 +5885,18 @@ coremodule: 内核模块
|
|
|
5162
5885
|
}
|
|
5163
5886
|
|
|
5164
5887
|
/**
|
|
5165
|
-
*
|
|
5888
|
+
* 标准阻断模式规则
|
|
5166
5889
|
*/
|
|
5167
|
-
export interface
|
|
5168
|
-
/**
|
|
5169
|
-
* 服务器Uuid
|
|
5170
|
-
*/
|
|
5171
|
-
Uuid?: string
|
|
5172
|
-
|
|
5173
|
-
/**
|
|
5174
|
-
* 服务器Quuid
|
|
5175
|
-
*/
|
|
5176
|
-
Quuid?: string
|
|
5177
|
-
|
|
5178
|
-
/**
|
|
5179
|
-
* 过滤条件。
|
|
5180
|
-
<li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
|
5181
|
-
<li>Name- string - 是否必填:否 - 包名</li>
|
|
5182
|
-
<li>Type- uint - 是否必填:否 - 类型
|
|
5183
|
-
1: 应用程序
|
|
5184
|
-
2 : 系统类库
|
|
5185
|
-
3 : Web服务自带库
|
|
5186
|
-
4 : 其他依赖包</li>
|
|
5187
|
-
<li>Status- string - 是否必填:否 - 是否可执行:0否,1是</li>
|
|
5188
|
-
*/
|
|
5189
|
-
Filters?: Array<AssetFilters>
|
|
5190
|
-
|
|
5191
|
-
/**
|
|
5192
|
-
* 偏移量,默认为0。
|
|
5193
|
-
*/
|
|
5194
|
-
Offset?: number
|
|
5195
|
-
|
|
5196
|
-
/**
|
|
5197
|
-
* 需要返回的数量,默认为10,最大值为100
|
|
5198
|
-
*/
|
|
5199
|
-
Limit?: number
|
|
5200
|
-
|
|
5890
|
+
export interface BruteAttackRule {
|
|
5201
5891
|
/**
|
|
5202
|
-
*
|
|
5892
|
+
* 爆破事件发生的时间范围,单位:秒
|
|
5203
5893
|
*/
|
|
5204
|
-
|
|
5894
|
+
TimeRange: number
|
|
5205
5895
|
|
|
5206
5896
|
/**
|
|
5207
|
-
*
|
|
5897
|
+
* 爆破事件失败次数
|
|
5208
5898
|
*/
|
|
5209
|
-
|
|
5899
|
+
LoginFailTimes: number
|
|
5210
5900
|
}
|
|
5211
5901
|
|
|
5212
5902
|
/**
|
|
@@ -5817,6 +6507,21 @@ export interface CreateEmergencyVulScanResponse {
|
|
|
5817
6507
|
RequestId?: string
|
|
5818
6508
|
}
|
|
5819
6509
|
|
|
6510
|
+
/**
|
|
6511
|
+
* DescribeTagMachines返回参数结构体
|
|
6512
|
+
*/
|
|
6513
|
+
export interface DescribeTagMachinesResponse {
|
|
6514
|
+
/**
|
|
6515
|
+
* 列表数据
|
|
6516
|
+
*/
|
|
6517
|
+
List: Array<TagMachine>
|
|
6518
|
+
|
|
6519
|
+
/**
|
|
6520
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6521
|
+
*/
|
|
6522
|
+
RequestId?: string
|
|
6523
|
+
}
|
|
6524
|
+
|
|
5820
6525
|
/**
|
|
5821
6526
|
* DescribeAssetCoreModuleInfo请求参数结构体
|
|
5822
6527
|
*/
|
|
@@ -5853,13 +6558,20 @@ export interface DescribeIndexListResponse {
|
|
|
5853
6558
|
}
|
|
5854
6559
|
|
|
5855
6560
|
/**
|
|
5856
|
-
*
|
|
6561
|
+
* DescribeIgnoreHostAndItemConfig返回参数结构体
|
|
5857
6562
|
*/
|
|
5858
|
-
export interface
|
|
6563
|
+
export interface DescribeIgnoreHostAndItemConfigResponse {
|
|
6564
|
+
/**
|
|
6565
|
+
* 受影响检测项
|
|
6566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6567
|
+
*/
|
|
6568
|
+
ItemSet: Array<BaselineItemInfo>
|
|
6569
|
+
|
|
5859
6570
|
/**
|
|
5860
|
-
|
|
5861
|
-
|
|
5862
|
-
|
|
6571
|
+
* 受影响主机
|
|
6572
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6573
|
+
*/
|
|
6574
|
+
HostSet: Array<BaselineHost>
|
|
5863
6575
|
|
|
5864
6576
|
/**
|
|
5865
6577
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5957,6 +6669,16 @@ export interface DescribeBanWhiteListResponse {
|
|
|
5957
6669
|
RequestId?: string
|
|
5958
6670
|
}
|
|
5959
6671
|
|
|
6672
|
+
/**
|
|
6673
|
+
* ModifyBaselineRuleIgnore返回参数结构体
|
|
6674
|
+
*/
|
|
6675
|
+
export interface ModifyBaselineRuleIgnoreResponse {
|
|
6676
|
+
/**
|
|
6677
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6678
|
+
*/
|
|
6679
|
+
RequestId?: string
|
|
6680
|
+
}
|
|
6681
|
+
|
|
5960
6682
|
/**
|
|
5961
6683
|
* 专家服务-应急响应信息
|
|
5962
6684
|
*/
|
|
@@ -6057,6 +6779,7 @@ export interface SecurityDynamic {
|
|
|
6057
6779
|
<li>HIGH: 高危</li>
|
|
6058
6780
|
<li>NORMAL: 中危</li>
|
|
6059
6781
|
<li>LOW: 低危</li>
|
|
6782
|
+
<li>UNKNOWNED: 可疑</li>
|
|
6060
6783
|
*/
|
|
6061
6784
|
SecurityLevel: string
|
|
6062
6785
|
}
|
|
@@ -6138,156 +6861,23 @@ export interface DeleteTagsResponse {
|
|
|
6138
6861
|
export type DescribeSecurityEventsCntRequest = null
|
|
6139
6862
|
|
|
6140
6863
|
/**
|
|
6141
|
-
*
|
|
6864
|
+
* DescribeBaselineDownloadList返回参数结构体
|
|
6142
6865
|
*/
|
|
6143
|
-
export interface
|
|
6144
|
-
/**
|
|
6145
|
-
* 主机内网IP
|
|
6146
|
-
*/
|
|
6147
|
-
MachineIp?: string
|
|
6148
|
-
|
|
6149
|
-
/**
|
|
6150
|
-
* 主机外网IP
|
|
6151
|
-
*/
|
|
6152
|
-
MachineWanIp?: string
|
|
6153
|
-
|
|
6154
|
-
/**
|
|
6155
|
-
* 主机名称
|
|
6156
|
-
*/
|
|
6157
|
-
MachineName?: string
|
|
6158
|
-
|
|
6159
|
-
/**
|
|
6160
|
-
* 操作系统信息
|
|
6161
|
-
*/
|
|
6162
|
-
OsInfo?: string
|
|
6163
|
-
|
|
6164
|
-
/**
|
|
6165
|
-
* 主机Uuid
|
|
6166
|
-
*/
|
|
6167
|
-
Uuid?: string
|
|
6168
|
-
|
|
6169
|
-
/**
|
|
6170
|
-
* 主机Quuid
|
|
6171
|
-
*/
|
|
6172
|
-
Quuid?: string
|
|
6173
|
-
|
|
6174
|
-
/**
|
|
6175
|
-
* 账号UID
|
|
6176
|
-
*/
|
|
6177
|
-
Uid?: string
|
|
6178
|
-
|
|
6179
|
-
/**
|
|
6180
|
-
* 账号GID
|
|
6181
|
-
*/
|
|
6182
|
-
Gid?: string
|
|
6183
|
-
|
|
6184
|
-
/**
|
|
6185
|
-
* 账号状态:0-禁用;1-启用
|
|
6186
|
-
*/
|
|
6187
|
-
Status?: number
|
|
6188
|
-
|
|
6189
|
-
/**
|
|
6190
|
-
* 是否有root权限:0-否;1是,999为空: 仅linux
|
|
6191
|
-
*/
|
|
6192
|
-
IsRoot?: number
|
|
6193
|
-
|
|
6194
|
-
/**
|
|
6195
|
-
* 登录方式:0-不可登录;1-只允许key登录;2只允许密码登录;3-允许key和密码,999为空,仅linux
|
|
6196
|
-
*/
|
|
6197
|
-
LoginType?: number
|
|
6198
|
-
|
|
6199
|
-
/**
|
|
6200
|
-
* 上次登录时间
|
|
6201
|
-
*/
|
|
6202
|
-
LastLoginTime?: string
|
|
6203
|
-
|
|
6204
|
-
/**
|
|
6205
|
-
* 账号名称
|
|
6206
|
-
*/
|
|
6207
|
-
Name?: string
|
|
6208
|
-
|
|
6209
|
-
/**
|
|
6210
|
-
* 主机业务组ID
|
|
6211
|
-
*/
|
|
6212
|
-
ProjectId?: number
|
|
6213
|
-
|
|
6214
|
-
/**
|
|
6215
|
-
* 账号类型:0访客用户,1标准用户,2管理员用户 ,999为空,仅windows
|
|
6216
|
-
*/
|
|
6217
|
-
UserType?: number
|
|
6218
|
-
|
|
6219
|
-
/**
|
|
6220
|
-
* 是否域账号:0否, 1是,2否, 999为空 仅windows
|
|
6221
|
-
*/
|
|
6222
|
-
IsDomain?: number
|
|
6223
|
-
|
|
6224
|
-
/**
|
|
6225
|
-
* 是否有sudo权限,1是,0否, 999为空, 仅linux
|
|
6226
|
-
*/
|
|
6227
|
-
IsSudo?: number
|
|
6228
|
-
|
|
6229
|
-
/**
|
|
6230
|
-
* 是否允许ssh登录,1是,0否, 999为空, 仅linux
|
|
6231
|
-
*/
|
|
6232
|
-
IsSshLogin?: number
|
|
6233
|
-
|
|
6234
|
-
/**
|
|
6235
|
-
* Home目录
|
|
6236
|
-
*/
|
|
6237
|
-
HomePath?: string
|
|
6238
|
-
|
|
6239
|
-
/**
|
|
6240
|
-
* Shell路径 仅linux
|
|
6241
|
-
*/
|
|
6242
|
-
Shell?: string
|
|
6243
|
-
|
|
6244
|
-
/**
|
|
6245
|
-
* 是否shell登录性,0不是;1是 仅linux
|
|
6246
|
-
*/
|
|
6247
|
-
ShellLoginStatus?: number
|
|
6248
|
-
|
|
6249
|
-
/**
|
|
6250
|
-
* 密码修改时间
|
|
6251
|
-
*/
|
|
6252
|
-
PasswordChangeTime?: string
|
|
6253
|
-
|
|
6866
|
+
export interface DescribeBaselineDownloadListResponse {
|
|
6254
6867
|
/**
|
|
6255
|
-
*
|
|
6256
|
-
*/
|
|
6257
|
-
PasswordDueTime?: string
|
|
6258
|
-
|
|
6259
|
-
/**
|
|
6260
|
-
* 密码锁定时间:单位天, -1为永不锁定 999为空,仅linux
|
|
6261
|
-
*/
|
|
6262
|
-
PasswordLockDays?: number
|
|
6263
|
-
|
|
6264
|
-
/**
|
|
6265
|
-
* 密码状态:1正常 2即将过期 3已过期 4已锁定 999为空 仅linux
|
|
6868
|
+
* 无
|
|
6266
6869
|
*/
|
|
6267
|
-
|
|
6268
|
-
|
|
6269
|
-
/**
|
|
6270
|
-
* 更新时间
|
|
6271
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6272
|
-
*/
|
|
6273
|
-
UpdateTime?: string
|
|
6870
|
+
List: Array<BaselineDownload>
|
|
6274
6871
|
|
|
6275
6872
|
/**
|
|
6276
|
-
*
|
|
6873
|
+
* 总数
|
|
6277
6874
|
*/
|
|
6278
|
-
|
|
6875
|
+
Total: number
|
|
6279
6876
|
|
|
6280
6877
|
/**
|
|
6281
|
-
*
|
|
6878
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6282
6879
|
*/
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
/**
|
|
6286
|
-
*
|
|
6287
|
-
附加信息
|
|
6288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6289
|
-
*/
|
|
6290
|
-
MachineExtraInfo?: MachineExtraInfo
|
|
6880
|
+
RequestId?: string
|
|
6291
6881
|
}
|
|
6292
6882
|
|
|
6293
6883
|
/**
|
|
@@ -6429,9 +7019,19 @@ export interface DescribeVulCountByDatesResponse {
|
|
|
6429
7019
|
}
|
|
6430
7020
|
|
|
6431
7021
|
/**
|
|
6432
|
-
*
|
|
7022
|
+
* DescribeBaselineRuleCategoryList请求参数结构体
|
|
6433
7023
|
*/
|
|
6434
|
-
export type
|
|
7024
|
+
export type DescribeBaselineRuleCategoryListRequest = null
|
|
7025
|
+
|
|
7026
|
+
/**
|
|
7027
|
+
* ModifyBaselineRule返回参数结构体
|
|
7028
|
+
*/
|
|
7029
|
+
export interface ModifyBaselineRuleResponse {
|
|
7030
|
+
/**
|
|
7031
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7032
|
+
*/
|
|
7033
|
+
RequestId?: string
|
|
7034
|
+
}
|
|
6435
7035
|
|
|
6436
7036
|
/**
|
|
6437
7037
|
* DescribeIndexList请求参数结构体
|
|
@@ -6508,6 +7108,50 @@ export interface CreateProtectServerResponse {
|
|
|
6508
7108
|
RequestId?: string
|
|
6509
7109
|
}
|
|
6510
7110
|
|
|
7111
|
+
/**
|
|
7112
|
+
* DescribeBaselineItemInfo请求参数结构体
|
|
7113
|
+
*/
|
|
7114
|
+
export interface DescribeBaselineItemInfoRequest {
|
|
7115
|
+
/**
|
|
7116
|
+
* <li>ItemId - int64 - 是否必填:否 - 项Id</i>
|
|
7117
|
+
<li>PolicyId - int64 - 是否必填:否 - 项Id</i>
|
|
7118
|
+
<li>Level - int - 是否必填:否 - 风险等级</li>
|
|
7119
|
+
<li>ItemName - string - 是否必填:否 - 检测项名字</li>
|
|
7120
|
+
<li>RuleId - int - 是否必填:否 - 规则Id</li>
|
|
7121
|
+
*/
|
|
7122
|
+
Filters?: Array<Filter>
|
|
7123
|
+
|
|
7124
|
+
/**
|
|
7125
|
+
* 限制条数,默认10,最大100
|
|
7126
|
+
*/
|
|
7127
|
+
Limit?: number
|
|
7128
|
+
|
|
7129
|
+
/**
|
|
7130
|
+
* 偏移量,默认0
|
|
7131
|
+
*/
|
|
7132
|
+
Offset?: number
|
|
7133
|
+
|
|
7134
|
+
/**
|
|
7135
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
7136
|
+
*/
|
|
7137
|
+
Order?: string
|
|
7138
|
+
|
|
7139
|
+
/**
|
|
7140
|
+
* 可选排序列
|
|
7141
|
+
*/
|
|
7142
|
+
By?: string
|
|
7143
|
+
}
|
|
7144
|
+
|
|
7145
|
+
/**
|
|
7146
|
+
* DescribeBaselineHostRiskTop请求参数结构体
|
|
7147
|
+
*/
|
|
7148
|
+
export interface DescribeBaselineHostRiskTopRequest {
|
|
7149
|
+
/**
|
|
7150
|
+
* 策略ID
|
|
7151
|
+
*/
|
|
7152
|
+
PolicyId?: number
|
|
7153
|
+
}
|
|
7154
|
+
|
|
6511
7155
|
/**
|
|
6512
7156
|
* DescribeExpertServiceList请求参数结构体
|
|
6513
7157
|
*/
|
|
@@ -6883,6 +7527,46 @@ export interface DescribeVulListResponse {
|
|
|
6883
7527
|
RequestId?: string
|
|
6884
7528
|
}
|
|
6885
7529
|
|
|
7530
|
+
/**
|
|
7531
|
+
* 基线主机信息
|
|
7532
|
+
*/
|
|
7533
|
+
export interface BaselineHost {
|
|
7534
|
+
/**
|
|
7535
|
+
* 主机Id
|
|
7536
|
+
*/
|
|
7537
|
+
HostId?: string
|
|
7538
|
+
|
|
7539
|
+
/**
|
|
7540
|
+
* 主机名称
|
|
7541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7542
|
+
*/
|
|
7543
|
+
HostName?: string
|
|
7544
|
+
|
|
7545
|
+
/**
|
|
7546
|
+
* 主机标签
|
|
7547
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7548
|
+
*/
|
|
7549
|
+
HostTag?: string
|
|
7550
|
+
|
|
7551
|
+
/**
|
|
7552
|
+
* 内网Ip
|
|
7553
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7554
|
+
*/
|
|
7555
|
+
HostIp?: string
|
|
7556
|
+
|
|
7557
|
+
/**
|
|
7558
|
+
* 外网Ip
|
|
7559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7560
|
+
*/
|
|
7561
|
+
WanIp?: string
|
|
7562
|
+
|
|
7563
|
+
/**
|
|
7564
|
+
* 主机额外信息
|
|
7565
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7566
|
+
*/
|
|
7567
|
+
MachineExtraInfo?: MachineExtraInfo
|
|
7568
|
+
}
|
|
7569
|
+
|
|
6886
7570
|
/**
|
|
6887
7571
|
* DescribeUndoVulCounts请求参数结构体
|
|
6888
7572
|
*/
|
|
@@ -7101,29 +7785,49 @@ export interface ProtectMachineInfo {
|
|
|
7101
7785
|
HostName: string
|
|
7102
7786
|
|
|
7103
7787
|
/**
|
|
7104
|
-
* 机器IP
|
|
7788
|
+
* 机器IP
|
|
7789
|
+
*/
|
|
7790
|
+
HostIp: string
|
|
7791
|
+
|
|
7792
|
+
/**
|
|
7793
|
+
* 开通时间
|
|
7794
|
+
*/
|
|
7795
|
+
CreateTime: string
|
|
7796
|
+
|
|
7797
|
+
/**
|
|
7798
|
+
* 到期时间
|
|
7799
|
+
*/
|
|
7800
|
+
ExpireTime: string
|
|
7801
|
+
}
|
|
7802
|
+
|
|
7803
|
+
/**
|
|
7804
|
+
* DescribeBaselineFixList返回参数结构体
|
|
7805
|
+
*/
|
|
7806
|
+
export interface DescribeBaselineFixListResponse {
|
|
7807
|
+
/**
|
|
7808
|
+
* 无
|
|
7105
7809
|
*/
|
|
7106
|
-
|
|
7810
|
+
List: Array<BaselineFix>
|
|
7107
7811
|
|
|
7108
7812
|
/**
|
|
7109
|
-
*
|
|
7813
|
+
* 总数
|
|
7110
7814
|
*/
|
|
7111
|
-
|
|
7815
|
+
Total: number
|
|
7112
7816
|
|
|
7113
7817
|
/**
|
|
7114
|
-
*
|
|
7818
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7115
7819
|
*/
|
|
7116
|
-
|
|
7820
|
+
RequestId?: string
|
|
7117
7821
|
}
|
|
7118
7822
|
|
|
7119
7823
|
/**
|
|
7120
|
-
*
|
|
7824
|
+
* DeleteLoginWhiteList请求参数结构体
|
|
7121
7825
|
*/
|
|
7122
|
-
export interface
|
|
7826
|
+
export interface DeleteLoginWhiteListRequest {
|
|
7123
7827
|
/**
|
|
7124
|
-
*
|
|
7828
|
+
* 白名单ID (最大 100 条)
|
|
7125
7829
|
*/
|
|
7126
|
-
|
|
7830
|
+
Ids: Array<number>
|
|
7127
7831
|
}
|
|
7128
7832
|
|
|
7129
7833
|
/**
|
|
@@ -7185,6 +7889,41 @@ export interface ModifyLicenseUnBindsRequest {
|
|
|
7185
7889
|
QuuidList?: Array<string>
|
|
7186
7890
|
}
|
|
7187
7891
|
|
|
7892
|
+
/**
|
|
7893
|
+
* DescribeBaselineRuleDetectList请求参数结构体
|
|
7894
|
+
*/
|
|
7895
|
+
export interface DescribeBaselineRuleDetectListRequest {
|
|
7896
|
+
/**
|
|
7897
|
+
* <li>PolicyId - int64 - 是否必填:否 - 策略Id</li>
|
|
7898
|
+
<li>ItemId - int64 - 是否必填:否 - 策略Id</li>
|
|
7899
|
+
<li>RuleName - string - 是否必填:否 - 规则名称</li>
|
|
7900
|
+
<li>DetectStatus - int - 是否必填:否 - 检测状态</li>
|
|
7901
|
+
<li>StartTime - string - 是否必填:否 - 开时时间</li>
|
|
7902
|
+
<li>EndTime - string - 是否必填:否 - 结束时间</li>
|
|
7903
|
+
*/
|
|
7904
|
+
Filters?: Array<Filter>
|
|
7905
|
+
|
|
7906
|
+
/**
|
|
7907
|
+
* 限制条数,默认10,最大100
|
|
7908
|
+
*/
|
|
7909
|
+
Limit?: number
|
|
7910
|
+
|
|
7911
|
+
/**
|
|
7912
|
+
* 偏移量,默认0
|
|
7913
|
+
*/
|
|
7914
|
+
Offset?: number
|
|
7915
|
+
|
|
7916
|
+
/**
|
|
7917
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
7918
|
+
*/
|
|
7919
|
+
Order?: string
|
|
7920
|
+
|
|
7921
|
+
/**
|
|
7922
|
+
* 可选排序列: [HostCount|FirstTime|LastTime]
|
|
7923
|
+
*/
|
|
7924
|
+
By?: string
|
|
7925
|
+
}
|
|
7926
|
+
|
|
7188
7927
|
/**
|
|
7189
7928
|
* DeleteMaliciousRequests请求参数结构体
|
|
7190
7929
|
*/
|
|
@@ -7463,6 +8202,16 @@ export interface DescribeProcessStatisticsRequest {
|
|
|
7463
8202
|
Filters?: Array<Filter>
|
|
7464
8203
|
}
|
|
7465
8204
|
|
|
8205
|
+
/**
|
|
8206
|
+
* FixBaselineDetect返回参数结构体
|
|
8207
|
+
*/
|
|
8208
|
+
export interface FixBaselineDetectResponse {
|
|
8209
|
+
/**
|
|
8210
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8211
|
+
*/
|
|
8212
|
+
RequestId?: string
|
|
8213
|
+
}
|
|
8214
|
+
|
|
7466
8215
|
/**
|
|
7467
8216
|
* CreateScanMalwareSetting返回参数结构体
|
|
7468
8217
|
*/
|
|
@@ -7611,6 +8360,51 @@ export interface ExportTasksRequest {
|
|
|
7611
8360
|
TaskId: string
|
|
7612
8361
|
}
|
|
7613
8362
|
|
|
8363
|
+
/**
|
|
8364
|
+
* ModifyBaselineRuleIgnore请求参数结构体
|
|
8365
|
+
*/
|
|
8366
|
+
export interface ModifyBaselineRuleIgnoreRequest {
|
|
8367
|
+
/**
|
|
8368
|
+
* 规则名称
|
|
8369
|
+
*/
|
|
8370
|
+
RuleName: string
|
|
8371
|
+
|
|
8372
|
+
/**
|
|
8373
|
+
* 资产类型[0:所有专业版旗舰版|1:id|2:ip]
|
|
8374
|
+
*/
|
|
8375
|
+
AssetType: number
|
|
8376
|
+
|
|
8377
|
+
/**
|
|
8378
|
+
* 规则Id
|
|
8379
|
+
*/
|
|
8380
|
+
RuleId?: number
|
|
8381
|
+
|
|
8382
|
+
/**
|
|
8383
|
+
* 关联项
|
|
8384
|
+
*/
|
|
8385
|
+
ItemIds?: Array<number>
|
|
8386
|
+
|
|
8387
|
+
/**
|
|
8388
|
+
* 主机Id
|
|
8389
|
+
*/
|
|
8390
|
+
HostIds?: Array<string>
|
|
8391
|
+
|
|
8392
|
+
/**
|
|
8393
|
+
* 主机Ip
|
|
8394
|
+
*/
|
|
8395
|
+
HostIps?: Array<string>
|
|
8396
|
+
|
|
8397
|
+
/**
|
|
8398
|
+
* 是否全选过滤
|
|
8399
|
+
*/
|
|
8400
|
+
SelectAll?: number
|
|
8401
|
+
|
|
8402
|
+
/**
|
|
8403
|
+
* <li>ItemName - string - 是否必填:否 - 项名称</li>
|
|
8404
|
+
*/
|
|
8405
|
+
Filters?: Array<Filter>
|
|
8406
|
+
}
|
|
8407
|
+
|
|
7614
8408
|
/**
|
|
7615
8409
|
* DescribeAssetWebLocationInfo返回参数结构体
|
|
7616
8410
|
*/
|
|
@@ -7928,6 +8722,16 @@ export interface RecoverMalwaresResponse {
|
|
|
7928
8722
|
RequestId?: string
|
|
7929
8723
|
}
|
|
7930
8724
|
|
|
8725
|
+
/**
|
|
8726
|
+
* DeleteBaselineRule请求参数结构体
|
|
8727
|
+
*/
|
|
8728
|
+
export interface DeleteBaselineRuleRequest {
|
|
8729
|
+
/**
|
|
8730
|
+
* 规则Id
|
|
8731
|
+
*/
|
|
8732
|
+
RuleId: number
|
|
8733
|
+
}
|
|
8734
|
+
|
|
7931
8735
|
/**
|
|
7932
8736
|
* 地域信息
|
|
7933
8737
|
*/
|
|
@@ -7943,6 +8747,18 @@ export interface RegionSet {
|
|
|
7943
8747
|
ZoneSet: Array<ZoneInfo>
|
|
7944
8748
|
}
|
|
7945
8749
|
|
|
8750
|
+
/**
|
|
8751
|
+
* DescribeIgnoreHostAndItemConfig请求参数结构体
|
|
8752
|
+
*/
|
|
8753
|
+
export interface DescribeIgnoreHostAndItemConfigRequest {
|
|
8754
|
+
/**
|
|
8755
|
+
* <li>ItemId - int64 - 是否必填:否 - 项Id</i>
|
|
8756
|
+
<li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
|
8757
|
+
<li>HostId - string - 是否必填:否 - 主机Id</li>
|
|
8758
|
+
*/
|
|
8759
|
+
Filters?: Array<Filter>
|
|
8760
|
+
}
|
|
8761
|
+
|
|
7946
8762
|
/**
|
|
7947
8763
|
* DescribeReverseShellRules请求参数结构体
|
|
7948
8764
|
*/
|
|
@@ -7971,126 +8787,242 @@ export interface DescribeScanVulSettingResponse {
|
|
|
7971
8787
|
/**
|
|
7972
8788
|
* 漏洞类型:1: web-cms漏洞 2:应用漏洞 4: Linux软件漏洞 5: Windows系统漏洞
|
|
7973
8789
|
*/
|
|
7974
|
-
VulCategories
|
|
8790
|
+
VulCategories?: string
|
|
7975
8791
|
|
|
7976
8792
|
/**
|
|
7977
8793
|
* 危害等级:1-低危;2-中危;3-高危;4-严重 (多选英文逗号分隔)
|
|
7978
8794
|
*/
|
|
7979
|
-
VulLevels
|
|
8795
|
+
VulLevels?: string
|
|
8796
|
+
|
|
8797
|
+
/**
|
|
8798
|
+
* 定期检测间隔时间(天)
|
|
8799
|
+
*/
|
|
8800
|
+
TimerInterval?: number
|
|
8801
|
+
|
|
8802
|
+
/**
|
|
8803
|
+
* 定期检测时间,如:00:00
|
|
8804
|
+
*/
|
|
8805
|
+
TimerTime?: string
|
|
8806
|
+
|
|
8807
|
+
/**
|
|
8808
|
+
* 是否紧急漏洞:0-否 1-是
|
|
8809
|
+
*/
|
|
8810
|
+
VulEmergency?: number
|
|
8811
|
+
|
|
8812
|
+
/**
|
|
8813
|
+
* 开始时间
|
|
8814
|
+
*/
|
|
8815
|
+
StartTime?: string
|
|
8816
|
+
|
|
8817
|
+
/**
|
|
8818
|
+
* 是否开启
|
|
8819
|
+
*/
|
|
8820
|
+
EnableScan?: number
|
|
8821
|
+
|
|
8822
|
+
/**
|
|
8823
|
+
* 结束时间
|
|
8824
|
+
*/
|
|
8825
|
+
EndTime?: string
|
|
8826
|
+
|
|
8827
|
+
/**
|
|
8828
|
+
* 一键扫描超时时长,如:1800秒(s)
|
|
8829
|
+
*/
|
|
8830
|
+
ClickTimeout?: number
|
|
8831
|
+
|
|
8832
|
+
/**
|
|
8833
|
+
* 为空默认扫描全部专业版、旗舰版、普惠版主机,不为空只扫描选中主机
|
|
8834
|
+
*/
|
|
8835
|
+
Uuids?: Array<string>
|
|
8836
|
+
|
|
8837
|
+
/**
|
|
8838
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8839
|
+
*/
|
|
8840
|
+
RequestId?: string
|
|
8841
|
+
}
|
|
8842
|
+
|
|
8843
|
+
/**
|
|
8844
|
+
* 容器安全
|
|
8845
|
+
描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
8846
|
+
若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
|
8847
|
+
若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
|
|
8848
|
+
|
|
8849
|
+
*/
|
|
8850
|
+
export interface AssetFilters {
|
|
8851
|
+
/**
|
|
8852
|
+
* 过滤键的名称。
|
|
8853
|
+
*/
|
|
8854
|
+
Name: string
|
|
8855
|
+
|
|
8856
|
+
/**
|
|
8857
|
+
* 一个或者多个过滤值。
|
|
8858
|
+
*/
|
|
8859
|
+
Values: Array<string>
|
|
8860
|
+
|
|
8861
|
+
/**
|
|
8862
|
+
* 是否模糊查询
|
|
8863
|
+
*/
|
|
8864
|
+
ExactMatch?: boolean
|
|
8865
|
+
}
|
|
8866
|
+
|
|
8867
|
+
/**
|
|
8868
|
+
* DescribeAssetDatabaseInfo返回参数结构体
|
|
8869
|
+
*/
|
|
8870
|
+
export interface DescribeAssetDatabaseInfoResponse {
|
|
8871
|
+
/**
|
|
8872
|
+
* 数据库详情
|
|
8873
|
+
*/
|
|
8874
|
+
Database: AssetDatabaseDetail
|
|
8875
|
+
|
|
8876
|
+
/**
|
|
8877
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8878
|
+
*/
|
|
8879
|
+
RequestId?: string
|
|
8880
|
+
}
|
|
8881
|
+
|
|
8882
|
+
/**
|
|
8883
|
+
* 专家服务-月巡检报告
|
|
8884
|
+
*/
|
|
8885
|
+
export interface MonthInspectionReport {
|
|
8886
|
+
/**
|
|
8887
|
+
* 巡检报告名称
|
|
8888
|
+
*/
|
|
8889
|
+
ReportName: string
|
|
8890
|
+
|
|
8891
|
+
/**
|
|
8892
|
+
* 巡检报告下载地址
|
|
8893
|
+
*/
|
|
8894
|
+
ReportPath: string
|
|
8895
|
+
|
|
8896
|
+
/**
|
|
8897
|
+
* 巡检报告更新时间
|
|
8898
|
+
*/
|
|
8899
|
+
ModifyTime: string
|
|
8900
|
+
}
|
|
8901
|
+
|
|
8902
|
+
/**
|
|
8903
|
+
* SetBashEventsStatus请求参数结构体
|
|
8904
|
+
*/
|
|
8905
|
+
export interface SetBashEventsStatusRequest {
|
|
8906
|
+
/**
|
|
8907
|
+
* ID数组,最大100条。
|
|
8908
|
+
*/
|
|
8909
|
+
Ids: Array<number>
|
|
8910
|
+
|
|
8911
|
+
/**
|
|
8912
|
+
* 新状态(0-待处理 1-高危 2-正常)
|
|
8913
|
+
*/
|
|
8914
|
+
Status: number
|
|
8915
|
+
}
|
|
8916
|
+
|
|
8917
|
+
/**
|
|
8918
|
+
* 反弹Shell数据
|
|
8919
|
+
*/
|
|
8920
|
+
export interface ReverseShell {
|
|
8921
|
+
/**
|
|
8922
|
+
* ID 主键
|
|
8923
|
+
*/
|
|
8924
|
+
Id?: number
|
|
8925
|
+
|
|
8926
|
+
/**
|
|
8927
|
+
* 云镜UUID
|
|
8928
|
+
*/
|
|
8929
|
+
Uuid?: string
|
|
8930
|
+
|
|
8931
|
+
/**
|
|
8932
|
+
* 主机ID
|
|
8933
|
+
*/
|
|
8934
|
+
Quuid?: string
|
|
7980
8935
|
|
|
7981
8936
|
/**
|
|
7982
|
-
*
|
|
8937
|
+
* 主机内网IP
|
|
7983
8938
|
*/
|
|
7984
|
-
|
|
8939
|
+
Hostip?: string
|
|
7985
8940
|
|
|
7986
8941
|
/**
|
|
7987
|
-
*
|
|
8942
|
+
* 目标IP
|
|
7988
8943
|
*/
|
|
7989
|
-
|
|
8944
|
+
DstIp?: string
|
|
7990
8945
|
|
|
7991
8946
|
/**
|
|
7992
|
-
*
|
|
8947
|
+
* 目标端口
|
|
7993
8948
|
*/
|
|
7994
|
-
|
|
8949
|
+
DstPort?: number
|
|
7995
8950
|
|
|
7996
8951
|
/**
|
|
7997
|
-
*
|
|
8952
|
+
* 进程名
|
|
7998
8953
|
*/
|
|
7999
|
-
|
|
8954
|
+
ProcessName?: string
|
|
8000
8955
|
|
|
8001
8956
|
/**
|
|
8002
|
-
*
|
|
8957
|
+
* 进程路径
|
|
8003
8958
|
*/
|
|
8004
|
-
|
|
8959
|
+
FullPath?: string
|
|
8005
8960
|
|
|
8006
8961
|
/**
|
|
8007
|
-
*
|
|
8962
|
+
* 命令详情
|
|
8008
8963
|
*/
|
|
8009
|
-
|
|
8964
|
+
CmdLine?: string
|
|
8010
8965
|
|
|
8011
8966
|
/**
|
|
8012
|
-
*
|
|
8967
|
+
* 执行用户
|
|
8013
8968
|
*/
|
|
8014
|
-
|
|
8969
|
+
UserName?: string
|
|
8015
8970
|
|
|
8016
8971
|
/**
|
|
8017
|
-
*
|
|
8972
|
+
* 执行用户组
|
|
8018
8973
|
*/
|
|
8019
|
-
|
|
8020
|
-
}
|
|
8021
|
-
|
|
8022
|
-
/**
|
|
8023
|
-
* 容器安全
|
|
8024
|
-
描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
8025
|
-
若存在多个Filter时,Filter间的关系为逻辑与(AND)关系。
|
|
8026
|
-
若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。
|
|
8974
|
+
UserGroup?: string
|
|
8027
8975
|
|
|
8028
|
-
*/
|
|
8029
|
-
export interface AssetFilters {
|
|
8030
8976
|
/**
|
|
8031
|
-
*
|
|
8977
|
+
* 父进程名
|
|
8032
8978
|
*/
|
|
8033
|
-
|
|
8979
|
+
ParentProcName?: string
|
|
8034
8980
|
|
|
8035
8981
|
/**
|
|
8036
|
-
*
|
|
8982
|
+
* 父进程用户
|
|
8037
8983
|
*/
|
|
8038
|
-
|
|
8984
|
+
ParentProcUser?: string
|
|
8039
8985
|
|
|
8040
8986
|
/**
|
|
8041
|
-
*
|
|
8987
|
+
* 父进程用户组
|
|
8042
8988
|
*/
|
|
8043
|
-
|
|
8044
|
-
}
|
|
8989
|
+
ParentProcGroup?: string
|
|
8045
8990
|
|
|
8046
|
-
/**
|
|
8047
|
-
* DescribeAssetDatabaseInfo返回参数结构体
|
|
8048
|
-
*/
|
|
8049
|
-
export interface DescribeAssetDatabaseInfoResponse {
|
|
8050
8991
|
/**
|
|
8051
|
-
*
|
|
8992
|
+
* 父进程路径
|
|
8052
8993
|
*/
|
|
8053
|
-
|
|
8994
|
+
ParentProcPath?: string
|
|
8054
8995
|
|
|
8055
8996
|
/**
|
|
8056
|
-
*
|
|
8997
|
+
* 处理状态:0-待处理 2-白名单 3-已处理 4-已忽略
|
|
8057
8998
|
*/
|
|
8058
|
-
|
|
8059
|
-
}
|
|
8999
|
+
Status?: number
|
|
8060
9000
|
|
|
8061
|
-
/**
|
|
8062
|
-
* 专家服务-月巡检报告
|
|
8063
|
-
*/
|
|
8064
|
-
export interface MonthInspectionReport {
|
|
8065
9001
|
/**
|
|
8066
|
-
*
|
|
9002
|
+
* 产生时间
|
|
8067
9003
|
*/
|
|
8068
|
-
|
|
9004
|
+
CreateTime?: string
|
|
8069
9005
|
|
|
8070
9006
|
/**
|
|
8071
|
-
*
|
|
9007
|
+
* 主机名
|
|
8072
9008
|
*/
|
|
8073
|
-
|
|
9009
|
+
MachineName?: string
|
|
8074
9010
|
|
|
8075
9011
|
/**
|
|
8076
|
-
*
|
|
9012
|
+
* 进程树
|
|
8077
9013
|
*/
|
|
8078
|
-
|
|
8079
|
-
}
|
|
9014
|
+
ProcTree?: string
|
|
8080
9015
|
|
|
8081
|
-
/**
|
|
8082
|
-
* SetBashEventsStatus请求参数结构体
|
|
8083
|
-
*/
|
|
8084
|
-
export interface SetBashEventsStatusRequest {
|
|
8085
9016
|
/**
|
|
8086
|
-
*
|
|
9017
|
+
* 检测方法
|
|
8087
9018
|
*/
|
|
8088
|
-
|
|
9019
|
+
DetectBy?: number
|
|
8089
9020
|
|
|
8090
9021
|
/**
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
9022
|
+
* 主机额外信息
|
|
9023
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9024
|
+
*/
|
|
9025
|
+
MachineExtraInfo?: MachineExtraInfo
|
|
8094
9026
|
}
|
|
8095
9027
|
|
|
8096
9028
|
/**
|
|
@@ -8148,6 +9080,26 @@ export interface DescribeBaselineStrategyListRequest {
|
|
|
8148
9080
|
Enabled: number
|
|
8149
9081
|
}
|
|
8150
9082
|
|
|
9083
|
+
/**
|
|
9084
|
+
* DescribeBaselineRuleIgnoreList返回参数结构体
|
|
9085
|
+
*/
|
|
9086
|
+
export interface DescribeBaselineRuleIgnoreListResponse {
|
|
9087
|
+
/**
|
|
9088
|
+
* 总数
|
|
9089
|
+
*/
|
|
9090
|
+
Total: number
|
|
9091
|
+
|
|
9092
|
+
/**
|
|
9093
|
+
* 列表
|
|
9094
|
+
*/
|
|
9095
|
+
List: Array<BaselineRule>
|
|
9096
|
+
|
|
9097
|
+
/**
|
|
9098
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9099
|
+
*/
|
|
9100
|
+
RequestId?: string
|
|
9101
|
+
}
|
|
9102
|
+
|
|
8151
9103
|
/**
|
|
8152
9104
|
* 地域信息
|
|
8153
9105
|
*/
|
|
@@ -8179,40 +9131,91 @@ export interface RegionInfo {
|
|
|
8179
9131
|
}
|
|
8180
9132
|
|
|
8181
9133
|
/**
|
|
8182
|
-
*
|
|
9134
|
+
* 专家服务-旗舰护网信息
|
|
8183
9135
|
*/
|
|
8184
|
-
export interface
|
|
9136
|
+
export interface ProtectNetInfo {
|
|
8185
9137
|
/**
|
|
8186
|
-
*
|
|
9138
|
+
* 任务id
|
|
8187
9139
|
*/
|
|
8188
|
-
|
|
9140
|
+
TaskId: string
|
|
8189
9141
|
|
|
8190
9142
|
/**
|
|
8191
|
-
*
|
|
9143
|
+
* 护网天数
|
|
8192
9144
|
*/
|
|
8193
|
-
|
|
9145
|
+
ProtectDays: number
|
|
8194
9146
|
|
|
8195
9147
|
/**
|
|
8196
|
-
|
|
8197
|
-
|
|
8198
|
-
|
|
8199
|
-
|
|
8200
|
-
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
9148
|
+
* 护网状态 0未启动,1护网中,2已完成
|
|
9149
|
+
*/
|
|
9150
|
+
Status: number
|
|
9151
|
+
|
|
9152
|
+
/**
|
|
9153
|
+
* 护网启动时间
|
|
9154
|
+
*/
|
|
9155
|
+
StartTime: string
|
|
9156
|
+
|
|
9157
|
+
/**
|
|
9158
|
+
* 护网完成时间
|
|
9159
|
+
*/
|
|
9160
|
+
EndTime: string
|
|
9161
|
+
|
|
9162
|
+
/**
|
|
9163
|
+
* 报告下载地址
|
|
9164
|
+
*/
|
|
9165
|
+
ReportPath: string
|
|
9166
|
+
}
|
|
9167
|
+
|
|
9168
|
+
/**
|
|
9169
|
+
* 基线信息
|
|
9170
|
+
*/
|
|
9171
|
+
export interface BaselineItemInfo {
|
|
9172
|
+
/**
|
|
9173
|
+
* 基线检测项ID
|
|
9174
|
+
*/
|
|
9175
|
+
ItemId: number
|
|
9176
|
+
|
|
9177
|
+
/**
|
|
9178
|
+
* 检测项名字
|
|
9179
|
+
*/
|
|
9180
|
+
ItemName: string
|
|
9181
|
+
|
|
9182
|
+
/**
|
|
9183
|
+
* 检测项所属规则的ID
|
|
9184
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8204
9185
|
*/
|
|
8205
|
-
|
|
9186
|
+
RuleId: number
|
|
8206
9187
|
|
|
8207
9188
|
/**
|
|
8208
|
-
*
|
|
9189
|
+
* 检测项描述
|
|
8209
9190
|
*/
|
|
8210
|
-
|
|
9191
|
+
ItemDesc: string
|
|
8211
9192
|
|
|
8212
9193
|
/**
|
|
8213
|
-
*
|
|
9194
|
+
* 检测项的修复方法
|
|
8214
9195
|
*/
|
|
8215
|
-
|
|
9196
|
+
FixMethod: string
|
|
9197
|
+
|
|
9198
|
+
/**
|
|
9199
|
+
* 检测项所属规则名字
|
|
9200
|
+
*/
|
|
9201
|
+
RuleName: string
|
|
9202
|
+
|
|
9203
|
+
/**
|
|
9204
|
+
* 危险等级
|
|
9205
|
+
*/
|
|
9206
|
+
Level: number
|
|
9207
|
+
|
|
9208
|
+
/**
|
|
9209
|
+
* 系统规则ID
|
|
9210
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9211
|
+
*/
|
|
9212
|
+
SysRuleId: number
|
|
9213
|
+
|
|
9214
|
+
/**
|
|
9215
|
+
* 被引自定义规则信息
|
|
9216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9217
|
+
*/
|
|
9218
|
+
RelatedCustomRuleInfo: Array<BaselineCustomRuleIdName>
|
|
8216
9219
|
}
|
|
8217
9220
|
|
|
8218
9221
|
/**
|
|
@@ -8335,6 +9338,31 @@ export interface DescribeAssetUserInfoRequest {
|
|
|
8335
9338
|
Name: string
|
|
8336
9339
|
}
|
|
8337
9340
|
|
|
9341
|
+
/**
|
|
9342
|
+
* ExportBaselineItemList请求参数结构体
|
|
9343
|
+
*/
|
|
9344
|
+
export interface ExportBaselineItemListRequest {
|
|
9345
|
+
/**
|
|
9346
|
+
* <li>PolicyId - int64 - 是否必填:否 - 策略Id</li>
|
|
9347
|
+
<li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
|
9348
|
+
<li>HostId - string - 是否必填:否 - 主机Id</li>
|
|
9349
|
+
<li>HostName - string - 是否必填:否 - 主机名</li>
|
|
9350
|
+
<li>HostIp - string - 是否必填:否 - 主机IP</li>
|
|
9351
|
+
<li>ItemId - String - 是否必填:否 - 检测项Id</li>
|
|
9352
|
+
<li>ItemName - String - 是否必填:否 - 项名称</li>
|
|
9353
|
+
<li>DetectStatus - int - 是否必填:否 - 检测状态[0:未通过|3:通过|5:检测中]</li>
|
|
9354
|
+
<li>Level - int - 是否必填:否 - 风险等级</li>
|
|
9355
|
+
<li>StartTime - string - 是否必填:否 - 开时时间</li>
|
|
9356
|
+
<li>EndTime - string - 是否必填:否 - 结束时间</li>
|
|
9357
|
+
*/
|
|
9358
|
+
Filters?: Array<Filter>
|
|
9359
|
+
|
|
9360
|
+
/**
|
|
9361
|
+
* 0:过滤的结果导出;1:全部导出
|
|
9362
|
+
*/
|
|
9363
|
+
ExportAll?: number
|
|
9364
|
+
}
|
|
9365
|
+
|
|
8338
9366
|
/**
|
|
8339
9367
|
* DescribeProtectDirList请求参数结构体
|
|
8340
9368
|
*/
|
|
@@ -8703,13 +9731,13 @@ export interface DescribeScanTaskStatusRequest {
|
|
|
8703
9731
|
}
|
|
8704
9732
|
|
|
8705
9733
|
/**
|
|
8706
|
-
*
|
|
9734
|
+
* DeleteBaselineRule返回参数结构体
|
|
8707
9735
|
*/
|
|
8708
|
-
export interface
|
|
9736
|
+
export interface DeleteBaselineRuleResponse {
|
|
8709
9737
|
/**
|
|
8710
|
-
*
|
|
9738
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8711
9739
|
*/
|
|
8712
|
-
|
|
9740
|
+
RequestId?: string
|
|
8713
9741
|
}
|
|
8714
9742
|
|
|
8715
9743
|
/**
|
|
@@ -8853,35 +9881,18 @@ export interface DescribeScanTaskStatusResponse {
|
|
|
8853
9881
|
}
|
|
8854
9882
|
|
|
8855
9883
|
/**
|
|
8856
|
-
*
|
|
9884
|
+
* DescribeBaselineItemRiskTop返回参数结构体
|
|
8857
9885
|
*/
|
|
8858
|
-
export interface
|
|
8859
|
-
/**
|
|
8860
|
-
* 过滤条件。
|
|
8861
|
-
<li>Keyword- String - 是否必填:否 - 关键词过滤,</li>
|
|
8862
|
-
<li>Uuids - String - 是否必填:否 - 主机id过滤</li>
|
|
8863
|
-
*/
|
|
8864
|
-
Filters?: Array<Filters>
|
|
8865
|
-
|
|
8866
|
-
/**
|
|
8867
|
-
* 需要返回的数量,最大值为100
|
|
8868
|
-
*/
|
|
8869
|
-
Limit?: number
|
|
8870
|
-
|
|
8871
|
-
/**
|
|
8872
|
-
* 排序步长
|
|
8873
|
-
*/
|
|
8874
|
-
Offset?: number
|
|
8875
|
-
|
|
9886
|
+
export interface DescribeBaselineItemRiskTopResponse {
|
|
8876
9887
|
/**
|
|
8877
|
-
*
|
|
9888
|
+
* 结果数组
|
|
8878
9889
|
*/
|
|
8879
|
-
|
|
9890
|
+
RiskItemTop5: Array<BaselineRiskItem>
|
|
8880
9891
|
|
|
8881
9892
|
/**
|
|
8882
|
-
*
|
|
9893
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8883
9894
|
*/
|
|
8884
|
-
|
|
9895
|
+
RequestId?: string
|
|
8885
9896
|
}
|
|
8886
9897
|
|
|
8887
9898
|
/**
|
|
@@ -8960,9 +9971,29 @@ export interface OsName {
|
|
|
8960
9971
|
}
|
|
8961
9972
|
|
|
8962
9973
|
/**
|
|
8963
|
-
* DescribeWebPageServiceInfo请求参数结构体
|
|
9974
|
+
* DescribeWebPageServiceInfo请求参数结构体
|
|
9975
|
+
*/
|
|
9976
|
+
export type DescribeWebPageServiceInfoRequest = null
|
|
9977
|
+
|
|
9978
|
+
/**
|
|
9979
|
+
* ModifyBaselineWeakPassword请求参数结构体
|
|
9980
|
+
*/
|
|
9981
|
+
export interface ModifyBaselineWeakPasswordRequest {
|
|
9982
|
+
/**
|
|
9983
|
+
* 无
|
|
9984
|
+
*/
|
|
9985
|
+
Data: Array<BaselineWeakPassword>
|
|
9986
|
+
}
|
|
9987
|
+
|
|
9988
|
+
/**
|
|
9989
|
+
* ExportBaselineItemList返回参数结构体
|
|
8964
9990
|
*/
|
|
8965
|
-
export
|
|
9991
|
+
export interface ExportBaselineItemListResponse {
|
|
9992
|
+
/**
|
|
9993
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9994
|
+
*/
|
|
9995
|
+
RequestId?: string
|
|
9996
|
+
}
|
|
8966
9997
|
|
|
8967
9998
|
/**
|
|
8968
9999
|
* DescribeLogStorageStatistic返回参数结构体
|
|
@@ -8984,6 +10015,16 @@ export interface DescribeLogStorageStatisticResponse {
|
|
|
8984
10015
|
RequestId?: string
|
|
8985
10016
|
}
|
|
8986
10017
|
|
|
10018
|
+
/**
|
|
10019
|
+
* ModifyBaselinePolicyState返回参数结构体
|
|
10020
|
+
*/
|
|
10021
|
+
export interface ModifyBaselinePolicyStateResponse {
|
|
10022
|
+
/**
|
|
10023
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10024
|
+
*/
|
|
10025
|
+
RequestId?: string
|
|
10026
|
+
}
|
|
10027
|
+
|
|
8987
10028
|
/**
|
|
8988
10029
|
* 基线检测项
|
|
8989
10030
|
*/
|
|
@@ -9073,6 +10114,36 @@ export interface BaselineItemDetect {
|
|
|
9073
10114
|
NotPassedHostCount: number
|
|
9074
10115
|
}
|
|
9075
10116
|
|
|
10117
|
+
/**
|
|
10118
|
+
* DescribeBaselineFixList请求参数结构体
|
|
10119
|
+
*/
|
|
10120
|
+
export interface DescribeBaselineFixListRequest {
|
|
10121
|
+
/**
|
|
10122
|
+
* <li>ItemName- string - 是否必填:否 - 项名称</i>
|
|
10123
|
+
*/
|
|
10124
|
+
Filters?: Array<Filter>
|
|
10125
|
+
|
|
10126
|
+
/**
|
|
10127
|
+
* 限制条数,默认10,最大100
|
|
10128
|
+
*/
|
|
10129
|
+
Limit?: number
|
|
10130
|
+
|
|
10131
|
+
/**
|
|
10132
|
+
* 偏移量,默认0
|
|
10133
|
+
*/
|
|
10134
|
+
Offset?: number
|
|
10135
|
+
|
|
10136
|
+
/**
|
|
10137
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
10138
|
+
*/
|
|
10139
|
+
Order?: string
|
|
10140
|
+
|
|
10141
|
+
/**
|
|
10142
|
+
* 可选排序列: [CreateTime|MoifyTime|FixTime]
|
|
10143
|
+
*/
|
|
10144
|
+
By?: string
|
|
10145
|
+
}
|
|
10146
|
+
|
|
9076
10147
|
/**
|
|
9077
10148
|
* DescribeEmergencyResponseList请求参数结构体
|
|
9078
10149
|
*/
|
|
@@ -9307,6 +10378,25 @@ export interface ExportSecurityTrendsRequest {
|
|
|
9307
10378
|
EndDate: string
|
|
9308
10379
|
}
|
|
9309
10380
|
|
|
10381
|
+
/**
|
|
10382
|
+
* ExportBaselineHostDetectList请求参数结构体
|
|
10383
|
+
*/
|
|
10384
|
+
export interface ExportBaselineHostDetectListRequest {
|
|
10385
|
+
/**
|
|
10386
|
+
* <li>HostTag - string - 是否必填:否 - 主机标签</i>
|
|
10387
|
+
<li>ItemId - int64 - 是否必填:否 - 项Id</i>
|
|
10388
|
+
<li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
|
10389
|
+
<li>IsPassed - int - 是否必填:否 - 是否通过</li>
|
|
10390
|
+
<li>RiskTier - int - 是否必填:否 - 风险等级</li>
|
|
10391
|
+
*/
|
|
10392
|
+
Filters?: Array<Filter>
|
|
10393
|
+
|
|
10394
|
+
/**
|
|
10395
|
+
* 0:过滤的结果导出;1:全部导出
|
|
10396
|
+
*/
|
|
10397
|
+
ExportAll?: number
|
|
10398
|
+
}
|
|
10399
|
+
|
|
9310
10400
|
/**
|
|
9311
10401
|
* DescribeAssetDatabaseInfo请求参数结构体
|
|
9312
10402
|
*/
|
|
@@ -9388,6 +10478,26 @@ export interface ModifyMalwareTimingScanSettingsResponse {
|
|
|
9388
10478
|
RequestId?: string
|
|
9389
10479
|
}
|
|
9390
10480
|
|
|
10481
|
+
/**
|
|
10482
|
+
* DescribeBaselineWeakPasswordList返回参数结构体
|
|
10483
|
+
*/
|
|
10484
|
+
export interface DescribeBaselineWeakPasswordListResponse {
|
|
10485
|
+
/**
|
|
10486
|
+
* 总数
|
|
10487
|
+
*/
|
|
10488
|
+
Total: number
|
|
10489
|
+
|
|
10490
|
+
/**
|
|
10491
|
+
* 无
|
|
10492
|
+
*/
|
|
10493
|
+
List: Array<BaselineWeakPassword>
|
|
10494
|
+
|
|
10495
|
+
/**
|
|
10496
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10497
|
+
*/
|
|
10498
|
+
RequestId?: string
|
|
10499
|
+
}
|
|
10500
|
+
|
|
9391
10501
|
/**
|
|
9392
10502
|
* DeleteNonlocalLoginPlaces返回参数结构体
|
|
9393
10503
|
*/
|
|
@@ -9428,6 +10538,64 @@ export interface DeleteMalwareScanTaskResponse {
|
|
|
9428
10538
|
RequestId?: string
|
|
9429
10539
|
}
|
|
9430
10540
|
|
|
10541
|
+
/**
|
|
10542
|
+
* 基线规则
|
|
10543
|
+
*/
|
|
10544
|
+
export interface BaselineRule {
|
|
10545
|
+
/**
|
|
10546
|
+
* 规则名称,长度不超过128英文字符
|
|
10547
|
+
*/
|
|
10548
|
+
RuleName: string
|
|
10549
|
+
|
|
10550
|
+
/**
|
|
10551
|
+
* 规则Id
|
|
10552
|
+
*/
|
|
10553
|
+
RuleId?: number
|
|
10554
|
+
|
|
10555
|
+
/**
|
|
10556
|
+
* 规则类型 [0:系统|1:自定义]
|
|
10557
|
+
*/
|
|
10558
|
+
RuleType?: number
|
|
10559
|
+
|
|
10560
|
+
/**
|
|
10561
|
+
* 规则分类
|
|
10562
|
+
*/
|
|
10563
|
+
CategoryId?: number
|
|
10564
|
+
|
|
10565
|
+
/**
|
|
10566
|
+
* 规则描述
|
|
10567
|
+
*/
|
|
10568
|
+
RuleDesc?: string
|
|
10569
|
+
|
|
10570
|
+
/**
|
|
10571
|
+
* 主机数
|
|
10572
|
+
*/
|
|
10573
|
+
HostCount?: number
|
|
10574
|
+
|
|
10575
|
+
/**
|
|
10576
|
+
* 适配项ID列表
|
|
10577
|
+
*/
|
|
10578
|
+
Items?: Array<Item>
|
|
10579
|
+
|
|
10580
|
+
/**
|
|
10581
|
+
* [0:所有专业版旗舰版|1:hostID|2:ip]
|
|
10582
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10583
|
+
*/
|
|
10584
|
+
AssetType?: number
|
|
10585
|
+
|
|
10586
|
+
/**
|
|
10587
|
+
* 主机Id集合
|
|
10588
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10589
|
+
*/
|
|
10590
|
+
HostIds?: Array<string>
|
|
10591
|
+
|
|
10592
|
+
/**
|
|
10593
|
+
* 主机IP
|
|
10594
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10595
|
+
*/
|
|
10596
|
+
HostIps?: Array<string>
|
|
10597
|
+
}
|
|
10598
|
+
|
|
9431
10599
|
/**
|
|
9432
10600
|
* DescribeBaselineDetail返回参数结构体
|
|
9433
10601
|
*/
|
|
@@ -10053,9 +11221,44 @@ export interface AssetWebLocationBaseInfo {
|
|
|
10053
11221
|
}
|
|
10054
11222
|
|
|
10055
11223
|
/**
|
|
10056
|
-
*
|
|
11224
|
+
* DescribeBaselineItemList请求参数结构体
|
|
10057
11225
|
*/
|
|
10058
|
-
export
|
|
11226
|
+
export interface DescribeBaselineItemListRequest {
|
|
11227
|
+
/**
|
|
11228
|
+
* <li>PolicyId - int64 - 是否必填:否 - 策略Id</li>
|
|
11229
|
+
<li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
|
11230
|
+
<li>HostId - string - 是否必填:否 - 主机Id</li>
|
|
11231
|
+
<li>HostName - string - 是否必填:否 - 主机名</li>
|
|
11232
|
+
<li>HostIp - string - 是否必填:否 - 主机IP</li>
|
|
11233
|
+
<li>ItemId - String - 是否必填:否 - 检测项Id</li>
|
|
11234
|
+
<li>ItemName - String - 是否必填:否 - 项名称</li>
|
|
11235
|
+
<li>DetectStatus - int - 是否必填:否 - 检测状态[0:未通过|3:通过|5:检测中]</li>
|
|
11236
|
+
<li>Level - int - 是否必填:否 - 风险等级</li>
|
|
11237
|
+
<li>StartTime - string - 是否必填:否 - 开始时间</li>
|
|
11238
|
+
<li>EndTime - string - 是否必填:否 - 结束时间</li>
|
|
11239
|
+
*/
|
|
11240
|
+
Filters?: Array<Filter>
|
|
11241
|
+
|
|
11242
|
+
/**
|
|
11243
|
+
* 限制条数,默认10,最大100
|
|
11244
|
+
*/
|
|
11245
|
+
Limit?: number
|
|
11246
|
+
|
|
11247
|
+
/**
|
|
11248
|
+
* 偏移量,默认0
|
|
11249
|
+
*/
|
|
11250
|
+
Offset?: number
|
|
11251
|
+
|
|
11252
|
+
/**
|
|
11253
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
11254
|
+
*/
|
|
11255
|
+
Order?: string
|
|
11256
|
+
|
|
11257
|
+
/**
|
|
11258
|
+
* 可选排序列
|
|
11259
|
+
*/
|
|
11260
|
+
By?: string
|
|
11261
|
+
}
|
|
10059
11262
|
|
|
10060
11263
|
/**
|
|
10061
11264
|
* 高危命令规则
|
|
@@ -10412,6 +11615,32 @@ export interface LicenseBindDetail {
|
|
|
10412
11615
|
MachineExtraInfo?: MachineExtraInfo
|
|
10413
11616
|
}
|
|
10414
11617
|
|
|
11618
|
+
/**
|
|
11619
|
+
* 基线检测项top5
|
|
11620
|
+
*/
|
|
11621
|
+
export interface BaselineRiskItem {
|
|
11622
|
+
/**
|
|
11623
|
+
* 检测项Id
|
|
11624
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11625
|
+
*/
|
|
11626
|
+
ItemId: number
|
|
11627
|
+
|
|
11628
|
+
/**
|
|
11629
|
+
* 检测项名字
|
|
11630
|
+
*/
|
|
11631
|
+
ItemName: string
|
|
11632
|
+
|
|
11633
|
+
/**
|
|
11634
|
+
* 风险等级
|
|
11635
|
+
*/
|
|
11636
|
+
Level: number
|
|
11637
|
+
|
|
11638
|
+
/**
|
|
11639
|
+
* 影响服务器数
|
|
11640
|
+
*/
|
|
11641
|
+
HostCount: number
|
|
11642
|
+
}
|
|
11643
|
+
|
|
10415
11644
|
/**
|
|
10416
11645
|
* 资源管理Web服务列表信息
|
|
10417
11646
|
*/
|
|
@@ -10526,13 +11755,18 @@ export interface AssetWebServiceBaseInfo {
|
|
|
10526
11755
|
}
|
|
10527
11756
|
|
|
10528
11757
|
/**
|
|
10529
|
-
*
|
|
11758
|
+
* DescribeMachineInfo请求参数结构体
|
|
10530
11759
|
*/
|
|
10531
|
-
export interface
|
|
11760
|
+
export interface DescribeMachineInfoRequest {
|
|
10532
11761
|
/**
|
|
10533
|
-
*
|
|
11762
|
+
* 云镜客户端唯一Uuid。
|
|
10534
11763
|
*/
|
|
10535
|
-
|
|
11764
|
+
Uuid?: string
|
|
11765
|
+
|
|
11766
|
+
/**
|
|
11767
|
+
* Quuid , Uuid 必填一项
|
|
11768
|
+
*/
|
|
11769
|
+
Quuid?: string
|
|
10536
11770
|
}
|
|
10537
11771
|
|
|
10538
11772
|
/**
|
|
@@ -10963,6 +12197,16 @@ export interface VulDetailInfo {
|
|
|
10963
12197
|
PublishTime: string
|
|
10964
12198
|
}
|
|
10965
12199
|
|
|
12200
|
+
/**
|
|
12201
|
+
* ExportBaselineHostDetectList返回参数结构体
|
|
12202
|
+
*/
|
|
12203
|
+
export interface ExportBaselineHostDetectListResponse {
|
|
12204
|
+
/**
|
|
12205
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12206
|
+
*/
|
|
12207
|
+
RequestId?: string
|
|
12208
|
+
}
|
|
12209
|
+
|
|
10966
12210
|
/**
|
|
10967
12211
|
* DescribeAssetJarInfo请求参数结构体
|
|
10968
12212
|
*/
|
|
@@ -11090,16 +12334,6 @@ export interface EventStat {
|
|
|
11090
12334
|
MachineAffectNum: number
|
|
11091
12335
|
}
|
|
11092
12336
|
|
|
11093
|
-
/**
|
|
11094
|
-
* DeleteLoginWhiteList请求参数结构体
|
|
11095
|
-
*/
|
|
11096
|
-
export interface DeleteLoginWhiteListRequest {
|
|
11097
|
-
/**
|
|
11098
|
-
* 白名单ID (最大 100 条)
|
|
11099
|
-
*/
|
|
11100
|
-
Ids: Array<number>
|
|
11101
|
-
}
|
|
11102
|
-
|
|
11103
12337
|
/**
|
|
11104
12338
|
* DeleteWebPageEventLog返回参数结构体
|
|
11105
12339
|
*/
|
|
@@ -11192,13 +12426,13 @@ export interface DescribeProcessStatisticsResponse {
|
|
|
11192
12426
|
}
|
|
11193
12427
|
|
|
11194
12428
|
/**
|
|
11195
|
-
*
|
|
12429
|
+
* DeleteBaselineRuleIgnore请求参数结构体
|
|
11196
12430
|
*/
|
|
11197
|
-
export interface
|
|
12431
|
+
export interface DeleteBaselineRuleIgnoreRequest {
|
|
11198
12432
|
/**
|
|
11199
|
-
*
|
|
12433
|
+
* 规则Id
|
|
11200
12434
|
*/
|
|
11201
|
-
|
|
12435
|
+
RuleIds: Array<number>
|
|
11202
12436
|
}
|
|
11203
12437
|
|
|
11204
12438
|
/**
|
|
@@ -11279,6 +12513,16 @@ export interface BaselineEventLevelInfo {
|
|
|
11279
12513
|
EventCount: number
|
|
11280
12514
|
}
|
|
11281
12515
|
|
|
12516
|
+
/**
|
|
12517
|
+
* DescribeMalwareFile请求参数结构体
|
|
12518
|
+
*/
|
|
12519
|
+
export interface DescribeMalwareFileRequest {
|
|
12520
|
+
/**
|
|
12521
|
+
* 木马记录ID
|
|
12522
|
+
*/
|
|
12523
|
+
Id: number
|
|
12524
|
+
}
|
|
12525
|
+
|
|
11282
12526
|
/**
|
|
11283
12527
|
* DescribeLoginWhiteCombinedList请求参数结构体
|
|
11284
12528
|
*/
|
|
@@ -11584,14 +12828,55 @@ export interface DescribeAssetAppListResponse {
|
|
|
11584
12828
|
Apps: Array<AssetAppBaseInfo>
|
|
11585
12829
|
|
|
11586
12830
|
/**
|
|
11587
|
-
* 总数量
|
|
12831
|
+
* 总数量
|
|
12832
|
+
*/
|
|
12833
|
+
Total: number
|
|
12834
|
+
|
|
12835
|
+
/**
|
|
12836
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12837
|
+
*/
|
|
12838
|
+
RequestId?: string
|
|
12839
|
+
}
|
|
12840
|
+
|
|
12841
|
+
/**
|
|
12842
|
+
* 基线密码修复
|
|
12843
|
+
*/
|
|
12844
|
+
export interface BaselineFix {
|
|
12845
|
+
/**
|
|
12846
|
+
* 修复项名称
|
|
12847
|
+
*/
|
|
12848
|
+
ItemName?: string
|
|
12849
|
+
|
|
12850
|
+
/**
|
|
12851
|
+
* 主机Ip
|
|
12852
|
+
*/
|
|
12853
|
+
HostIp?: string
|
|
12854
|
+
|
|
12855
|
+
/**
|
|
12856
|
+
* 首次检测时间
|
|
12857
|
+
*/
|
|
12858
|
+
CreateTime?: string
|
|
12859
|
+
|
|
12860
|
+
/**
|
|
12861
|
+
* 最后检测时间
|
|
12862
|
+
*/
|
|
12863
|
+
ModifyTime?: string
|
|
12864
|
+
|
|
12865
|
+
/**
|
|
12866
|
+
* 修复时间
|
|
12867
|
+
*/
|
|
12868
|
+
FixTime?: string
|
|
12869
|
+
|
|
12870
|
+
/**
|
|
12871
|
+
* 基线检测项结果ID
|
|
11588
12872
|
*/
|
|
11589
|
-
|
|
12873
|
+
Id?: number
|
|
11590
12874
|
|
|
11591
12875
|
/**
|
|
11592
|
-
|
|
11593
|
-
|
|
11594
|
-
|
|
12876
|
+
* 主机额外信息
|
|
12877
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12878
|
+
*/
|
|
12879
|
+
MachineExtraInfo?: MachineExtraInfo
|
|
11595
12880
|
}
|
|
11596
12881
|
|
|
11597
12882
|
/**
|
|
@@ -11981,6 +13266,21 @@ export interface PrivilegeRule {
|
|
|
11981
13266
|
Hostip: string
|
|
11982
13267
|
}
|
|
11983
13268
|
|
|
13269
|
+
/**
|
|
13270
|
+
* 项
|
|
13271
|
+
*/
|
|
13272
|
+
export interface Item {
|
|
13273
|
+
/**
|
|
13274
|
+
* Id
|
|
13275
|
+
*/
|
|
13276
|
+
ItemId: number
|
|
13277
|
+
|
|
13278
|
+
/**
|
|
13279
|
+
* 名称
|
|
13280
|
+
*/
|
|
13281
|
+
ItemName?: string
|
|
13282
|
+
}
|
|
13283
|
+
|
|
11984
13284
|
/**
|
|
11985
13285
|
* ExportVulDetectionExcel请求参数结构体
|
|
11986
13286
|
*/
|
|
@@ -12032,13 +13332,38 @@ export interface DescribeProtectDirRelatedServerResponse {
|
|
|
12032
13332
|
}
|
|
12033
13333
|
|
|
12034
13334
|
/**
|
|
12035
|
-
*
|
|
13335
|
+
* DescribeBaselineItemIgnoreList请求参数结构体
|
|
12036
13336
|
*/
|
|
12037
|
-
export interface
|
|
13337
|
+
export interface DescribeBaselineItemIgnoreListRequest {
|
|
12038
13338
|
/**
|
|
12039
|
-
*
|
|
13339
|
+
* 忽略规则ID
|
|
12040
13340
|
*/
|
|
12041
|
-
|
|
13341
|
+
RuleID: number
|
|
13342
|
+
|
|
13343
|
+
/**
|
|
13344
|
+
* 限制条数,默认10,最大100
|
|
13345
|
+
*/
|
|
13346
|
+
Limit?: number
|
|
13347
|
+
|
|
13348
|
+
/**
|
|
13349
|
+
* 请求偏移默认0
|
|
13350
|
+
*/
|
|
13351
|
+
Offset?: number
|
|
13352
|
+
|
|
13353
|
+
/**
|
|
13354
|
+
* <li>CatgoryId - int64 - 是否必填:否 - 规则Id</i>
|
|
13355
|
+
*/
|
|
13356
|
+
Filters?: Array<Filter>
|
|
13357
|
+
|
|
13358
|
+
/**
|
|
13359
|
+
* 排序方式 [ASC:升序|DESC:降序]
|
|
13360
|
+
*/
|
|
13361
|
+
Order?: string
|
|
13362
|
+
|
|
13363
|
+
/**
|
|
13364
|
+
* 可选排序列 [ID]
|
|
13365
|
+
*/
|
|
13366
|
+
By?: string
|
|
12042
13367
|
}
|
|
12043
13368
|
|
|
12044
13369
|
/**
|
|
@@ -12871,6 +14196,16 @@ export interface DescribeAssetMachineListRequest {
|
|
|
12871
14196
|
By?: string
|
|
12872
14197
|
}
|
|
12873
14198
|
|
|
14199
|
+
/**
|
|
14200
|
+
* ExportBaselineRuleDetectList返回参数结构体
|
|
14201
|
+
*/
|
|
14202
|
+
export interface ExportBaselineRuleDetectListResponse {
|
|
14203
|
+
/**
|
|
14204
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
14205
|
+
*/
|
|
14206
|
+
RequestId?: string
|
|
14207
|
+
}
|
|
14208
|
+
|
|
12874
14209
|
/**
|
|
12875
14210
|
* CreateSearchTemplate返回参数结构体
|
|
12876
14211
|
*/
|
|
@@ -12886,6 +14221,21 @@ export interface CreateSearchTemplateResponse {
|
|
|
12886
14221
|
RequestId?: string
|
|
12887
14222
|
}
|
|
12888
14223
|
|
|
14224
|
+
/**
|
|
14225
|
+
* ExportBaselineWeakPasswordList请求参数结构体
|
|
14226
|
+
*/
|
|
14227
|
+
export interface ExportBaselineWeakPasswordListRequest {
|
|
14228
|
+
/**
|
|
14229
|
+
* <li>WeakPassword - string - 是否必填:否 - 弱口令</li>
|
|
14230
|
+
*/
|
|
14231
|
+
Filters?: Array<Filter>
|
|
14232
|
+
|
|
14233
|
+
/**
|
|
14234
|
+
* 0:过滤的结果导出;1:全部导出
|
|
14235
|
+
*/
|
|
14236
|
+
ExportAll?: number
|
|
14237
|
+
}
|
|
14238
|
+
|
|
12889
14239
|
/**
|
|
12890
14240
|
* DescribeAssetDatabaseList返回参数结构体
|
|
12891
14241
|
*/
|
|
@@ -13719,6 +15069,74 @@ export interface DescribeHistoryAccountsResponse {
|
|
|
13719
15069
|
RequestId?: string
|
|
13720
15070
|
}
|
|
13721
15071
|
|
|
15072
|
+
/**
|
|
15073
|
+
* 基线自定规则ID和名字
|
|
15074
|
+
*/
|
|
15075
|
+
export interface BaselineCustomRuleIdName {
|
|
15076
|
+
/**
|
|
15077
|
+
* 自定义规则ID
|
|
15078
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15079
|
+
*/
|
|
15080
|
+
RuleId: number
|
|
15081
|
+
|
|
15082
|
+
/**
|
|
15083
|
+
* 自定义规则名字
|
|
15084
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15085
|
+
*/
|
|
15086
|
+
RuleName: string
|
|
15087
|
+
}
|
|
15088
|
+
|
|
15089
|
+
/**
|
|
15090
|
+
* 基线规则检测
|
|
15091
|
+
*/
|
|
15092
|
+
export interface BaselineRuleDetect {
|
|
15093
|
+
/**
|
|
15094
|
+
* 规则Id
|
|
15095
|
+
*/
|
|
15096
|
+
RuleId: number
|
|
15097
|
+
|
|
15098
|
+
/**
|
|
15099
|
+
* 规则名称
|
|
15100
|
+
*/
|
|
15101
|
+
RuleName: string
|
|
15102
|
+
|
|
15103
|
+
/**
|
|
15104
|
+
* 规则描述
|
|
15105
|
+
*/
|
|
15106
|
+
RuleDesc: string
|
|
15107
|
+
|
|
15108
|
+
/**
|
|
15109
|
+
* 关联项数
|
|
15110
|
+
*/
|
|
15111
|
+
ItemCount: number
|
|
15112
|
+
|
|
15113
|
+
/**
|
|
15114
|
+
* 关联主机数
|
|
15115
|
+
*/
|
|
15116
|
+
HostCount: number
|
|
15117
|
+
|
|
15118
|
+
/**
|
|
15119
|
+
* 首次检测时间
|
|
15120
|
+
*/
|
|
15121
|
+
FirstTime: string
|
|
15122
|
+
|
|
15123
|
+
/**
|
|
15124
|
+
* string
|
|
15125
|
+
*/
|
|
15126
|
+
LastTime: string
|
|
15127
|
+
|
|
15128
|
+
/**
|
|
15129
|
+
* 0:未通过 1:忽略 3:通过 5:检测中
|
|
15130
|
+
*/
|
|
15131
|
+
DetectStatus: number
|
|
15132
|
+
|
|
15133
|
+
/**
|
|
15134
|
+
* ItemID集合
|
|
15135
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15136
|
+
*/
|
|
15137
|
+
ItemIds: Array<number>
|
|
15138
|
+
}
|
|
15139
|
+
|
|
13722
15140
|
/**
|
|
13723
15141
|
* DescribeLoginWhiteList请求参数结构体
|
|
13724
15142
|
*/
|
|
@@ -13938,6 +15356,16 @@ export interface DescribeLicenseGeneralResponse {
|
|
|
13938
15356
|
RequestId?: string
|
|
13939
15357
|
}
|
|
13940
15358
|
|
|
15359
|
+
/**
|
|
15360
|
+
* ExportBaselineWeakPasswordList返回参数结构体
|
|
15361
|
+
*/
|
|
15362
|
+
export interface ExportBaselineWeakPasswordListResponse {
|
|
15363
|
+
/**
|
|
15364
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15365
|
+
*/
|
|
15366
|
+
RequestId?: string
|
|
15367
|
+
}
|
|
15368
|
+
|
|
13941
15369
|
/**
|
|
13942
15370
|
* ScanVulSetting请求参数结构体
|
|
13943
15371
|
*/
|
|
@@ -13981,6 +15409,11 @@ export interface ScanVulSettingRequest {
|
|
|
13981
15409
|
* 是否开启扫描 1开启 0不开启
|
|
13982
15410
|
*/
|
|
13983
15411
|
EnableScan?: number
|
|
15412
|
+
|
|
15413
|
+
/**
|
|
15414
|
+
* 为空默认扫描全部专业版、旗舰版、普惠版主机,不为空只扫描选中主机
|
|
15415
|
+
*/
|
|
15416
|
+
Uuids?: Array<string>
|
|
13984
15417
|
}
|
|
13985
15418
|
|
|
13986
15419
|
/**
|
|
@@ -14246,44 +15679,9 @@ export interface DescribeAssetCoreModuleListResponse {
|
|
|
14246
15679
|
}
|
|
14247
15680
|
|
|
14248
15681
|
/**
|
|
14249
|
-
*
|
|
15682
|
+
* DescribeMalwareTimingScanSetting请求参数结构体
|
|
14250
15683
|
*/
|
|
14251
|
-
export
|
|
14252
|
-
/**
|
|
14253
|
-
* <li>PolicyId - int64 - 是否必填:否 - 策略Id</li>
|
|
14254
|
-
<li>RuleId - int64 - 是否必填:否 - 规则Id</li>
|
|
14255
|
-
<li>HostId - string - 是否必填:否 - 主机Id</li>
|
|
14256
|
-
<li>HostName - string - 是否必填:否 - 主机名</li>
|
|
14257
|
-
<li>HostIp - string - 是否必填:否 - 主机IP</li>
|
|
14258
|
-
<li>ItemId - String - 是否必填:否 - 检测项Id</li>
|
|
14259
|
-
<li>ItemName - String - 是否必填:否 - 项名称</li>
|
|
14260
|
-
<li>DetectStatus - int - 是否必填:否 - 检测状态[0:未通过|3:通过|5:检测中]</li>
|
|
14261
|
-
<li>Level - int - 是否必填:否 - 风险等级</li>
|
|
14262
|
-
<li>StartTime - string - 是否必填:否 - 开始时间</li>
|
|
14263
|
-
<li>EndTime - string - 是否必填:否 - 结束时间</li>
|
|
14264
|
-
*/
|
|
14265
|
-
Filters?: Array<Filter>
|
|
14266
|
-
|
|
14267
|
-
/**
|
|
14268
|
-
* 限制条数,默认10,最大100
|
|
14269
|
-
*/
|
|
14270
|
-
Limit?: number
|
|
14271
|
-
|
|
14272
|
-
/**
|
|
14273
|
-
* 偏移量,默认0
|
|
14274
|
-
*/
|
|
14275
|
-
Offset?: number
|
|
14276
|
-
|
|
14277
|
-
/**
|
|
14278
|
-
* 排序方式: [ASC:升序|DESC:降序]
|
|
14279
|
-
*/
|
|
14280
|
-
Order?: string
|
|
14281
|
-
|
|
14282
|
-
/**
|
|
14283
|
-
* 可选排序列
|
|
14284
|
-
*/
|
|
14285
|
-
By?: string
|
|
14286
|
-
}
|
|
15684
|
+
export type DescribeMalwareTimingScanSettingRequest = null
|
|
14287
15685
|
|
|
14288
15686
|
/**
|
|
14289
15687
|
* DescribeLoginWhiteCombinedList返回参数结构体
|
|
@@ -14341,6 +15739,54 @@ export interface DescribeWarningListResponse {
|
|
|
14341
15739
|
RequestId?: string
|
|
14342
15740
|
}
|
|
14343
15741
|
|
|
15742
|
+
/**
|
|
15743
|
+
* DescribeAssetJarList请求参数结构体
|
|
15744
|
+
*/
|
|
15745
|
+
export interface DescribeAssetJarListRequest {
|
|
15746
|
+
/**
|
|
15747
|
+
* 服务器Uuid
|
|
15748
|
+
*/
|
|
15749
|
+
Uuid?: string
|
|
15750
|
+
|
|
15751
|
+
/**
|
|
15752
|
+
* 服务器Quuid
|
|
15753
|
+
*/
|
|
15754
|
+
Quuid?: string
|
|
15755
|
+
|
|
15756
|
+
/**
|
|
15757
|
+
* 过滤条件。
|
|
15758
|
+
<li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
|
15759
|
+
<li>Name- string - 是否必填:否 - 包名</li>
|
|
15760
|
+
<li>Type- uint - 是否必填:否 - 类型
|
|
15761
|
+
1: 应用程序
|
|
15762
|
+
2 : 系统类库
|
|
15763
|
+
3 : Web服务自带库
|
|
15764
|
+
4 : 其他依赖包</li>
|
|
15765
|
+
<li>Status- string - 是否必填:否 - 是否可执行:0否,1是</li>
|
|
15766
|
+
*/
|
|
15767
|
+
Filters?: Array<AssetFilters>
|
|
15768
|
+
|
|
15769
|
+
/**
|
|
15770
|
+
* 偏移量,默认为0。
|
|
15771
|
+
*/
|
|
15772
|
+
Offset?: number
|
|
15773
|
+
|
|
15774
|
+
/**
|
|
15775
|
+
* 需要返回的数量,默认为10,最大值为100
|
|
15776
|
+
*/
|
|
15777
|
+
Limit?: number
|
|
15778
|
+
|
|
15779
|
+
/**
|
|
15780
|
+
* 排序方式,asc升序 或 desc降序
|
|
15781
|
+
*/
|
|
15782
|
+
Order?: string
|
|
15783
|
+
|
|
15784
|
+
/**
|
|
15785
|
+
* 排序方式:[FirstTime]
|
|
15786
|
+
*/
|
|
15787
|
+
By?: string
|
|
15788
|
+
}
|
|
15789
|
+
|
|
14344
15790
|
/**
|
|
14345
15791
|
* CreateSearchTemplate请求参数结构体
|
|
14346
15792
|
*/
|
|
@@ -14799,34 +16245,69 @@ export interface Place {
|
|
|
14799
16245
|
*/
|
|
14800
16246
|
export type SyncBaselineDetectSummaryRequest = null
|
|
14801
16247
|
|
|
14802
|
-
/**
|
|
14803
|
-
* DescribeExpertServiceOrderList返回参数结构体
|
|
14804
|
-
*/
|
|
14805
|
-
export interface DescribeExpertServiceOrderListResponse {
|
|
16248
|
+
/**
|
|
16249
|
+
* DescribeExpertServiceOrderList返回参数结构体
|
|
16250
|
+
*/
|
|
16251
|
+
export interface DescribeExpertServiceOrderListResponse {
|
|
16252
|
+
/**
|
|
16253
|
+
* 总条数
|
|
16254
|
+
*/
|
|
16255
|
+
TotalCount: number
|
|
16256
|
+
|
|
16257
|
+
/**
|
|
16258
|
+
* 订单列表
|
|
16259
|
+
*/
|
|
16260
|
+
List: Array<ExpertServiceOrderInfo>
|
|
16261
|
+
|
|
16262
|
+
/**
|
|
16263
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16264
|
+
*/
|
|
16265
|
+
RequestId?: string
|
|
16266
|
+
}
|
|
16267
|
+
|
|
16268
|
+
/**
|
|
16269
|
+
* DeleteReverseShellRules返回参数结构体
|
|
16270
|
+
*/
|
|
16271
|
+
export interface DeleteReverseShellRulesResponse {
|
|
16272
|
+
/**
|
|
16273
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16274
|
+
*/
|
|
16275
|
+
RequestId?: string
|
|
16276
|
+
}
|
|
16277
|
+
|
|
16278
|
+
/**
|
|
16279
|
+
* 基线导出结果下载
|
|
16280
|
+
*/
|
|
16281
|
+
export interface BaselineDownload {
|
|
16282
|
+
/**
|
|
16283
|
+
* 任务Id
|
|
16284
|
+
*/
|
|
16285
|
+
TaskId: number
|
|
16286
|
+
|
|
14806
16287
|
/**
|
|
14807
|
-
*
|
|
16288
|
+
* 任务名称
|
|
14808
16289
|
*/
|
|
14809
|
-
|
|
16290
|
+
TaskName: string
|
|
14810
16291
|
|
|
14811
16292
|
/**
|
|
14812
|
-
*
|
|
16293
|
+
* 状态0:未完成 1:完成
|
|
14813
16294
|
*/
|
|
14814
|
-
|
|
16295
|
+
Status: number
|
|
14815
16296
|
|
|
14816
16297
|
/**
|
|
14817
|
-
*
|
|
16298
|
+
* 开始时间
|
|
14818
16299
|
*/
|
|
14819
|
-
|
|
14820
|
-
}
|
|
16300
|
+
StartTime: string
|
|
14821
16301
|
|
|
14822
|
-
/**
|
|
14823
|
-
* DeleteReverseShellRules返回参数结构体
|
|
14824
|
-
*/
|
|
14825
|
-
export interface DeleteReverseShellRulesResponse {
|
|
14826
16302
|
/**
|
|
14827
|
-
*
|
|
16303
|
+
* 完成时间
|
|
14828
16304
|
*/
|
|
14829
|
-
|
|
16305
|
+
EndTime: string
|
|
16306
|
+
|
|
16307
|
+
/**
|
|
16308
|
+
* 下载地址
|
|
16309
|
+
*/
|
|
16310
|
+
DownloadUrl: string
|
|
14830
16311
|
}
|
|
14831
16312
|
|
|
14832
16313
|
/**
|
|
@@ -15067,6 +16548,26 @@ export interface ModifyBanModeRequest {
|
|
|
15067
16548
|
Ttl?: number
|
|
15068
16549
|
}
|
|
15069
16550
|
|
|
16551
|
+
/**
|
|
16552
|
+
* DescribeBaselineHostIgnoreList请求参数结构体
|
|
16553
|
+
*/
|
|
16554
|
+
export interface DescribeBaselineHostIgnoreListRequest {
|
|
16555
|
+
/**
|
|
16556
|
+
* 请求的规则
|
|
16557
|
+
*/
|
|
16558
|
+
RuleID: number
|
|
16559
|
+
|
|
16560
|
+
/**
|
|
16561
|
+
* 限制条数,默认10,最大100
|
|
16562
|
+
*/
|
|
16563
|
+
Limit?: number
|
|
16564
|
+
|
|
16565
|
+
/**
|
|
16566
|
+
* 偏移量,默认0
|
|
16567
|
+
*/
|
|
16568
|
+
Offset?: number
|
|
16569
|
+
}
|
|
16570
|
+
|
|
15070
16571
|
/**
|
|
15071
16572
|
* 阻断白名单展示列表,包含了机器的信息
|
|
15072
16573
|
*/
|
|
@@ -15132,6 +16633,16 @@ export interface DeleteScanTaskResponse {
|
|
|
15132
16633
|
RequestId?: string
|
|
15133
16634
|
}
|
|
15134
16635
|
|
|
16636
|
+
/**
|
|
16637
|
+
* ExportIgnoreBaselineRule请求参数结构体
|
|
16638
|
+
*/
|
|
16639
|
+
export interface ExportIgnoreBaselineRuleRequest {
|
|
16640
|
+
/**
|
|
16641
|
+
* 检测项名称
|
|
16642
|
+
*/
|
|
16643
|
+
RuleName?: string
|
|
16644
|
+
}
|
|
16645
|
+
|
|
15135
16646
|
/**
|
|
15136
16647
|
* DescribeMachineRegions返回参数结构体
|
|
15137
16648
|
*/
|
|
@@ -15300,6 +16811,26 @@ export interface AssetWebAppBaseInfo {
|
|
|
15300
16811
|
MachineExtraInfo?: MachineExtraInfo
|
|
15301
16812
|
}
|
|
15302
16813
|
|
|
16814
|
+
/**
|
|
16815
|
+
* DescribeBaselineRuleDetectList返回参数结构体
|
|
16816
|
+
*/
|
|
16817
|
+
export interface DescribeBaselineRuleDetectListResponse {
|
|
16818
|
+
/**
|
|
16819
|
+
* 无
|
|
16820
|
+
*/
|
|
16821
|
+
List: Array<BaselineRuleDetect>
|
|
16822
|
+
|
|
16823
|
+
/**
|
|
16824
|
+
* 总数
|
|
16825
|
+
*/
|
|
16826
|
+
Total: number
|
|
16827
|
+
|
|
16828
|
+
/**
|
|
16829
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16830
|
+
*/
|
|
16831
|
+
RequestId?: string
|
|
16832
|
+
}
|
|
16833
|
+
|
|
15303
16834
|
/**
|
|
15304
16835
|
* 资产管理内核模块参数
|
|
15305
16836
|
*/
|
|
@@ -15803,6 +17334,26 @@ export interface ModifyLicenseBindsResponse {
|
|
|
15803
17334
|
RequestId?: string
|
|
15804
17335
|
}
|
|
15805
17336
|
|
|
17337
|
+
/**
|
|
17338
|
+
* ExportBaselineFixList返回参数结构体
|
|
17339
|
+
*/
|
|
17340
|
+
export interface ExportBaselineFixListResponse {
|
|
17341
|
+
/**
|
|
17342
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17343
|
+
*/
|
|
17344
|
+
RequestId?: string
|
|
17345
|
+
}
|
|
17346
|
+
|
|
17347
|
+
/**
|
|
17348
|
+
* ModifyBaselineWeakPassword返回参数结构体
|
|
17349
|
+
*/
|
|
17350
|
+
export interface ModifyBaselineWeakPasswordResponse {
|
|
17351
|
+
/**
|
|
17352
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17353
|
+
*/
|
|
17354
|
+
RequestId?: string
|
|
17355
|
+
}
|
|
17356
|
+
|
|
15806
17357
|
/**
|
|
15807
17358
|
* DescribeBaselineTop请求参数结构体
|
|
15808
17359
|
*/
|
|
@@ -16204,6 +17755,16 @@ export interface ExpertServiceOrderInfo {
|
|
|
16204
17755
|
Status: number
|
|
16205
17756
|
}
|
|
16206
17757
|
|
|
17758
|
+
/**
|
|
17759
|
+
* DescribeBaselineDetectOverview请求参数结构体
|
|
17760
|
+
*/
|
|
17761
|
+
export interface DescribeBaselineDetectOverviewRequest {
|
|
17762
|
+
/**
|
|
17763
|
+
* 策略Id
|
|
17764
|
+
*/
|
|
17765
|
+
PolicyId?: number
|
|
17766
|
+
}
|
|
17767
|
+
|
|
16207
17768
|
/**
|
|
16208
17769
|
* DescribeLicenseGeneral请求参数结构体
|
|
16209
17770
|
*/
|
|
@@ -16347,6 +17908,16 @@ export interface DescribeVulLevelCountRequest {
|
|
|
16347
17908
|
IsFollowVul?: number
|
|
16348
17909
|
}
|
|
16349
17910
|
|
|
17911
|
+
/**
|
|
17912
|
+
* DeleteBaselineWeakPassword返回参数结构体
|
|
17913
|
+
*/
|
|
17914
|
+
export interface DeleteBaselineWeakPasswordResponse {
|
|
17915
|
+
/**
|
|
17916
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17917
|
+
*/
|
|
17918
|
+
RequestId?: string
|
|
17919
|
+
}
|
|
17920
|
+
|
|
16350
17921
|
/**
|
|
16351
17922
|
* DeleteWebPageEventLog请求参数结构体
|
|
16352
17923
|
*/
|
|
@@ -16384,6 +17955,21 @@ export interface DescribeBaselineListResponse {
|
|
|
16384
17955
|
RequestId?: string
|
|
16385
17956
|
}
|
|
16386
17957
|
|
|
17958
|
+
/**
|
|
17959
|
+
* DescribeBaselineHostRiskTop返回参数结构体
|
|
17960
|
+
*/
|
|
17961
|
+
export interface DescribeBaselineHostRiskTopResponse {
|
|
17962
|
+
/**
|
|
17963
|
+
* 风险主机top5
|
|
17964
|
+
*/
|
|
17965
|
+
HostRiskTop5: Array<HostRiskLevelCount>
|
|
17966
|
+
|
|
17967
|
+
/**
|
|
17968
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17969
|
+
*/
|
|
17970
|
+
RequestId?: string
|
|
17971
|
+
}
|
|
17972
|
+
|
|
16387
17973
|
/**
|
|
16388
17974
|
* DescribeExpertServiceOrderList请求参数结构体
|
|
16389
17975
|
*/
|
|
@@ -16446,18 +18032,13 @@ export interface DescribeVulTopRequest {
|
|
|
16446
18032
|
}
|
|
16447
18033
|
|
|
16448
18034
|
/**
|
|
16449
|
-
*
|
|
18035
|
+
* DescribeProVersionStatus返回参数结构体
|
|
16450
18036
|
*/
|
|
16451
|
-
export interface
|
|
16452
|
-
/**
|
|
16453
|
-
* 云镜客户端唯一Uuid。
|
|
16454
|
-
*/
|
|
16455
|
-
Uuid?: string
|
|
16456
|
-
|
|
18037
|
+
export interface DescribeProVersionStatusResponse {
|
|
16457
18038
|
/**
|
|
16458
|
-
*
|
|
18039
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16459
18040
|
*/
|
|
16460
|
-
|
|
18041
|
+
RequestId?: string
|
|
16461
18042
|
}
|
|
16462
18043
|
|
|
16463
18044
|
/**
|
|
@@ -16927,6 +18508,39 @@ export interface DescribeBaselineAnalysisDataRequest {
|
|
|
16927
18508
|
StrategyId: number
|
|
16928
18509
|
}
|
|
16929
18510
|
|
|
18511
|
+
/**
|
|
18512
|
+
* DescribeBaselineDetectList请求参数结构体
|
|
18513
|
+
*/
|
|
18514
|
+
export interface DescribeBaselineDetectListRequest {
|
|
18515
|
+
/**
|
|
18516
|
+
* <li>PolicyName - string - 是否必填:否 - 策略名称</li>
|
|
18517
|
+
<li>PolicyDetectStatus - int - 是否必填:否 - 1:检测中 2:检测完成</li>
|
|
18518
|
+
<li>FirstTime - string - 是否必填:否 - 开始时间</li>
|
|
18519
|
+
<li>LastTime - string - 是否必填:否 - 结束时间</li>
|
|
18520
|
+
*/
|
|
18521
|
+
Filters?: Array<Filter>
|
|
18522
|
+
|
|
18523
|
+
/**
|
|
18524
|
+
* 限制条数,默认10,最大100
|
|
18525
|
+
*/
|
|
18526
|
+
Limit?: number
|
|
18527
|
+
|
|
18528
|
+
/**
|
|
18529
|
+
* 偏移量,默认0
|
|
18530
|
+
*/
|
|
18531
|
+
Offset?: number
|
|
18532
|
+
|
|
18533
|
+
/**
|
|
18534
|
+
* 排序方式: [ASC:升序|DESC:降序]
|
|
18535
|
+
*/
|
|
18536
|
+
Order?: string
|
|
18537
|
+
|
|
18538
|
+
/**
|
|
18539
|
+
* 可选排序列: [HostCount|StartTime|StopTime]
|
|
18540
|
+
*/
|
|
18541
|
+
By?: string
|
|
18542
|
+
}
|
|
18543
|
+
|
|
16930
18544
|
/**
|
|
16931
18545
|
* 资源管理账号基本信息
|
|
16932
18546
|
*/
|
|
@@ -17325,95 +18939,13 @@ export interface MachineTag {
|
|
|
17325
18939
|
}
|
|
17326
18940
|
|
|
17327
18941
|
/**
|
|
17328
|
-
*
|
|
18942
|
+
* CancelIgnoreVul请求参数结构体
|
|
17329
18943
|
*/
|
|
17330
|
-
export interface
|
|
17331
|
-
/**
|
|
17332
|
-
* 木马文件相关风险事件
|
|
17333
|
-
*/
|
|
17334
|
-
Malware: SecurityEventInfo
|
|
17335
|
-
|
|
17336
|
-
/**
|
|
17337
|
-
* 登录审计相关风险事件
|
|
17338
|
-
*/
|
|
17339
|
-
HostLogin: SecurityEventInfo
|
|
17340
|
-
|
|
17341
|
-
/**
|
|
17342
|
-
* 密码破解相关风险事件
|
|
17343
|
-
*/
|
|
17344
|
-
BruteAttack: SecurityEventInfo
|
|
17345
|
-
|
|
17346
|
-
/**
|
|
17347
|
-
* 恶意请求相关风险事件
|
|
17348
|
-
*/
|
|
17349
|
-
RiskDns: SecurityEventInfo
|
|
17350
|
-
|
|
17351
|
-
/**
|
|
17352
|
-
* 高危命令相关风险事件
|
|
17353
|
-
*/
|
|
17354
|
-
Bash: SecurityEventInfo
|
|
17355
|
-
|
|
17356
|
-
/**
|
|
17357
|
-
* 本地提权相关风险事件
|
|
17358
|
-
*/
|
|
17359
|
-
PrivilegeRules: SecurityEventInfo
|
|
17360
|
-
|
|
17361
|
-
/**
|
|
17362
|
-
* 反弹Shell相关风险事件
|
|
17363
|
-
*/
|
|
17364
|
-
ReverseShell: SecurityEventInfo
|
|
17365
|
-
|
|
17366
|
-
/**
|
|
17367
|
-
* 应用漏洞风险事件
|
|
17368
|
-
*/
|
|
17369
|
-
SysVul: SecurityEventInfo
|
|
17370
|
-
|
|
17371
|
-
/**
|
|
17372
|
-
* Web应用漏洞相关风险事件
|
|
17373
|
-
*/
|
|
17374
|
-
WebVul: SecurityEventInfo
|
|
17375
|
-
|
|
17376
|
-
/**
|
|
17377
|
-
* 应急漏洞相关风险事件
|
|
17378
|
-
*/
|
|
17379
|
-
EmergencyVul: SecurityEventInfo
|
|
17380
|
-
|
|
17381
|
-
/**
|
|
17382
|
-
* 安全基线相关风险事件
|
|
17383
|
-
*/
|
|
17384
|
-
BaseLine: SecurityEventInfo
|
|
17385
|
-
|
|
17386
|
-
/**
|
|
17387
|
-
* 攻击检测相关风险事件
|
|
17388
|
-
*/
|
|
17389
|
-
AttackLogs: SecurityEventInfo
|
|
17390
|
-
|
|
17391
|
-
/**
|
|
17392
|
-
* 受影响机器数
|
|
17393
|
-
*/
|
|
17394
|
-
EffectMachineCount: number
|
|
17395
|
-
|
|
17396
|
-
/**
|
|
17397
|
-
* 所有事件总数
|
|
17398
|
-
*/
|
|
17399
|
-
EventsCount: number
|
|
17400
|
-
|
|
17401
|
-
/**
|
|
17402
|
-
* window 系统漏洞事件总数
|
|
17403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17404
|
-
*/
|
|
17405
|
-
WindowVul: SecurityEventInfo
|
|
17406
|
-
|
|
17407
|
-
/**
|
|
17408
|
-
* linux系统漏洞事件总数
|
|
17409
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17410
|
-
*/
|
|
17411
|
-
LinuxVul: SecurityEventInfo
|
|
17412
|
-
|
|
18944
|
+
export interface CancelIgnoreVulRequest {
|
|
17413
18945
|
/**
|
|
17414
|
-
*
|
|
18946
|
+
* 漏洞事件id串,多个用英文逗号分隔
|
|
17415
18947
|
*/
|
|
17416
|
-
|
|
18948
|
+
EventIds: string
|
|
17417
18949
|
}
|
|
17418
18950
|
|
|
17419
18951
|
/**
|
|
@@ -17515,11 +19047,21 @@ export interface DescribeSearchTemplatesRequest {
|
|
|
17515
19047
|
}
|
|
17516
19048
|
|
|
17517
19049
|
/**
|
|
17518
|
-
*
|
|
19050
|
+
* DescribeBaselineItemIgnoreList返回参数结构体
|
|
17519
19051
|
*/
|
|
17520
|
-
export interface
|
|
19052
|
+
export interface DescribeBaselineItemIgnoreListResponse {
|
|
17521
19053
|
/**
|
|
17522
|
-
*
|
|
19054
|
+
* 无
|
|
17523
19055
|
*/
|
|
17524
|
-
|
|
19056
|
+
List: Array<BaselineItemInfo>
|
|
19057
|
+
|
|
19058
|
+
/**
|
|
19059
|
+
* 总数
|
|
19060
|
+
*/
|
|
19061
|
+
Total: number
|
|
19062
|
+
|
|
19063
|
+
/**
|
|
19064
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
19065
|
+
*/
|
|
19066
|
+
RequestId?: string
|
|
17525
19067
|
}
|