@alicloud/sas20181203 2.1.7 → 2.1.9
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/dist/client.d.ts +1284 -71
- package/dist/client.js +2318 -8
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2898 -9
package/dist/client.d.ts
CHANGED
|
@@ -203,6 +203,55 @@ export declare class AddClientUserDefineRuleResponse extends $tea.Model {
|
|
|
203
203
|
[key: string]: any;
|
|
204
204
|
});
|
|
205
205
|
}
|
|
206
|
+
export declare class AddImageVulWhiteListRequest extends $tea.Model {
|
|
207
|
+
lang?: string;
|
|
208
|
+
reason?: string;
|
|
209
|
+
target?: string;
|
|
210
|
+
type?: string;
|
|
211
|
+
whitelist?: string;
|
|
212
|
+
static names(): {
|
|
213
|
+
[key: string]: string;
|
|
214
|
+
};
|
|
215
|
+
static types(): {
|
|
216
|
+
[key: string]: any;
|
|
217
|
+
};
|
|
218
|
+
constructor(map?: {
|
|
219
|
+
[key: string]: any;
|
|
220
|
+
});
|
|
221
|
+
}
|
|
222
|
+
export declare class AddImageVulWhiteListResponseBody extends $tea.Model {
|
|
223
|
+
code?: string;
|
|
224
|
+
data?: boolean;
|
|
225
|
+
httpStatusCode?: number;
|
|
226
|
+
message?: string;
|
|
227
|
+
requestId?: string;
|
|
228
|
+
success?: boolean;
|
|
229
|
+
static names(): {
|
|
230
|
+
[key: string]: string;
|
|
231
|
+
};
|
|
232
|
+
static types(): {
|
|
233
|
+
[key: string]: any;
|
|
234
|
+
};
|
|
235
|
+
constructor(map?: {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
});
|
|
238
|
+
}
|
|
239
|
+
export declare class AddImageVulWhiteListResponse extends $tea.Model {
|
|
240
|
+
headers: {
|
|
241
|
+
[key: string]: string;
|
|
242
|
+
};
|
|
243
|
+
statusCode: number;
|
|
244
|
+
body: AddImageVulWhiteListResponseBody;
|
|
245
|
+
static names(): {
|
|
246
|
+
[key: string]: string;
|
|
247
|
+
};
|
|
248
|
+
static types(): {
|
|
249
|
+
[key: string]: any;
|
|
250
|
+
};
|
|
251
|
+
constructor(map?: {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
});
|
|
254
|
+
}
|
|
206
255
|
export declare class AddInstallCodeRequest extends $tea.Model {
|
|
207
256
|
expiredDate?: number;
|
|
208
257
|
groupId?: number;
|
|
@@ -601,9 +650,57 @@ export declare class CancelOnceTaskResponse extends $tea.Model {
|
|
|
601
650
|
[key: string]: any;
|
|
602
651
|
});
|
|
603
652
|
}
|
|
653
|
+
export declare class ChangeAssetRefreshTaskConfigRequest extends $tea.Model {
|
|
654
|
+
assetRefreshConfigs?: ChangeAssetRefreshTaskConfigRequestAssetRefreshConfigs[];
|
|
655
|
+
regionId?: string;
|
|
656
|
+
static names(): {
|
|
657
|
+
[key: string]: string;
|
|
658
|
+
};
|
|
659
|
+
static types(): {
|
|
660
|
+
[key: string]: any;
|
|
661
|
+
};
|
|
662
|
+
constructor(map?: {
|
|
663
|
+
[key: string]: any;
|
|
664
|
+
});
|
|
665
|
+
}
|
|
666
|
+
export declare class ChangeAssetRefreshTaskConfigResponseBody extends $tea.Model {
|
|
667
|
+
data?: boolean;
|
|
668
|
+
message?: string;
|
|
669
|
+
requestId?: string;
|
|
670
|
+
static names(): {
|
|
671
|
+
[key: string]: string;
|
|
672
|
+
};
|
|
673
|
+
static types(): {
|
|
674
|
+
[key: string]: any;
|
|
675
|
+
};
|
|
676
|
+
constructor(map?: {
|
|
677
|
+
[key: string]: any;
|
|
678
|
+
});
|
|
679
|
+
}
|
|
680
|
+
export declare class ChangeAssetRefreshTaskConfigResponse extends $tea.Model {
|
|
681
|
+
headers: {
|
|
682
|
+
[key: string]: string;
|
|
683
|
+
};
|
|
684
|
+
statusCode: number;
|
|
685
|
+
body: ChangeAssetRefreshTaskConfigResponseBody;
|
|
686
|
+
static names(): {
|
|
687
|
+
[key: string]: string;
|
|
688
|
+
};
|
|
689
|
+
static types(): {
|
|
690
|
+
[key: string]: any;
|
|
691
|
+
};
|
|
692
|
+
constructor(map?: {
|
|
693
|
+
[key: string]: any;
|
|
694
|
+
});
|
|
695
|
+
}
|
|
604
696
|
export declare class ChangeCheckConfigRequest extends $tea.Model {
|
|
697
|
+
addedCheck?: ChangeCheckConfigRequestAddedCheck[];
|
|
698
|
+
cycleDays?: number[];
|
|
699
|
+
enableAddCheck?: boolean;
|
|
700
|
+
enableAutoCheck?: boolean;
|
|
605
701
|
endTime?: number;
|
|
606
702
|
regionId?: string;
|
|
703
|
+
removedCheck?: ChangeCheckConfigRequestRemovedCheck[];
|
|
607
704
|
standardIds?: number[];
|
|
608
705
|
startTime?: number;
|
|
609
706
|
static names(): {
|
|
@@ -858,6 +955,50 @@ export declare class ConfirmVirusEventsResponse extends $tea.Model {
|
|
|
858
955
|
[key: string]: any;
|
|
859
956
|
});
|
|
860
957
|
}
|
|
958
|
+
export declare class CreateAgentlessScanTaskRequest extends $tea.Model {
|
|
959
|
+
autoDeleteDays?: number;
|
|
960
|
+
releaseAfterScan?: boolean;
|
|
961
|
+
scanDataDisk?: boolean;
|
|
962
|
+
targetType?: number;
|
|
963
|
+
uuidList?: string[];
|
|
964
|
+
static names(): {
|
|
965
|
+
[key: string]: string;
|
|
966
|
+
};
|
|
967
|
+
static types(): {
|
|
968
|
+
[key: string]: any;
|
|
969
|
+
};
|
|
970
|
+
constructor(map?: {
|
|
971
|
+
[key: string]: any;
|
|
972
|
+
});
|
|
973
|
+
}
|
|
974
|
+
export declare class CreateAgentlessScanTaskResponseBody extends $tea.Model {
|
|
975
|
+
requestId?: string;
|
|
976
|
+
static names(): {
|
|
977
|
+
[key: string]: string;
|
|
978
|
+
};
|
|
979
|
+
static types(): {
|
|
980
|
+
[key: string]: any;
|
|
981
|
+
};
|
|
982
|
+
constructor(map?: {
|
|
983
|
+
[key: string]: any;
|
|
984
|
+
});
|
|
985
|
+
}
|
|
986
|
+
export declare class CreateAgentlessScanTaskResponse extends $tea.Model {
|
|
987
|
+
headers: {
|
|
988
|
+
[key: string]: string;
|
|
989
|
+
};
|
|
990
|
+
statusCode: number;
|
|
991
|
+
body: CreateAgentlessScanTaskResponseBody;
|
|
992
|
+
static names(): {
|
|
993
|
+
[key: string]: string;
|
|
994
|
+
};
|
|
995
|
+
static types(): {
|
|
996
|
+
[key: string]: any;
|
|
997
|
+
};
|
|
998
|
+
constructor(map?: {
|
|
999
|
+
[key: string]: any;
|
|
1000
|
+
});
|
|
1001
|
+
}
|
|
861
1002
|
export declare class CreateAntiBruteForceRuleRequest extends $tea.Model {
|
|
862
1003
|
defaultRule?: boolean;
|
|
863
1004
|
failCount?: number;
|
|
@@ -1791,6 +1932,46 @@ export declare class CreateServiceLinkedRoleResponse extends $tea.Model {
|
|
|
1791
1932
|
[key: string]: any;
|
|
1792
1933
|
});
|
|
1793
1934
|
}
|
|
1935
|
+
export declare class CreateServiceTrailRequest extends $tea.Model {
|
|
1936
|
+
regionId?: string;
|
|
1937
|
+
static names(): {
|
|
1938
|
+
[key: string]: string;
|
|
1939
|
+
};
|
|
1940
|
+
static types(): {
|
|
1941
|
+
[key: string]: any;
|
|
1942
|
+
};
|
|
1943
|
+
constructor(map?: {
|
|
1944
|
+
[key: string]: any;
|
|
1945
|
+
});
|
|
1946
|
+
}
|
|
1947
|
+
export declare class CreateServiceTrailResponseBody extends $tea.Model {
|
|
1948
|
+
requestId?: string;
|
|
1949
|
+
static names(): {
|
|
1950
|
+
[key: string]: string;
|
|
1951
|
+
};
|
|
1952
|
+
static types(): {
|
|
1953
|
+
[key: string]: any;
|
|
1954
|
+
};
|
|
1955
|
+
constructor(map?: {
|
|
1956
|
+
[key: string]: any;
|
|
1957
|
+
});
|
|
1958
|
+
}
|
|
1959
|
+
export declare class CreateServiceTrailResponse extends $tea.Model {
|
|
1960
|
+
headers: {
|
|
1961
|
+
[key: string]: string;
|
|
1962
|
+
};
|
|
1963
|
+
statusCode: number;
|
|
1964
|
+
body: CreateServiceTrailResponseBody;
|
|
1965
|
+
static names(): {
|
|
1966
|
+
[key: string]: string;
|
|
1967
|
+
};
|
|
1968
|
+
static types(): {
|
|
1969
|
+
[key: string]: any;
|
|
1970
|
+
};
|
|
1971
|
+
constructor(map?: {
|
|
1972
|
+
[key: string]: any;
|
|
1973
|
+
});
|
|
1974
|
+
}
|
|
1794
1975
|
export declare class CreateSimilarSecurityEventsQueryTaskRequest extends $tea.Model {
|
|
1795
1976
|
resourceOwnerId?: number;
|
|
1796
1977
|
securityEventId?: number;
|
|
@@ -2174,6 +2355,48 @@ export declare class DeleteBackupPolicyMachineResponse extends $tea.Model {
|
|
|
2174
2355
|
[key: string]: any;
|
|
2175
2356
|
});
|
|
2176
2357
|
}
|
|
2358
|
+
export declare class DeleteBinarySecurityPolicyRequest extends $tea.Model {
|
|
2359
|
+
name?: string;
|
|
2360
|
+
resourceOwnerId?: number;
|
|
2361
|
+
sourceIp?: string;
|
|
2362
|
+
static names(): {
|
|
2363
|
+
[key: string]: string;
|
|
2364
|
+
};
|
|
2365
|
+
static types(): {
|
|
2366
|
+
[key: string]: any;
|
|
2367
|
+
};
|
|
2368
|
+
constructor(map?: {
|
|
2369
|
+
[key: string]: any;
|
|
2370
|
+
});
|
|
2371
|
+
}
|
|
2372
|
+
export declare class DeleteBinarySecurityPolicyResponseBody extends $tea.Model {
|
|
2373
|
+
requestId?: string;
|
|
2374
|
+
static names(): {
|
|
2375
|
+
[key: string]: string;
|
|
2376
|
+
};
|
|
2377
|
+
static types(): {
|
|
2378
|
+
[key: string]: any;
|
|
2379
|
+
};
|
|
2380
|
+
constructor(map?: {
|
|
2381
|
+
[key: string]: any;
|
|
2382
|
+
});
|
|
2383
|
+
}
|
|
2384
|
+
export declare class DeleteBinarySecurityPolicyResponse extends $tea.Model {
|
|
2385
|
+
headers: {
|
|
2386
|
+
[key: string]: string;
|
|
2387
|
+
};
|
|
2388
|
+
statusCode: number;
|
|
2389
|
+
body: DeleteBinarySecurityPolicyResponseBody;
|
|
2390
|
+
static names(): {
|
|
2391
|
+
[key: string]: string;
|
|
2392
|
+
};
|
|
2393
|
+
static types(): {
|
|
2394
|
+
[key: string]: any;
|
|
2395
|
+
};
|
|
2396
|
+
constructor(map?: {
|
|
2397
|
+
[key: string]: any;
|
|
2398
|
+
});
|
|
2399
|
+
}
|
|
2177
2400
|
export declare class DeleteClientUserDefineRuleRequest extends $tea.Model {
|
|
2178
2401
|
idList?: number[];
|
|
2179
2402
|
static names(): {
|
|
@@ -2763,6 +2986,46 @@ export declare class DeleteSecurityEventMarkMissListResponse extends $tea.Model
|
|
|
2763
2986
|
[key: string]: any;
|
|
2764
2987
|
});
|
|
2765
2988
|
}
|
|
2989
|
+
export declare class DeleteServiceTrailRequest extends $tea.Model {
|
|
2990
|
+
regionId?: string;
|
|
2991
|
+
static names(): {
|
|
2992
|
+
[key: string]: string;
|
|
2993
|
+
};
|
|
2994
|
+
static types(): {
|
|
2995
|
+
[key: string]: any;
|
|
2996
|
+
};
|
|
2997
|
+
constructor(map?: {
|
|
2998
|
+
[key: string]: any;
|
|
2999
|
+
});
|
|
3000
|
+
}
|
|
3001
|
+
export declare class DeleteServiceTrailResponseBody extends $tea.Model {
|
|
3002
|
+
requestId?: string;
|
|
3003
|
+
static names(): {
|
|
3004
|
+
[key: string]: string;
|
|
3005
|
+
};
|
|
3006
|
+
static types(): {
|
|
3007
|
+
[key: string]: any;
|
|
3008
|
+
};
|
|
3009
|
+
constructor(map?: {
|
|
3010
|
+
[key: string]: any;
|
|
3011
|
+
});
|
|
3012
|
+
}
|
|
3013
|
+
export declare class DeleteServiceTrailResponse extends $tea.Model {
|
|
3014
|
+
headers: {
|
|
3015
|
+
[key: string]: string;
|
|
3016
|
+
};
|
|
3017
|
+
statusCode: number;
|
|
3018
|
+
body: DeleteServiceTrailResponseBody;
|
|
3019
|
+
static names(): {
|
|
3020
|
+
[key: string]: string;
|
|
3021
|
+
};
|
|
3022
|
+
static types(): {
|
|
3023
|
+
[key: string]: any;
|
|
3024
|
+
};
|
|
3025
|
+
constructor(map?: {
|
|
3026
|
+
[key: string]: any;
|
|
3027
|
+
});
|
|
3028
|
+
}
|
|
2766
3029
|
export declare class DeleteStrategyRequest extends $tea.Model {
|
|
2767
3030
|
id?: string;
|
|
2768
3031
|
lang?: string;
|
|
@@ -3042,8 +3305,10 @@ export declare class DescribeAccessKeyLeakDetailResponseBody extends $tea.Model
|
|
|
3042
3305
|
remark?: string;
|
|
3043
3306
|
requestId?: string;
|
|
3044
3307
|
source?: string;
|
|
3308
|
+
tokenValid?: number;
|
|
3045
3309
|
type?: string;
|
|
3046
3310
|
whitelistStatus?: string;
|
|
3311
|
+
whitelistTime?: number;
|
|
3047
3312
|
static names(): {
|
|
3048
3313
|
[key: string]: string;
|
|
3049
3314
|
};
|
|
@@ -3315,6 +3580,7 @@ export declare class DescribeAlarmEventDetailResponse extends $tea.Model {
|
|
|
3315
3580
|
export declare class DescribeAlarmEventStackInfoRequest extends $tea.Model {
|
|
3316
3581
|
eventName?: string;
|
|
3317
3582
|
lang?: string;
|
|
3583
|
+
resourceDirectoryAccountId?: number;
|
|
3318
3584
|
sourceIp?: string;
|
|
3319
3585
|
uniqueInfo?: string;
|
|
3320
3586
|
uuid?: string;
|
|
@@ -3590,6 +3856,7 @@ export declare class DescribeAssetDetailByUuidResponse extends $tea.Model {
|
|
|
3590
3856
|
}
|
|
3591
3857
|
export declare class DescribeAssetDetailByUuidsRequest extends $tea.Model {
|
|
3592
3858
|
lang?: string;
|
|
3859
|
+
resourceDirectoryAccountId?: number;
|
|
3593
3860
|
uuids?: string;
|
|
3594
3861
|
static names(): {
|
|
3595
3862
|
[key: string]: string;
|
|
@@ -4553,9 +4820,12 @@ export declare class DescribeCloudCenterInstancesRequest extends $tea.Model {
|
|
|
4553
4820
|
lang?: string;
|
|
4554
4821
|
logicalExp?: string;
|
|
4555
4822
|
machineTypes?: string;
|
|
4823
|
+
nextToken?: string;
|
|
4556
4824
|
noGroupTrace?: boolean;
|
|
4557
4825
|
pageSize?: number;
|
|
4558
4826
|
regionId?: string;
|
|
4827
|
+
resourceDirectoryAccountId?: number;
|
|
4828
|
+
useNextToken?: boolean;
|
|
4559
4829
|
static names(): {
|
|
4560
4830
|
[key: string]: string;
|
|
4561
4831
|
};
|
|
@@ -6073,6 +6343,7 @@ export declare class DescribeExposedStatisticsDetailResponse extends $tea.Model
|
|
|
6073
6343
|
export declare class DescribeFieldStatisticsRequest extends $tea.Model {
|
|
6074
6344
|
machineTypes?: string;
|
|
6075
6345
|
regionId?: string;
|
|
6346
|
+
resourceDirectoryAccountId?: number;
|
|
6076
6347
|
static names(): {
|
|
6077
6348
|
[key: string]: string;
|
|
6078
6349
|
};
|
|
@@ -6414,6 +6685,7 @@ export declare class DescribeGroupedVulRequest extends $tea.Model {
|
|
|
6414
6685
|
lang?: string;
|
|
6415
6686
|
necessity?: string;
|
|
6416
6687
|
pageSize?: number;
|
|
6688
|
+
resourceDirectoryAccountId?: number;
|
|
6417
6689
|
searchTags?: string;
|
|
6418
6690
|
targetType?: string;
|
|
6419
6691
|
type?: string;
|
|
@@ -7721,10 +7993,11 @@ export declare class DescribeImageVulListResponse extends $tea.Model {
|
|
|
7721
7993
|
[key: string]: any;
|
|
7722
7994
|
});
|
|
7723
7995
|
}
|
|
7724
|
-
export declare class
|
|
7725
|
-
|
|
7996
|
+
export declare class DescribeImageVulWhiteListRequest extends $tea.Model {
|
|
7997
|
+
aliasName?: string;
|
|
7998
|
+
currentPage?: number;
|
|
7726
7999
|
lang?: string;
|
|
7727
|
-
|
|
8000
|
+
pageSize?: number;
|
|
7728
8001
|
static names(): {
|
|
7729
8002
|
[key: string]: string;
|
|
7730
8003
|
};
|
|
@@ -7735,10 +8008,15 @@ export declare class DescribeInstallCaptchaRequest extends $tea.Model {
|
|
|
7735
8008
|
[key: string]: any;
|
|
7736
8009
|
});
|
|
7737
8010
|
}
|
|
7738
|
-
export declare class
|
|
7739
|
-
|
|
7740
|
-
|
|
8011
|
+
export declare class DescribeImageVulWhiteListResponseBody extends $tea.Model {
|
|
8012
|
+
code?: string;
|
|
8013
|
+
httpStatusCode?: number;
|
|
8014
|
+
imageVulWhitelist?: DescribeImageVulWhiteListResponseBodyImageVulWhitelist[];
|
|
8015
|
+
message?: string;
|
|
8016
|
+
pageInfo?: DescribeImageVulWhiteListResponseBodyPageInfo;
|
|
7741
8017
|
requestId?: string;
|
|
8018
|
+
success?: boolean;
|
|
8019
|
+
timeCost?: number;
|
|
7742
8020
|
static names(): {
|
|
7743
8021
|
[key: string]: string;
|
|
7744
8022
|
};
|
|
@@ -7749,12 +8027,12 @@ export declare class DescribeInstallCaptchaResponseBody extends $tea.Model {
|
|
|
7749
8027
|
[key: string]: any;
|
|
7750
8028
|
});
|
|
7751
8029
|
}
|
|
7752
|
-
export declare class
|
|
8030
|
+
export declare class DescribeImageVulWhiteListResponse extends $tea.Model {
|
|
7753
8031
|
headers: {
|
|
7754
8032
|
[key: string]: string;
|
|
7755
8033
|
};
|
|
7756
8034
|
statusCode: number;
|
|
7757
|
-
body:
|
|
8035
|
+
body: DescribeImageVulWhiteListResponseBody;
|
|
7758
8036
|
static names(): {
|
|
7759
8037
|
[key: string]: string;
|
|
7760
8038
|
};
|
|
@@ -7765,9 +8043,10 @@ export declare class DescribeInstallCaptchaResponse extends $tea.Model {
|
|
|
7765
8043
|
[key: string]: any;
|
|
7766
8044
|
});
|
|
7767
8045
|
}
|
|
7768
|
-
export declare class
|
|
7769
|
-
|
|
7770
|
-
|
|
8046
|
+
export declare class DescribeInstallCaptchaRequest extends $tea.Model {
|
|
8047
|
+
deadline?: string;
|
|
8048
|
+
lang?: string;
|
|
8049
|
+
sourceIp?: string;
|
|
7771
8050
|
static names(): {
|
|
7772
8051
|
[key: string]: string;
|
|
7773
8052
|
};
|
|
@@ -7778,8 +8057,51 @@ export declare class DescribeInstallCodeResponseBody extends $tea.Model {
|
|
|
7778
8057
|
[key: string]: any;
|
|
7779
8058
|
});
|
|
7780
8059
|
}
|
|
7781
|
-
export declare class
|
|
7782
|
-
|
|
8060
|
+
export declare class DescribeInstallCaptchaResponseBody extends $tea.Model {
|
|
8061
|
+
captchaCode?: string;
|
|
8062
|
+
deadline?: string;
|
|
8063
|
+
requestId?: string;
|
|
8064
|
+
static names(): {
|
|
8065
|
+
[key: string]: string;
|
|
8066
|
+
};
|
|
8067
|
+
static types(): {
|
|
8068
|
+
[key: string]: any;
|
|
8069
|
+
};
|
|
8070
|
+
constructor(map?: {
|
|
8071
|
+
[key: string]: any;
|
|
8072
|
+
});
|
|
8073
|
+
}
|
|
8074
|
+
export declare class DescribeInstallCaptchaResponse extends $tea.Model {
|
|
8075
|
+
headers: {
|
|
8076
|
+
[key: string]: string;
|
|
8077
|
+
};
|
|
8078
|
+
statusCode: number;
|
|
8079
|
+
body: DescribeInstallCaptchaResponseBody;
|
|
8080
|
+
static names(): {
|
|
8081
|
+
[key: string]: string;
|
|
8082
|
+
};
|
|
8083
|
+
static types(): {
|
|
8084
|
+
[key: string]: any;
|
|
8085
|
+
};
|
|
8086
|
+
constructor(map?: {
|
|
8087
|
+
[key: string]: any;
|
|
8088
|
+
});
|
|
8089
|
+
}
|
|
8090
|
+
export declare class DescribeInstallCodeResponseBody extends $tea.Model {
|
|
8091
|
+
code?: string;
|
|
8092
|
+
requestId?: string;
|
|
8093
|
+
static names(): {
|
|
8094
|
+
[key: string]: string;
|
|
8095
|
+
};
|
|
8096
|
+
static types(): {
|
|
8097
|
+
[key: string]: any;
|
|
8098
|
+
};
|
|
8099
|
+
constructor(map?: {
|
|
8100
|
+
[key: string]: any;
|
|
8101
|
+
});
|
|
8102
|
+
}
|
|
8103
|
+
export declare class DescribeInstallCodeResponse extends $tea.Model {
|
|
8104
|
+
headers: {
|
|
7783
8105
|
[key: string]: string;
|
|
7784
8106
|
};
|
|
7785
8107
|
statusCode: number;
|
|
@@ -8311,6 +8633,35 @@ export declare class DescribeModuleConfigResponse extends $tea.Model {
|
|
|
8311
8633
|
[key: string]: any;
|
|
8312
8634
|
});
|
|
8313
8635
|
}
|
|
8636
|
+
export declare class DescribeMonitorAccountsResponseBody extends $tea.Model {
|
|
8637
|
+
accountIds?: string[];
|
|
8638
|
+
requestId?: string;
|
|
8639
|
+
static names(): {
|
|
8640
|
+
[key: string]: string;
|
|
8641
|
+
};
|
|
8642
|
+
static types(): {
|
|
8643
|
+
[key: string]: any;
|
|
8644
|
+
};
|
|
8645
|
+
constructor(map?: {
|
|
8646
|
+
[key: string]: any;
|
|
8647
|
+
});
|
|
8648
|
+
}
|
|
8649
|
+
export declare class DescribeMonitorAccountsResponse extends $tea.Model {
|
|
8650
|
+
headers: {
|
|
8651
|
+
[key: string]: string;
|
|
8652
|
+
};
|
|
8653
|
+
statusCode: number;
|
|
8654
|
+
body: DescribeMonitorAccountsResponseBody;
|
|
8655
|
+
static names(): {
|
|
8656
|
+
[key: string]: string;
|
|
8657
|
+
};
|
|
8658
|
+
static types(): {
|
|
8659
|
+
[key: string]: any;
|
|
8660
|
+
};
|
|
8661
|
+
constructor(map?: {
|
|
8662
|
+
[key: string]: any;
|
|
8663
|
+
});
|
|
8664
|
+
}
|
|
8314
8665
|
export declare class DescribeNoticeConfigRequest extends $tea.Model {
|
|
8315
8666
|
sourceIp?: string;
|
|
8316
8667
|
static names(): {
|
|
@@ -10029,6 +10380,53 @@ export declare class DescribeSecurityCheckScheduleConfigResponse extends $tea.Mo
|
|
|
10029
10380
|
[key: string]: any;
|
|
10030
10381
|
});
|
|
10031
10382
|
}
|
|
10383
|
+
export declare class DescribeSecurityEventMarkMissListRequest extends $tea.Model {
|
|
10384
|
+
currentPage?: number;
|
|
10385
|
+
eventName?: string;
|
|
10386
|
+
pageSize?: number;
|
|
10387
|
+
remark?: string;
|
|
10388
|
+
resourceOwnerId?: number;
|
|
10389
|
+
sourceIp?: string;
|
|
10390
|
+
static names(): {
|
|
10391
|
+
[key: string]: string;
|
|
10392
|
+
};
|
|
10393
|
+
static types(): {
|
|
10394
|
+
[key: string]: any;
|
|
10395
|
+
};
|
|
10396
|
+
constructor(map?: {
|
|
10397
|
+
[key: string]: any;
|
|
10398
|
+
});
|
|
10399
|
+
}
|
|
10400
|
+
export declare class DescribeSecurityEventMarkMissListResponseBody extends $tea.Model {
|
|
10401
|
+
list?: DescribeSecurityEventMarkMissListResponseBodyList[];
|
|
10402
|
+
pageInfo?: DescribeSecurityEventMarkMissListResponseBodyPageInfo;
|
|
10403
|
+
requestId?: string;
|
|
10404
|
+
static names(): {
|
|
10405
|
+
[key: string]: string;
|
|
10406
|
+
};
|
|
10407
|
+
static types(): {
|
|
10408
|
+
[key: string]: any;
|
|
10409
|
+
};
|
|
10410
|
+
constructor(map?: {
|
|
10411
|
+
[key: string]: any;
|
|
10412
|
+
});
|
|
10413
|
+
}
|
|
10414
|
+
export declare class DescribeSecurityEventMarkMissListResponse extends $tea.Model {
|
|
10415
|
+
headers: {
|
|
10416
|
+
[key: string]: string;
|
|
10417
|
+
};
|
|
10418
|
+
statusCode: number;
|
|
10419
|
+
body: DescribeSecurityEventMarkMissListResponseBody;
|
|
10420
|
+
static names(): {
|
|
10421
|
+
[key: string]: string;
|
|
10422
|
+
};
|
|
10423
|
+
static types(): {
|
|
10424
|
+
[key: string]: any;
|
|
10425
|
+
};
|
|
10426
|
+
constructor(map?: {
|
|
10427
|
+
[key: string]: any;
|
|
10428
|
+
});
|
|
10429
|
+
}
|
|
10032
10430
|
export declare class DescribeSecurityEventOperationStatusRequest extends $tea.Model {
|
|
10033
10431
|
resourceOwnerId?: number;
|
|
10034
10432
|
securityEventIds?: string[];
|
|
@@ -10603,6 +11001,7 @@ export declare class DescribeSupportRegionResponse extends $tea.Model {
|
|
|
10603
11001
|
export declare class DescribeSuspEventDetailRequest extends $tea.Model {
|
|
10604
11002
|
from?: string;
|
|
10605
11003
|
lang?: string;
|
|
11004
|
+
resourceDirectoryAccountId?: number;
|
|
10606
11005
|
sourceIp?: string;
|
|
10607
11006
|
suspiciousEventId?: number;
|
|
10608
11007
|
static names(): {
|
|
@@ -10826,6 +11225,7 @@ export declare class DescribeSuspEventsRequest extends $tea.Model {
|
|
|
10826
11225
|
pageSize?: string;
|
|
10827
11226
|
parentEventTypes?: string;
|
|
10828
11227
|
remark?: string;
|
|
11228
|
+
resourceDirectoryAccountId?: number;
|
|
10829
11229
|
sortColumn?: string;
|
|
10830
11230
|
sortType?: string;
|
|
10831
11231
|
source?: string;
|
|
@@ -11565,6 +11965,7 @@ export declare class DescribeUuidsByVulNamesRequest extends $tea.Model {
|
|
|
11565
11965
|
export declare class DescribeUuidsByVulNamesResponseBody extends $tea.Model {
|
|
11566
11966
|
machineInfoStatistics?: DescribeUuidsByVulNamesResponseBodyMachineInfoStatistics[];
|
|
11567
11967
|
requestId?: string;
|
|
11968
|
+
vulCount?: number;
|
|
11568
11969
|
static names(): {
|
|
11569
11970
|
[key: string]: string;
|
|
11570
11971
|
};
|
|
@@ -11634,10 +12035,12 @@ export declare class DescribeVersionConfigRequest extends $tea.Model {
|
|
|
11634
12035
|
});
|
|
11635
12036
|
}
|
|
11636
12037
|
export declare class DescribeVersionConfigResponseBody extends $tea.Model {
|
|
12038
|
+
agentlessCapacity?: number;
|
|
11637
12039
|
allowPartialBuy?: number;
|
|
11638
12040
|
appWhiteList?: number;
|
|
11639
12041
|
appWhiteListAuthCount?: number;
|
|
11640
12042
|
assetLevel?: number;
|
|
12043
|
+
cspmCapacity?: number;
|
|
11641
12044
|
highestVersion?: number;
|
|
11642
12045
|
honeypotCapacity?: number;
|
|
11643
12046
|
imageScanCapacity?: number;
|
|
@@ -11650,6 +12053,7 @@ export declare class DescribeVersionConfigResponseBody extends $tea.Model {
|
|
|
11650
12053
|
MVAuthCount?: number;
|
|
11651
12054
|
MVUnusedAuthCount?: number;
|
|
11652
12055
|
openTime?: number;
|
|
12056
|
+
raspCapacity?: number;
|
|
11653
12057
|
releaseTime?: number;
|
|
11654
12058
|
requestId?: string;
|
|
11655
12059
|
sasLog?: number;
|
|
@@ -11659,6 +12063,7 @@ export declare class DescribeVersionConfigResponseBody extends $tea.Model {
|
|
|
11659
12063
|
userDefinedAlarms?: number;
|
|
11660
12064
|
version?: number;
|
|
11661
12065
|
vmCores?: number;
|
|
12066
|
+
vulFixCapacity?: number;
|
|
11662
12067
|
webLock?: number;
|
|
11663
12068
|
webLockAuthCount?: number;
|
|
11664
12069
|
static names(): {
|
|
@@ -11896,6 +12301,7 @@ export declare class DescribeVulDetailsRequest extends $tea.Model {
|
|
|
11896
12301
|
aliasName?: string;
|
|
11897
12302
|
lang?: string;
|
|
11898
12303
|
name?: string;
|
|
12304
|
+
resourceDirectoryAccountId?: number;
|
|
11899
12305
|
type?: string;
|
|
11900
12306
|
static names(): {
|
|
11901
12307
|
[key: string]: string;
|
|
@@ -12025,6 +12431,7 @@ export declare class DescribeVulListRequest extends $tea.Model {
|
|
|
12025
12431
|
necessity?: string;
|
|
12026
12432
|
pageSize?: number;
|
|
12027
12433
|
remark?: string;
|
|
12434
|
+
resourceDirectoryAccountId?: number;
|
|
12028
12435
|
type?: string;
|
|
12029
12436
|
uuids?: string;
|
|
12030
12437
|
vpcInstanceIds?: string;
|
|
@@ -13485,6 +13892,42 @@ export declare class GenerateOnceTaskResponse extends $tea.Model {
|
|
|
13485
13892
|
[key: string]: any;
|
|
13486
13893
|
});
|
|
13487
13894
|
}
|
|
13895
|
+
export declare class GetAgentlessTaskCountResponseBody extends $tea.Model {
|
|
13896
|
+
baselineCheckCount?: number;
|
|
13897
|
+
cveVulCount?: number;
|
|
13898
|
+
lastTaskTime?: number;
|
|
13899
|
+
maliciousFile?: number;
|
|
13900
|
+
requestId?: string;
|
|
13901
|
+
riskMachine?: number;
|
|
13902
|
+
scaVulCount?: number;
|
|
13903
|
+
scanMachine?: number;
|
|
13904
|
+
vulnerability?: number;
|
|
13905
|
+
static names(): {
|
|
13906
|
+
[key: string]: string;
|
|
13907
|
+
};
|
|
13908
|
+
static types(): {
|
|
13909
|
+
[key: string]: any;
|
|
13910
|
+
};
|
|
13911
|
+
constructor(map?: {
|
|
13912
|
+
[key: string]: any;
|
|
13913
|
+
});
|
|
13914
|
+
}
|
|
13915
|
+
export declare class GetAgentlessTaskCountResponse extends $tea.Model {
|
|
13916
|
+
headers: {
|
|
13917
|
+
[key: string]: string;
|
|
13918
|
+
};
|
|
13919
|
+
statusCode: number;
|
|
13920
|
+
body: GetAgentlessTaskCountResponseBody;
|
|
13921
|
+
static names(): {
|
|
13922
|
+
[key: string]: string;
|
|
13923
|
+
};
|
|
13924
|
+
static types(): {
|
|
13925
|
+
[key: string]: any;
|
|
13926
|
+
};
|
|
13927
|
+
constructor(map?: {
|
|
13928
|
+
[key: string]: any;
|
|
13929
|
+
});
|
|
13930
|
+
}
|
|
13488
13931
|
export declare class GetAlarmMachineCountRequest extends $tea.Model {
|
|
13489
13932
|
from?: string;
|
|
13490
13933
|
static names(): {
|
|
@@ -13781,8 +14224,11 @@ export declare class GetBackupStorageCountResponse extends $tea.Model {
|
|
|
13781
14224
|
}
|
|
13782
14225
|
export declare class GetCheckConfigResponseBody extends $tea.Model {
|
|
13783
14226
|
cycleDays?: number[];
|
|
14227
|
+
enableAddCheck?: boolean;
|
|
14228
|
+
enableAutoCheck?: boolean;
|
|
13784
14229
|
endTime?: number;
|
|
13785
14230
|
requestId?: string;
|
|
14231
|
+
selectedChecks?: GetCheckConfigResponseBodySelectedChecks[];
|
|
13786
14232
|
standards?: GetCheckConfigResponseBodyStandards[];
|
|
13787
14233
|
startTime?: number;
|
|
13788
14234
|
static names(): {
|
|
@@ -13985,6 +14431,52 @@ export declare class GetCheckSummaryResponse extends $tea.Model {
|
|
|
13985
14431
|
[key: string]: any;
|
|
13986
14432
|
});
|
|
13987
14433
|
}
|
|
14434
|
+
export declare class GetClientRatioStatisticRequest extends $tea.Model {
|
|
14435
|
+
resourceDirectoryAccountId?: number;
|
|
14436
|
+
statisticTypes?: string[];
|
|
14437
|
+
timeEnd?: number;
|
|
14438
|
+
timeStart?: number;
|
|
14439
|
+
static names(): {
|
|
14440
|
+
[key: string]: string;
|
|
14441
|
+
};
|
|
14442
|
+
static types(): {
|
|
14443
|
+
[key: string]: any;
|
|
14444
|
+
};
|
|
14445
|
+
constructor(map?: {
|
|
14446
|
+
[key: string]: any;
|
|
14447
|
+
});
|
|
14448
|
+
}
|
|
14449
|
+
export declare class GetClientRatioStatisticResponseBody extends $tea.Model {
|
|
14450
|
+
clientInstallRatio?: GetClientRatioStatisticResponseBodyClientInstallRatio;
|
|
14451
|
+
clientOnlineRatio?: GetClientRatioStatisticResponseBodyClientOnlineRatio;
|
|
14452
|
+
dates?: number[];
|
|
14453
|
+
requestId?: string;
|
|
14454
|
+
static names(): {
|
|
14455
|
+
[key: string]: string;
|
|
14456
|
+
};
|
|
14457
|
+
static types(): {
|
|
14458
|
+
[key: string]: any;
|
|
14459
|
+
};
|
|
14460
|
+
constructor(map?: {
|
|
14461
|
+
[key: string]: any;
|
|
14462
|
+
});
|
|
14463
|
+
}
|
|
14464
|
+
export declare class GetClientRatioStatisticResponse extends $tea.Model {
|
|
14465
|
+
headers: {
|
|
14466
|
+
[key: string]: string;
|
|
14467
|
+
};
|
|
14468
|
+
statusCode: number;
|
|
14469
|
+
body: GetClientRatioStatisticResponseBody;
|
|
14470
|
+
static names(): {
|
|
14471
|
+
[key: string]: string;
|
|
14472
|
+
};
|
|
14473
|
+
static types(): {
|
|
14474
|
+
[key: string]: any;
|
|
14475
|
+
};
|
|
14476
|
+
constructor(map?: {
|
|
14477
|
+
[key: string]: any;
|
|
14478
|
+
});
|
|
14479
|
+
}
|
|
13988
14480
|
export declare class GetClientUserDefineRuleRequest extends $tea.Model {
|
|
13989
14481
|
id?: number;
|
|
13990
14482
|
static names(): {
|
|
@@ -14852,6 +15344,47 @@ export declare class GetRulesCountResponse extends $tea.Model {
|
|
|
14852
15344
|
[key: string]: any;
|
|
14853
15345
|
});
|
|
14854
15346
|
}
|
|
15347
|
+
export declare class GetServiceTrailRequest extends $tea.Model {
|
|
15348
|
+
regionId?: string;
|
|
15349
|
+
static names(): {
|
|
15350
|
+
[key: string]: string;
|
|
15351
|
+
};
|
|
15352
|
+
static types(): {
|
|
15353
|
+
[key: string]: any;
|
|
15354
|
+
};
|
|
15355
|
+
constructor(map?: {
|
|
15356
|
+
[key: string]: any;
|
|
15357
|
+
});
|
|
15358
|
+
}
|
|
15359
|
+
export declare class GetServiceTrailResponseBody extends $tea.Model {
|
|
15360
|
+
requestId?: string;
|
|
15361
|
+
serviceTrail?: GetServiceTrailResponseBodyServiceTrail;
|
|
15362
|
+
static names(): {
|
|
15363
|
+
[key: string]: string;
|
|
15364
|
+
};
|
|
15365
|
+
static types(): {
|
|
15366
|
+
[key: string]: any;
|
|
15367
|
+
};
|
|
15368
|
+
constructor(map?: {
|
|
15369
|
+
[key: string]: any;
|
|
15370
|
+
});
|
|
15371
|
+
}
|
|
15372
|
+
export declare class GetServiceTrailResponse extends $tea.Model {
|
|
15373
|
+
headers: {
|
|
15374
|
+
[key: string]: string;
|
|
15375
|
+
};
|
|
15376
|
+
statusCode: number;
|
|
15377
|
+
body: GetServiceTrailResponseBody;
|
|
15378
|
+
static names(): {
|
|
15379
|
+
[key: string]: string;
|
|
15380
|
+
};
|
|
15381
|
+
static types(): {
|
|
15382
|
+
[key: string]: any;
|
|
15383
|
+
};
|
|
15384
|
+
constructor(map?: {
|
|
15385
|
+
[key: string]: any;
|
|
15386
|
+
});
|
|
15387
|
+
}
|
|
14855
15388
|
export declare class GetSuspiciousStatisticsRequest extends $tea.Model {
|
|
14856
15389
|
groupIdList?: string;
|
|
14857
15390
|
sourceIp?: string;
|
|
@@ -14988,6 +15521,7 @@ export declare class HandleSecurityEventsRequest extends $tea.Model {
|
|
|
14988
15521
|
markMissParam?: string;
|
|
14989
15522
|
operationCode?: string;
|
|
14990
15523
|
operationParams?: string;
|
|
15524
|
+
remark?: string;
|
|
14991
15525
|
securityEventIds?: string[];
|
|
14992
15526
|
sourceIp?: string;
|
|
14993
15527
|
static names(): {
|
|
@@ -15033,6 +15567,7 @@ export declare class HandleSimilarSecurityEventsRequest extends $tea.Model {
|
|
|
15033
15567
|
markMissParam?: string;
|
|
15034
15568
|
operationCode?: string;
|
|
15035
15569
|
operationParams?: string;
|
|
15570
|
+
remark?: string;
|
|
15036
15571
|
resourceOwnerId?: number;
|
|
15037
15572
|
sourceIp?: string;
|
|
15038
15573
|
taskId?: number;
|
|
@@ -15377,21 +15912,8 @@ export declare class JoinWebLockProcessWhiteListResponse extends $tea.Model {
|
|
|
15377
15912
|
[key: string]: any;
|
|
15378
15913
|
});
|
|
15379
15914
|
}
|
|
15380
|
-
export declare class
|
|
15381
|
-
|
|
15382
|
-
targetList?: string[];
|
|
15383
|
-
static names(): {
|
|
15384
|
-
[key: string]: string;
|
|
15385
|
-
};
|
|
15386
|
-
static types(): {
|
|
15387
|
-
[key: string]: any;
|
|
15388
|
-
};
|
|
15389
|
-
constructor(map?: {
|
|
15390
|
-
[key: string]: any;
|
|
15391
|
-
});
|
|
15392
|
-
}
|
|
15393
|
-
export declare class ListAssetSelectionSelectedTargetResponseBody extends $tea.Model {
|
|
15394
|
-
data?: ListAssetSelectionSelectedTargetResponseBodyData[];
|
|
15915
|
+
export declare class ListAgentlessRegionResponseBody extends $tea.Model {
|
|
15916
|
+
regionList?: string[];
|
|
15395
15917
|
requestId?: string;
|
|
15396
15918
|
static names(): {
|
|
15397
15919
|
[key: string]: string;
|
|
@@ -15403,12 +15925,12 @@ export declare class ListAssetSelectionSelectedTargetResponseBody extends $tea.M
|
|
|
15403
15925
|
[key: string]: any;
|
|
15404
15926
|
});
|
|
15405
15927
|
}
|
|
15406
|
-
export declare class
|
|
15928
|
+
export declare class ListAgentlessRegionResponse extends $tea.Model {
|
|
15407
15929
|
headers: {
|
|
15408
15930
|
[key: string]: string;
|
|
15409
15931
|
};
|
|
15410
15932
|
statusCode: number;
|
|
15411
|
-
body:
|
|
15933
|
+
body: ListAgentlessRegionResponseBody;
|
|
15412
15934
|
static names(): {
|
|
15413
15935
|
[key: string]: string;
|
|
15414
15936
|
};
|
|
@@ -15419,10 +15941,10 @@ export declare class ListAssetSelectionSelectedTargetResponse extends $tea.Model
|
|
|
15419
15941
|
[key: string]: any;
|
|
15420
15942
|
});
|
|
15421
15943
|
}
|
|
15422
|
-
export declare class
|
|
15944
|
+
export declare class ListAgentlessRelateMaliciousRequest extends $tea.Model {
|
|
15423
15945
|
currentPage?: number;
|
|
15424
|
-
|
|
15425
|
-
|
|
15946
|
+
eventId?: number;
|
|
15947
|
+
pageSize?: string;
|
|
15426
15948
|
static names(): {
|
|
15427
15949
|
[key: string]: string;
|
|
15428
15950
|
};
|
|
@@ -15433,9 +15955,9 @@ export declare class ListAssetSelectionTargetRequest extends $tea.Model {
|
|
|
15433
15955
|
[key: string]: any;
|
|
15434
15956
|
});
|
|
15435
15957
|
}
|
|
15436
|
-
export declare class
|
|
15437
|
-
|
|
15438
|
-
pageInfo?:
|
|
15958
|
+
export declare class ListAgentlessRelateMaliciousResponseBody extends $tea.Model {
|
|
15959
|
+
list?: ListAgentlessRelateMaliciousResponseBodyList[];
|
|
15960
|
+
pageInfo?: ListAgentlessRelateMaliciousResponseBodyPageInfo;
|
|
15439
15961
|
requestId?: string;
|
|
15440
15962
|
static names(): {
|
|
15441
15963
|
[key: string]: string;
|
|
@@ -15447,12 +15969,12 @@ export declare class ListAssetSelectionTargetResponseBody extends $tea.Model {
|
|
|
15447
15969
|
[key: string]: any;
|
|
15448
15970
|
});
|
|
15449
15971
|
}
|
|
15450
|
-
export declare class
|
|
15972
|
+
export declare class ListAgentlessRelateMaliciousResponse extends $tea.Model {
|
|
15451
15973
|
headers: {
|
|
15452
15974
|
[key: string]: string;
|
|
15453
15975
|
};
|
|
15454
15976
|
statusCode: number;
|
|
15455
|
-
body:
|
|
15977
|
+
body: ListAgentlessRelateMaliciousResponseBody;
|
|
15456
15978
|
static names(): {
|
|
15457
15979
|
[key: string]: string;
|
|
15458
15980
|
};
|
|
@@ -15463,8 +15985,14 @@ export declare class ListAssetSelectionTargetResponse extends $tea.Model {
|
|
|
15463
15985
|
[key: string]: any;
|
|
15464
15986
|
});
|
|
15465
15987
|
}
|
|
15466
|
-
export declare class
|
|
15467
|
-
|
|
15988
|
+
export declare class ListAgentlessRiskUuidRequest extends $tea.Model {
|
|
15989
|
+
currentPage?: number;
|
|
15990
|
+
internetIp?: string;
|
|
15991
|
+
intranetIp?: string;
|
|
15992
|
+
machineName?: string;
|
|
15993
|
+
pageSize?: number;
|
|
15994
|
+
risk?: boolean;
|
|
15995
|
+
targetName?: string;
|
|
15468
15996
|
static names(): {
|
|
15469
15997
|
[key: string]: string;
|
|
15470
15998
|
};
|
|
@@ -15475,14 +16003,10 @@ export declare class ListAvailableHoneypotRequest extends $tea.Model {
|
|
|
15475
16003
|
[key: string]: any;
|
|
15476
16004
|
});
|
|
15477
16005
|
}
|
|
15478
|
-
export declare class
|
|
15479
|
-
|
|
15480
|
-
|
|
15481
|
-
data?: ListAvailableHoneypotResponseBodyData[];
|
|
15482
|
-
httpStatusCode?: number;
|
|
15483
|
-
message?: string;
|
|
16006
|
+
export declare class ListAgentlessRiskUuidResponseBody extends $tea.Model {
|
|
16007
|
+
list?: ListAgentlessRiskUuidResponseBodyList[];
|
|
16008
|
+
pageInfo?: ListAgentlessRiskUuidResponseBodyPageInfo;
|
|
15484
16009
|
requestId?: string;
|
|
15485
|
-
success?: boolean;
|
|
15486
16010
|
static names(): {
|
|
15487
16011
|
[key: string]: string;
|
|
15488
16012
|
};
|
|
@@ -15493,12 +16017,12 @@ export declare class ListAvailableHoneypotResponseBody extends $tea.Model {
|
|
|
15493
16017
|
[key: string]: any;
|
|
15494
16018
|
});
|
|
15495
16019
|
}
|
|
15496
|
-
export declare class
|
|
16020
|
+
export declare class ListAgentlessRiskUuidResponse extends $tea.Model {
|
|
15497
16021
|
headers: {
|
|
15498
16022
|
[key: string]: string;
|
|
15499
16023
|
};
|
|
15500
16024
|
statusCode: number;
|
|
15501
|
-
body:
|
|
16025
|
+
body: ListAgentlessRiskUuidResponseBody;
|
|
15502
16026
|
static names(): {
|
|
15503
16027
|
[key: string]: string;
|
|
15504
16028
|
};
|
|
@@ -15509,8 +16033,237 @@ export declare class ListAvailableHoneypotResponse extends $tea.Model {
|
|
|
15509
16033
|
[key: string]: any;
|
|
15510
16034
|
});
|
|
15511
16035
|
}
|
|
15512
|
-
export declare class
|
|
15513
|
-
|
|
16036
|
+
export declare class ListAgentlessTaskRequest extends $tea.Model {
|
|
16037
|
+
currentPage?: number;
|
|
16038
|
+
endTime?: number;
|
|
16039
|
+
internetIp?: string;
|
|
16040
|
+
intranetIp?: string;
|
|
16041
|
+
lang?: string;
|
|
16042
|
+
machineName?: string;
|
|
16043
|
+
pageSize?: number;
|
|
16044
|
+
rootTask?: boolean;
|
|
16045
|
+
rootTaskId?: string;
|
|
16046
|
+
startTime?: number;
|
|
16047
|
+
status?: number;
|
|
16048
|
+
targetName?: string;
|
|
16049
|
+
targetType?: number;
|
|
16050
|
+
taskId?: string;
|
|
16051
|
+
uuid?: string;
|
|
16052
|
+
static names(): {
|
|
16053
|
+
[key: string]: string;
|
|
16054
|
+
};
|
|
16055
|
+
static types(): {
|
|
16056
|
+
[key: string]: any;
|
|
16057
|
+
};
|
|
16058
|
+
constructor(map?: {
|
|
16059
|
+
[key: string]: any;
|
|
16060
|
+
});
|
|
16061
|
+
}
|
|
16062
|
+
export declare class ListAgentlessTaskResponseBody extends $tea.Model {
|
|
16063
|
+
list?: ListAgentlessTaskResponseBodyList[];
|
|
16064
|
+
pageInfo?: ListAgentlessTaskResponseBodyPageInfo;
|
|
16065
|
+
requestId?: string;
|
|
16066
|
+
static names(): {
|
|
16067
|
+
[key: string]: string;
|
|
16068
|
+
};
|
|
16069
|
+
static types(): {
|
|
16070
|
+
[key: string]: any;
|
|
16071
|
+
};
|
|
16072
|
+
constructor(map?: {
|
|
16073
|
+
[key: string]: any;
|
|
16074
|
+
});
|
|
16075
|
+
}
|
|
16076
|
+
export declare class ListAgentlessTaskResponse extends $tea.Model {
|
|
16077
|
+
headers: {
|
|
16078
|
+
[key: string]: string;
|
|
16079
|
+
};
|
|
16080
|
+
statusCode: number;
|
|
16081
|
+
body: ListAgentlessTaskResponseBody;
|
|
16082
|
+
static names(): {
|
|
16083
|
+
[key: string]: string;
|
|
16084
|
+
};
|
|
16085
|
+
static types(): {
|
|
16086
|
+
[key: string]: any;
|
|
16087
|
+
};
|
|
16088
|
+
constructor(map?: {
|
|
16089
|
+
[key: string]: any;
|
|
16090
|
+
});
|
|
16091
|
+
}
|
|
16092
|
+
export declare class ListAssetRefreshTaskConfigRequest extends $tea.Model {
|
|
16093
|
+
regionId?: string;
|
|
16094
|
+
static names(): {
|
|
16095
|
+
[key: string]: string;
|
|
16096
|
+
};
|
|
16097
|
+
static types(): {
|
|
16098
|
+
[key: string]: any;
|
|
16099
|
+
};
|
|
16100
|
+
constructor(map?: {
|
|
16101
|
+
[key: string]: any;
|
|
16102
|
+
});
|
|
16103
|
+
}
|
|
16104
|
+
export declare class ListAssetRefreshTaskConfigResponseBody extends $tea.Model {
|
|
16105
|
+
assetRefreshConfig?: ListAssetRefreshTaskConfigResponseBodyAssetRefreshConfig[];
|
|
16106
|
+
requestId?: string;
|
|
16107
|
+
static names(): {
|
|
16108
|
+
[key: string]: string;
|
|
16109
|
+
};
|
|
16110
|
+
static types(): {
|
|
16111
|
+
[key: string]: any;
|
|
16112
|
+
};
|
|
16113
|
+
constructor(map?: {
|
|
16114
|
+
[key: string]: any;
|
|
16115
|
+
});
|
|
16116
|
+
}
|
|
16117
|
+
export declare class ListAssetRefreshTaskConfigResponse extends $tea.Model {
|
|
16118
|
+
headers: {
|
|
16119
|
+
[key: string]: string;
|
|
16120
|
+
};
|
|
16121
|
+
statusCode: number;
|
|
16122
|
+
body: ListAssetRefreshTaskConfigResponseBody;
|
|
16123
|
+
static names(): {
|
|
16124
|
+
[key: string]: string;
|
|
16125
|
+
};
|
|
16126
|
+
static types(): {
|
|
16127
|
+
[key: string]: any;
|
|
16128
|
+
};
|
|
16129
|
+
constructor(map?: {
|
|
16130
|
+
[key: string]: any;
|
|
16131
|
+
});
|
|
16132
|
+
}
|
|
16133
|
+
export declare class ListAssetSelectionSelectedTargetRequest extends $tea.Model {
|
|
16134
|
+
selectionKey?: string;
|
|
16135
|
+
targetList?: string[];
|
|
16136
|
+
static names(): {
|
|
16137
|
+
[key: string]: string;
|
|
16138
|
+
};
|
|
16139
|
+
static types(): {
|
|
16140
|
+
[key: string]: any;
|
|
16141
|
+
};
|
|
16142
|
+
constructor(map?: {
|
|
16143
|
+
[key: string]: any;
|
|
16144
|
+
});
|
|
16145
|
+
}
|
|
16146
|
+
export declare class ListAssetSelectionSelectedTargetResponseBody extends $tea.Model {
|
|
16147
|
+
data?: ListAssetSelectionSelectedTargetResponseBodyData[];
|
|
16148
|
+
requestId?: string;
|
|
16149
|
+
static names(): {
|
|
16150
|
+
[key: string]: string;
|
|
16151
|
+
};
|
|
16152
|
+
static types(): {
|
|
16153
|
+
[key: string]: any;
|
|
16154
|
+
};
|
|
16155
|
+
constructor(map?: {
|
|
16156
|
+
[key: string]: any;
|
|
16157
|
+
});
|
|
16158
|
+
}
|
|
16159
|
+
export declare class ListAssetSelectionSelectedTargetResponse extends $tea.Model {
|
|
16160
|
+
headers: {
|
|
16161
|
+
[key: string]: string;
|
|
16162
|
+
};
|
|
16163
|
+
statusCode: number;
|
|
16164
|
+
body: ListAssetSelectionSelectedTargetResponseBody;
|
|
16165
|
+
static names(): {
|
|
16166
|
+
[key: string]: string;
|
|
16167
|
+
};
|
|
16168
|
+
static types(): {
|
|
16169
|
+
[key: string]: any;
|
|
16170
|
+
};
|
|
16171
|
+
constructor(map?: {
|
|
16172
|
+
[key: string]: any;
|
|
16173
|
+
});
|
|
16174
|
+
}
|
|
16175
|
+
export declare class ListAssetSelectionTargetRequest extends $tea.Model {
|
|
16176
|
+
currentPage?: number;
|
|
16177
|
+
pageSize?: number;
|
|
16178
|
+
selectionKey?: string;
|
|
16179
|
+
static names(): {
|
|
16180
|
+
[key: string]: string;
|
|
16181
|
+
};
|
|
16182
|
+
static types(): {
|
|
16183
|
+
[key: string]: any;
|
|
16184
|
+
};
|
|
16185
|
+
constructor(map?: {
|
|
16186
|
+
[key: string]: any;
|
|
16187
|
+
});
|
|
16188
|
+
}
|
|
16189
|
+
export declare class ListAssetSelectionTargetResponseBody extends $tea.Model {
|
|
16190
|
+
data?: ListAssetSelectionTargetResponseBodyData[];
|
|
16191
|
+
pageInfo?: ListAssetSelectionTargetResponseBodyPageInfo;
|
|
16192
|
+
requestId?: string;
|
|
16193
|
+
static names(): {
|
|
16194
|
+
[key: string]: string;
|
|
16195
|
+
};
|
|
16196
|
+
static types(): {
|
|
16197
|
+
[key: string]: any;
|
|
16198
|
+
};
|
|
16199
|
+
constructor(map?: {
|
|
16200
|
+
[key: string]: any;
|
|
16201
|
+
});
|
|
16202
|
+
}
|
|
16203
|
+
export declare class ListAssetSelectionTargetResponse extends $tea.Model {
|
|
16204
|
+
headers: {
|
|
16205
|
+
[key: string]: string;
|
|
16206
|
+
};
|
|
16207
|
+
statusCode: number;
|
|
16208
|
+
body: ListAssetSelectionTargetResponseBody;
|
|
16209
|
+
static names(): {
|
|
16210
|
+
[key: string]: string;
|
|
16211
|
+
};
|
|
16212
|
+
static types(): {
|
|
16213
|
+
[key: string]: any;
|
|
16214
|
+
};
|
|
16215
|
+
constructor(map?: {
|
|
16216
|
+
[key: string]: any;
|
|
16217
|
+
});
|
|
16218
|
+
}
|
|
16219
|
+
export declare class ListAvailableHoneypotRequest extends $tea.Model {
|
|
16220
|
+
nodeId?: string;
|
|
16221
|
+
static names(): {
|
|
16222
|
+
[key: string]: string;
|
|
16223
|
+
};
|
|
16224
|
+
static types(): {
|
|
16225
|
+
[key: string]: any;
|
|
16226
|
+
};
|
|
16227
|
+
constructor(map?: {
|
|
16228
|
+
[key: string]: any;
|
|
16229
|
+
});
|
|
16230
|
+
}
|
|
16231
|
+
export declare class ListAvailableHoneypotResponseBody extends $tea.Model {
|
|
16232
|
+
code?: string;
|
|
16233
|
+
count?: number;
|
|
16234
|
+
data?: ListAvailableHoneypotResponseBodyData[];
|
|
16235
|
+
httpStatusCode?: number;
|
|
16236
|
+
message?: string;
|
|
16237
|
+
requestId?: string;
|
|
16238
|
+
success?: boolean;
|
|
16239
|
+
static names(): {
|
|
16240
|
+
[key: string]: string;
|
|
16241
|
+
};
|
|
16242
|
+
static types(): {
|
|
16243
|
+
[key: string]: any;
|
|
16244
|
+
};
|
|
16245
|
+
constructor(map?: {
|
|
16246
|
+
[key: string]: any;
|
|
16247
|
+
});
|
|
16248
|
+
}
|
|
16249
|
+
export declare class ListAvailableHoneypotResponse extends $tea.Model {
|
|
16250
|
+
headers: {
|
|
16251
|
+
[key: string]: string;
|
|
16252
|
+
};
|
|
16253
|
+
statusCode: number;
|
|
16254
|
+
body: ListAvailableHoneypotResponseBody;
|
|
16255
|
+
static names(): {
|
|
16256
|
+
[key: string]: string;
|
|
16257
|
+
};
|
|
16258
|
+
static types(): {
|
|
16259
|
+
[key: string]: any;
|
|
16260
|
+
};
|
|
16261
|
+
constructor(map?: {
|
|
16262
|
+
[key: string]: any;
|
|
16263
|
+
});
|
|
16264
|
+
}
|
|
16265
|
+
export declare class ListCheckInstanceResultRequest extends $tea.Model {
|
|
16266
|
+
checkId?: number;
|
|
15514
16267
|
currentPage?: number;
|
|
15515
16268
|
instanceIdKey?: string;
|
|
15516
16269
|
instanceIds?: string[];
|
|
@@ -15670,6 +16423,7 @@ export declare class ListCheckItemWarningSummaryResponse extends $tea.Model {
|
|
|
15670
16423
|
export declare class ListCheckResultRequest extends $tea.Model {
|
|
15671
16424
|
checkKey?: string;
|
|
15672
16425
|
currentPage?: number;
|
|
16426
|
+
customParam?: boolean;
|
|
15673
16427
|
instanceIds?: string[];
|
|
15674
16428
|
instanceTypes?: string[];
|
|
15675
16429
|
lang?: string;
|
|
@@ -19563,6 +20317,8 @@ export declare class OpenSensitiveFileScanResponse extends $tea.Model {
|
|
|
19563
20317
|
export declare class OperateAgentClientInstallRequest extends $tea.Model {
|
|
19564
20318
|
instanceIds?: string;
|
|
19565
20319
|
lang?: string;
|
|
20320
|
+
os?: string;
|
|
20321
|
+
region?: string;
|
|
19566
20322
|
uuids?: string;
|
|
19567
20323
|
static names(): {
|
|
19568
20324
|
[key: string]: string;
|
|
@@ -19993,6 +20749,7 @@ export declare class OperateWebLockFileEventsResponse extends $tea.Model {
|
|
|
19993
20749
|
});
|
|
19994
20750
|
}
|
|
19995
20751
|
export declare class OperationCancelIgnoreSuspEventRequest extends $tea.Model {
|
|
20752
|
+
remark?: string;
|
|
19996
20753
|
securityEventIds?: number[];
|
|
19997
20754
|
static names(): {
|
|
19998
20755
|
[key: string]: string;
|
|
@@ -21156,6 +21913,18 @@ export declare class StartVirusScanTaskResponse extends $tea.Model {
|
|
|
21156
21913
|
[key: string]: any;
|
|
21157
21914
|
});
|
|
21158
21915
|
}
|
|
21916
|
+
export declare class SubmitCheckRequest extends $tea.Model {
|
|
21917
|
+
scanRange?: string;
|
|
21918
|
+
static names(): {
|
|
21919
|
+
[key: string]: string;
|
|
21920
|
+
};
|
|
21921
|
+
static types(): {
|
|
21922
|
+
[key: string]: any;
|
|
21923
|
+
};
|
|
21924
|
+
constructor(map?: {
|
|
21925
|
+
[key: string]: any;
|
|
21926
|
+
});
|
|
21927
|
+
}
|
|
21159
21928
|
export declare class SubmitCheckResponseBody extends $tea.Model {
|
|
21160
21929
|
data?: SubmitCheckResponseBodyData;
|
|
21161
21930
|
requestId?: string;
|
|
@@ -21854,10 +22623,10 @@ export declare class AdvanceSecurityEventOperationsResponseBodySecurityEventOper
|
|
|
21854
22623
|
[key: string]: any;
|
|
21855
22624
|
});
|
|
21856
22625
|
}
|
|
21857
|
-
export declare class
|
|
21858
|
-
|
|
21859
|
-
|
|
21860
|
-
|
|
22626
|
+
export declare class ChangeAssetRefreshTaskConfigRequestAssetRefreshConfigs extends $tea.Model {
|
|
22627
|
+
schedulePeriod?: number;
|
|
22628
|
+
status?: number;
|
|
22629
|
+
vendor?: number;
|
|
21861
22630
|
static names(): {
|
|
21862
22631
|
[key: string]: string;
|
|
21863
22632
|
};
|
|
@@ -21868,8 +22637,9 @@ export declare class ChangeCheckCustomConfigRequestCustomConfigs extends $tea.Mo
|
|
|
21868
22637
|
[key: string]: any;
|
|
21869
22638
|
});
|
|
21870
22639
|
}
|
|
21871
|
-
export declare class
|
|
21872
|
-
|
|
22640
|
+
export declare class ChangeCheckConfigRequestAddedCheck extends $tea.Model {
|
|
22641
|
+
checkId?: number;
|
|
22642
|
+
sectionId?: number;
|
|
21873
22643
|
static names(): {
|
|
21874
22644
|
[key: string]: string;
|
|
21875
22645
|
};
|
|
@@ -21880,8 +22650,9 @@ export declare class ChangeCheckCustomConfigResponseBodyIllegalCustomConfigs ext
|
|
|
21880
22650
|
[key: string]: any;
|
|
21881
22651
|
});
|
|
21882
22652
|
}
|
|
21883
|
-
export declare class
|
|
21884
|
-
|
|
22653
|
+
export declare class ChangeCheckConfigRequestRemovedCheck extends $tea.Model {
|
|
22654
|
+
checkId?: number;
|
|
22655
|
+
sectionId?: number;
|
|
21885
22656
|
static names(): {
|
|
21886
22657
|
[key: string]: string;
|
|
21887
22658
|
};
|
|
@@ -21892,10 +22663,10 @@ export declare class CreateAntiBruteForceRuleResponseBodyCreateAntiBruteForceRul
|
|
|
21892
22663
|
[key: string]: any;
|
|
21893
22664
|
});
|
|
21894
22665
|
}
|
|
21895
|
-
export declare class
|
|
21896
|
-
|
|
21897
|
-
|
|
21898
|
-
|
|
22666
|
+
export declare class ChangeCheckCustomConfigRequestCustomConfigs extends $tea.Model {
|
|
22667
|
+
name?: string;
|
|
22668
|
+
operation?: string;
|
|
22669
|
+
value?: string;
|
|
21899
22670
|
static names(): {
|
|
21900
22671
|
[key: string]: string;
|
|
21901
22672
|
};
|
|
@@ -21906,9 +22677,47 @@ export declare class CreateAssetSelectionConfigResponseBodyData extends $tea.Mod
|
|
|
21906
22677
|
[key: string]: any;
|
|
21907
22678
|
});
|
|
21908
22679
|
}
|
|
21909
|
-
export declare class
|
|
21910
|
-
|
|
21911
|
-
|
|
22680
|
+
export declare class ChangeCheckCustomConfigResponseBodyIllegalCustomConfigs extends $tea.Model {
|
|
22681
|
+
name?: string;
|
|
22682
|
+
static names(): {
|
|
22683
|
+
[key: string]: string;
|
|
22684
|
+
};
|
|
22685
|
+
static types(): {
|
|
22686
|
+
[key: string]: any;
|
|
22687
|
+
};
|
|
22688
|
+
constructor(map?: {
|
|
22689
|
+
[key: string]: any;
|
|
22690
|
+
});
|
|
22691
|
+
}
|
|
22692
|
+
export declare class CreateAntiBruteForceRuleResponseBodyCreateAntiBruteForceRule extends $tea.Model {
|
|
22693
|
+
ruleId?: number;
|
|
22694
|
+
static names(): {
|
|
22695
|
+
[key: string]: string;
|
|
22696
|
+
};
|
|
22697
|
+
static types(): {
|
|
22698
|
+
[key: string]: any;
|
|
22699
|
+
};
|
|
22700
|
+
constructor(map?: {
|
|
22701
|
+
[key: string]: any;
|
|
22702
|
+
});
|
|
22703
|
+
}
|
|
22704
|
+
export declare class CreateAssetSelectionConfigResponseBodyData extends $tea.Model {
|
|
22705
|
+
businessType?: string;
|
|
22706
|
+
selectionKey?: number;
|
|
22707
|
+
targetType?: string;
|
|
22708
|
+
static names(): {
|
|
22709
|
+
[key: string]: string;
|
|
22710
|
+
};
|
|
22711
|
+
static types(): {
|
|
22712
|
+
[key: string]: any;
|
|
22713
|
+
};
|
|
22714
|
+
constructor(map?: {
|
|
22715
|
+
[key: string]: any;
|
|
22716
|
+
});
|
|
22717
|
+
}
|
|
22718
|
+
export declare class CreateBackupPolicyResponseBodyBackupPolicy extends $tea.Model {
|
|
22719
|
+
id?: string;
|
|
22720
|
+
status?: string;
|
|
21912
22721
|
static names(): {
|
|
21913
22722
|
[key: string]: string;
|
|
21914
22723
|
};
|
|
@@ -22419,7 +23228,7 @@ export declare class DescribeAntiBruteForceRulesResponseBodyPageInfo extends $te
|
|
|
22419
23228
|
});
|
|
22420
23229
|
}
|
|
22421
23230
|
export declare class DescribeAntiBruteForceRulesResponseBodyRules extends $tea.Model {
|
|
22422
|
-
|
|
23231
|
+
createTimestamp?: number;
|
|
22423
23232
|
defaultRule?: boolean;
|
|
22424
23233
|
enableSmartRule?: boolean;
|
|
22425
23234
|
failCount?: number;
|
|
@@ -23020,6 +23829,7 @@ export declare class DescribeCloudCenterInstancesResponseBodyInstances extends $
|
|
|
23020
23829
|
export declare class DescribeCloudCenterInstancesResponseBodyPageInfo extends $tea.Model {
|
|
23021
23830
|
count?: number;
|
|
23022
23831
|
currentPage?: number;
|
|
23832
|
+
nextToken?: string;
|
|
23023
23833
|
pageSize?: number;
|
|
23024
23834
|
totalCount?: number;
|
|
23025
23835
|
static names(): {
|
|
@@ -23225,6 +24035,8 @@ export declare class DescribeContainerInstancesResponseBodyContainerInstanceList
|
|
|
23225
24035
|
clusterName?: string;
|
|
23226
24036
|
containerId?: string;
|
|
23227
24037
|
createTimestamp?: number;
|
|
24038
|
+
exposed?: number;
|
|
24039
|
+
exposedDetail?: string;
|
|
23228
24040
|
hcCount?: number;
|
|
23229
24041
|
hcStatus?: string;
|
|
23230
24042
|
hostIp?: string;
|
|
@@ -23831,6 +24643,7 @@ export declare class DescribeGroupedInstancesResponseBodyInstances extends $tea.
|
|
|
23831
24643
|
fieldAliasName?: string;
|
|
23832
24644
|
groupFlag?: number;
|
|
23833
24645
|
instanceCount?: string;
|
|
24646
|
+
os?: string;
|
|
23834
24647
|
riskInstanceCount?: string;
|
|
23835
24648
|
unProtectedInstanceCount?: string;
|
|
23836
24649
|
static names(): {
|
|
@@ -24652,6 +25465,38 @@ export declare class DescribeImageVulListResponseBodyVulRecords extends $tea.Mod
|
|
|
24652
25465
|
[key: string]: any;
|
|
24653
25466
|
});
|
|
24654
25467
|
}
|
|
25468
|
+
export declare class DescribeImageVulWhiteListResponseBodyImageVulWhitelist extends $tea.Model {
|
|
25469
|
+
aliasName?: string;
|
|
25470
|
+
id?: number;
|
|
25471
|
+
name?: string;
|
|
25472
|
+
reason?: string;
|
|
25473
|
+
target?: string;
|
|
25474
|
+
type?: string;
|
|
25475
|
+
static names(): {
|
|
25476
|
+
[key: string]: string;
|
|
25477
|
+
};
|
|
25478
|
+
static types(): {
|
|
25479
|
+
[key: string]: any;
|
|
25480
|
+
};
|
|
25481
|
+
constructor(map?: {
|
|
25482
|
+
[key: string]: any;
|
|
25483
|
+
});
|
|
25484
|
+
}
|
|
25485
|
+
export declare class DescribeImageVulWhiteListResponseBodyPageInfo extends $tea.Model {
|
|
25486
|
+
count?: number;
|
|
25487
|
+
currentPage?: number;
|
|
25488
|
+
pageSize?: number;
|
|
25489
|
+
totalCount?: number;
|
|
25490
|
+
static names(): {
|
|
25491
|
+
[key: string]: string;
|
|
25492
|
+
};
|
|
25493
|
+
static types(): {
|
|
25494
|
+
[key: string]: any;
|
|
25495
|
+
};
|
|
25496
|
+
constructor(map?: {
|
|
25497
|
+
[key: string]: any;
|
|
25498
|
+
});
|
|
25499
|
+
}
|
|
24655
25500
|
export declare class DescribeInstallCodesResponseBodyInstallCodes extends $tea.Model {
|
|
24656
25501
|
captchaCode?: string;
|
|
24657
25502
|
expiredDate?: number;
|
|
@@ -25912,6 +26757,47 @@ export declare class DescribeSecurityCheckScheduleConfigResponseBodyRiskCheckJob
|
|
|
25912
26757
|
[key: string]: any;
|
|
25913
26758
|
});
|
|
25914
26759
|
}
|
|
26760
|
+
export declare class DescribeSecurityEventMarkMissListResponseBodyList extends $tea.Model {
|
|
26761
|
+
aliUid?: number;
|
|
26762
|
+
eventName?: string;
|
|
26763
|
+
eventNameOriginal?: string;
|
|
26764
|
+
eventType?: string;
|
|
26765
|
+
eventTypeOriginal?: string;
|
|
26766
|
+
field?: string;
|
|
26767
|
+
fieldValue?: string;
|
|
26768
|
+
filedAliasName?: string;
|
|
26769
|
+
id?: number;
|
|
26770
|
+
instanceId?: string;
|
|
26771
|
+
instanceName?: string;
|
|
26772
|
+
internetIp?: string;
|
|
26773
|
+
intranetIp?: string;
|
|
26774
|
+
operate?: string;
|
|
26775
|
+
uuid?: string;
|
|
26776
|
+
static names(): {
|
|
26777
|
+
[key: string]: string;
|
|
26778
|
+
};
|
|
26779
|
+
static types(): {
|
|
26780
|
+
[key: string]: any;
|
|
26781
|
+
};
|
|
26782
|
+
constructor(map?: {
|
|
26783
|
+
[key: string]: any;
|
|
26784
|
+
});
|
|
26785
|
+
}
|
|
26786
|
+
export declare class DescribeSecurityEventMarkMissListResponseBodyPageInfo extends $tea.Model {
|
|
26787
|
+
count?: number;
|
|
26788
|
+
currentPage?: number;
|
|
26789
|
+
pageSize?: number;
|
|
26790
|
+
totalCount?: number;
|
|
26791
|
+
static names(): {
|
|
26792
|
+
[key: string]: string;
|
|
26793
|
+
};
|
|
26794
|
+
static types(): {
|
|
26795
|
+
[key: string]: any;
|
|
26796
|
+
};
|
|
26797
|
+
constructor(map?: {
|
|
26798
|
+
[key: string]: any;
|
|
26799
|
+
});
|
|
26800
|
+
}
|
|
25915
26801
|
export declare class DescribeSecurityEventOperationStatusResponseBodySecurityEventOperationStatusResponseSecurityEventOperationStatuses extends $tea.Model {
|
|
25916
26802
|
errorCode?: string;
|
|
25917
26803
|
securityEventId?: string;
|
|
@@ -27768,6 +28654,19 @@ export declare class GetBackupStorageCountResponseBodyBackupStorageCount extends
|
|
|
27768
28654
|
[key: string]: any;
|
|
27769
28655
|
});
|
|
27770
28656
|
}
|
|
28657
|
+
export declare class GetCheckConfigResponseBodySelectedChecks extends $tea.Model {
|
|
28658
|
+
checkId?: number;
|
|
28659
|
+
sectionId?: number;
|
|
28660
|
+
static names(): {
|
|
28661
|
+
[key: string]: string;
|
|
28662
|
+
};
|
|
28663
|
+
static types(): {
|
|
28664
|
+
[key: string]: any;
|
|
28665
|
+
};
|
|
28666
|
+
constructor(map?: {
|
|
28667
|
+
[key: string]: any;
|
|
28668
|
+
});
|
|
28669
|
+
}
|
|
27771
28670
|
export declare class GetCheckConfigResponseBodyStandards extends $tea.Model {
|
|
27772
28671
|
id?: number;
|
|
27773
28672
|
showName?: string;
|
|
@@ -27910,6 +28809,144 @@ export declare class GetCheckSummaryResponseBodySummarys extends $tea.Model {
|
|
|
27910
28809
|
[key: string]: any;
|
|
27911
28810
|
});
|
|
27912
28811
|
}
|
|
28812
|
+
export declare class GetClientRatioStatisticResponseBodyClientInstallRatioCurrentItemsItems extends $tea.Model {
|
|
28813
|
+
assetTotalCount?: number;
|
|
28814
|
+
calculateTime?: number;
|
|
28815
|
+
installRatio?: number;
|
|
28816
|
+
installedAssetCount?: number;
|
|
28817
|
+
static names(): {
|
|
28818
|
+
[key: string]: string;
|
|
28819
|
+
};
|
|
28820
|
+
static types(): {
|
|
28821
|
+
[key: string]: any;
|
|
28822
|
+
};
|
|
28823
|
+
constructor(map?: {
|
|
28824
|
+
[key: string]: any;
|
|
28825
|
+
});
|
|
28826
|
+
}
|
|
28827
|
+
export declare class GetClientRatioStatisticResponseBodyClientInstallRatioCurrentItems extends $tea.Model {
|
|
28828
|
+
items?: GetClientRatioStatisticResponseBodyClientInstallRatioCurrentItemsItems[];
|
|
28829
|
+
vendor?: number;
|
|
28830
|
+
static names(): {
|
|
28831
|
+
[key: string]: string;
|
|
28832
|
+
};
|
|
28833
|
+
static types(): {
|
|
28834
|
+
[key: string]: any;
|
|
28835
|
+
};
|
|
28836
|
+
constructor(map?: {
|
|
28837
|
+
[key: string]: any;
|
|
28838
|
+
});
|
|
28839
|
+
}
|
|
28840
|
+
export declare class GetClientRatioStatisticResponseBodyClientInstallRatioHistoryItemsItems extends $tea.Model {
|
|
28841
|
+
assetTotalCount?: number;
|
|
28842
|
+
calculateTime?: number;
|
|
28843
|
+
installRatio?: number;
|
|
28844
|
+
installedAssetCount?: number;
|
|
28845
|
+
static names(): {
|
|
28846
|
+
[key: string]: string;
|
|
28847
|
+
};
|
|
28848
|
+
static types(): {
|
|
28849
|
+
[key: string]: any;
|
|
28850
|
+
};
|
|
28851
|
+
constructor(map?: {
|
|
28852
|
+
[key: string]: any;
|
|
28853
|
+
});
|
|
28854
|
+
}
|
|
28855
|
+
export declare class GetClientRatioStatisticResponseBodyClientInstallRatioHistoryItems extends $tea.Model {
|
|
28856
|
+
items?: GetClientRatioStatisticResponseBodyClientInstallRatioHistoryItemsItems[];
|
|
28857
|
+
vendor?: number;
|
|
28858
|
+
static names(): {
|
|
28859
|
+
[key: string]: string;
|
|
28860
|
+
};
|
|
28861
|
+
static types(): {
|
|
28862
|
+
[key: string]: any;
|
|
28863
|
+
};
|
|
28864
|
+
constructor(map?: {
|
|
28865
|
+
[key: string]: any;
|
|
28866
|
+
});
|
|
28867
|
+
}
|
|
28868
|
+
export declare class GetClientRatioStatisticResponseBodyClientInstallRatio extends $tea.Model {
|
|
28869
|
+
currentItems?: GetClientRatioStatisticResponseBodyClientInstallRatioCurrentItems[];
|
|
28870
|
+
historyItems?: GetClientRatioStatisticResponseBodyClientInstallRatioHistoryItems[];
|
|
28871
|
+
static names(): {
|
|
28872
|
+
[key: string]: string;
|
|
28873
|
+
};
|
|
28874
|
+
static types(): {
|
|
28875
|
+
[key: string]: any;
|
|
28876
|
+
};
|
|
28877
|
+
constructor(map?: {
|
|
28878
|
+
[key: string]: any;
|
|
28879
|
+
});
|
|
28880
|
+
}
|
|
28881
|
+
export declare class GetClientRatioStatisticResponseBodyClientOnlineRatioCurrentItemsItems extends $tea.Model {
|
|
28882
|
+
assetInstallCount?: number;
|
|
28883
|
+
calculateTime?: number;
|
|
28884
|
+
onlineAssetCount?: number;
|
|
28885
|
+
onlineRatio?: number;
|
|
28886
|
+
static names(): {
|
|
28887
|
+
[key: string]: string;
|
|
28888
|
+
};
|
|
28889
|
+
static types(): {
|
|
28890
|
+
[key: string]: any;
|
|
28891
|
+
};
|
|
28892
|
+
constructor(map?: {
|
|
28893
|
+
[key: string]: any;
|
|
28894
|
+
});
|
|
28895
|
+
}
|
|
28896
|
+
export declare class GetClientRatioStatisticResponseBodyClientOnlineRatioCurrentItems extends $tea.Model {
|
|
28897
|
+
items?: GetClientRatioStatisticResponseBodyClientOnlineRatioCurrentItemsItems[];
|
|
28898
|
+
vendor?: number;
|
|
28899
|
+
static names(): {
|
|
28900
|
+
[key: string]: string;
|
|
28901
|
+
};
|
|
28902
|
+
static types(): {
|
|
28903
|
+
[key: string]: any;
|
|
28904
|
+
};
|
|
28905
|
+
constructor(map?: {
|
|
28906
|
+
[key: string]: any;
|
|
28907
|
+
});
|
|
28908
|
+
}
|
|
28909
|
+
export declare class GetClientRatioStatisticResponseBodyClientOnlineRatioHistoryItemsItems extends $tea.Model {
|
|
28910
|
+
assetInstallCount?: number;
|
|
28911
|
+
calculateTime?: number;
|
|
28912
|
+
onlineAssetCount?: number;
|
|
28913
|
+
onlineRatio?: number;
|
|
28914
|
+
static names(): {
|
|
28915
|
+
[key: string]: string;
|
|
28916
|
+
};
|
|
28917
|
+
static types(): {
|
|
28918
|
+
[key: string]: any;
|
|
28919
|
+
};
|
|
28920
|
+
constructor(map?: {
|
|
28921
|
+
[key: string]: any;
|
|
28922
|
+
});
|
|
28923
|
+
}
|
|
28924
|
+
export declare class GetClientRatioStatisticResponseBodyClientOnlineRatioHistoryItems extends $tea.Model {
|
|
28925
|
+
items?: GetClientRatioStatisticResponseBodyClientOnlineRatioHistoryItemsItems[];
|
|
28926
|
+
vendor?: number;
|
|
28927
|
+
static names(): {
|
|
28928
|
+
[key: string]: string;
|
|
28929
|
+
};
|
|
28930
|
+
static types(): {
|
|
28931
|
+
[key: string]: any;
|
|
28932
|
+
};
|
|
28933
|
+
constructor(map?: {
|
|
28934
|
+
[key: string]: any;
|
|
28935
|
+
});
|
|
28936
|
+
}
|
|
28937
|
+
export declare class GetClientRatioStatisticResponseBodyClientOnlineRatio extends $tea.Model {
|
|
28938
|
+
currentItems?: GetClientRatioStatisticResponseBodyClientOnlineRatioCurrentItems[];
|
|
28939
|
+
historyItems?: GetClientRatioStatisticResponseBodyClientOnlineRatioHistoryItems[];
|
|
28940
|
+
static names(): {
|
|
28941
|
+
[key: string]: string;
|
|
28942
|
+
};
|
|
28943
|
+
static types(): {
|
|
28944
|
+
[key: string]: any;
|
|
28945
|
+
};
|
|
28946
|
+
constructor(map?: {
|
|
28947
|
+
[key: string]: any;
|
|
28948
|
+
});
|
|
28949
|
+
}
|
|
27913
28950
|
export declare class GetClientUserDefineRuleResponseBodyUserDefineRuleDetail extends $tea.Model {
|
|
27914
28951
|
actionType?: string;
|
|
27915
28952
|
cmdline?: string;
|
|
@@ -28470,6 +29507,20 @@ export declare class GetPropertyScheduleConfigResponseBodyPropertyScheduleConfig
|
|
|
28470
29507
|
[key: string]: any;
|
|
28471
29508
|
});
|
|
28472
29509
|
}
|
|
29510
|
+
export declare class GetServiceTrailResponseBodyServiceTrail extends $tea.Model {
|
|
29511
|
+
config?: string;
|
|
29512
|
+
createTime?: number;
|
|
29513
|
+
updateTime?: number;
|
|
29514
|
+
static names(): {
|
|
29515
|
+
[key: string]: string;
|
|
29516
|
+
};
|
|
29517
|
+
static types(): {
|
|
29518
|
+
[key: string]: any;
|
|
29519
|
+
};
|
|
29520
|
+
constructor(map?: {
|
|
29521
|
+
[key: string]: any;
|
|
29522
|
+
});
|
|
29523
|
+
}
|
|
28473
29524
|
export declare class GetVulWhitelistResponseBodyVulWhitelist extends $tea.Model {
|
|
28474
29525
|
aliasName?: string;
|
|
28475
29526
|
id?: number;
|
|
@@ -28513,6 +29564,126 @@ export declare class IgnoreCheckItemsRequestCheckAndRiskTypeList extends $tea.Mo
|
|
|
28513
29564
|
[key: string]: any;
|
|
28514
29565
|
});
|
|
28515
29566
|
}
|
|
29567
|
+
export declare class ListAgentlessRelateMaliciousResponseBodyList extends $tea.Model {
|
|
29568
|
+
filePath?: string;
|
|
29569
|
+
firstScanTimestamp?: number;
|
|
29570
|
+
instanceName?: string;
|
|
29571
|
+
internetIp?: string;
|
|
29572
|
+
intranetIp?: string;
|
|
29573
|
+
latestScanTimestamp?: number;
|
|
29574
|
+
uuid?: string;
|
|
29575
|
+
static names(): {
|
|
29576
|
+
[key: string]: string;
|
|
29577
|
+
};
|
|
29578
|
+
static types(): {
|
|
29579
|
+
[key: string]: any;
|
|
29580
|
+
};
|
|
29581
|
+
constructor(map?: {
|
|
29582
|
+
[key: string]: any;
|
|
29583
|
+
});
|
|
29584
|
+
}
|
|
29585
|
+
export declare class ListAgentlessRelateMaliciousResponseBodyPageInfo extends $tea.Model {
|
|
29586
|
+
count?: number;
|
|
29587
|
+
currentPage?: number;
|
|
29588
|
+
pageSize?: number;
|
|
29589
|
+
totalCount?: number;
|
|
29590
|
+
static names(): {
|
|
29591
|
+
[key: string]: string;
|
|
29592
|
+
};
|
|
29593
|
+
static types(): {
|
|
29594
|
+
[key: string]: any;
|
|
29595
|
+
};
|
|
29596
|
+
constructor(map?: {
|
|
29597
|
+
[key: string]: any;
|
|
29598
|
+
});
|
|
29599
|
+
}
|
|
29600
|
+
export declare class ListAgentlessRiskUuidResponseBodyList extends $tea.Model {
|
|
29601
|
+
baselineCount?: number;
|
|
29602
|
+
instanceName?: string;
|
|
29603
|
+
internetIp?: string;
|
|
29604
|
+
intranetIp?: string;
|
|
29605
|
+
maliciousCount?: number;
|
|
29606
|
+
scanTime?: number;
|
|
29607
|
+
targetId?: string;
|
|
29608
|
+
targetName?: string;
|
|
29609
|
+
uuid?: string;
|
|
29610
|
+
vulCount?: number;
|
|
29611
|
+
static names(): {
|
|
29612
|
+
[key: string]: string;
|
|
29613
|
+
};
|
|
29614
|
+
static types(): {
|
|
29615
|
+
[key: string]: any;
|
|
29616
|
+
};
|
|
29617
|
+
constructor(map?: {
|
|
29618
|
+
[key: string]: any;
|
|
29619
|
+
});
|
|
29620
|
+
}
|
|
29621
|
+
export declare class ListAgentlessRiskUuidResponseBodyPageInfo extends $tea.Model {
|
|
29622
|
+
currentPage?: number;
|
|
29623
|
+
pageSize?: number;
|
|
29624
|
+
totalCount?: number;
|
|
29625
|
+
static names(): {
|
|
29626
|
+
[key: string]: string;
|
|
29627
|
+
};
|
|
29628
|
+
static types(): {
|
|
29629
|
+
[key: string]: any;
|
|
29630
|
+
};
|
|
29631
|
+
constructor(map?: {
|
|
29632
|
+
[key: string]: any;
|
|
29633
|
+
});
|
|
29634
|
+
}
|
|
29635
|
+
export declare class ListAgentlessTaskResponseBodyList extends $tea.Model {
|
|
29636
|
+
endTime?: number;
|
|
29637
|
+
instanceName?: string;
|
|
29638
|
+
internetIp?: string;
|
|
29639
|
+
intranetIp?: string;
|
|
29640
|
+
progress?: number;
|
|
29641
|
+
result?: string;
|
|
29642
|
+
startTime?: number;
|
|
29643
|
+
status?: number;
|
|
29644
|
+
targetName?: string;
|
|
29645
|
+
targetType?: number;
|
|
29646
|
+
taskId?: string;
|
|
29647
|
+
taskName?: string;
|
|
29648
|
+
uuid?: string;
|
|
29649
|
+
static names(): {
|
|
29650
|
+
[key: string]: string;
|
|
29651
|
+
};
|
|
29652
|
+
static types(): {
|
|
29653
|
+
[key: string]: any;
|
|
29654
|
+
};
|
|
29655
|
+
constructor(map?: {
|
|
29656
|
+
[key: string]: any;
|
|
29657
|
+
});
|
|
29658
|
+
}
|
|
29659
|
+
export declare class ListAgentlessTaskResponseBodyPageInfo extends $tea.Model {
|
|
29660
|
+
currentPage?: number;
|
|
29661
|
+
pageSize?: number;
|
|
29662
|
+
totalCount?: number;
|
|
29663
|
+
static names(): {
|
|
29664
|
+
[key: string]: string;
|
|
29665
|
+
};
|
|
29666
|
+
static types(): {
|
|
29667
|
+
[key: string]: any;
|
|
29668
|
+
};
|
|
29669
|
+
constructor(map?: {
|
|
29670
|
+
[key: string]: any;
|
|
29671
|
+
});
|
|
29672
|
+
}
|
|
29673
|
+
export declare class ListAssetRefreshTaskConfigResponseBodyAssetRefreshConfig extends $tea.Model {
|
|
29674
|
+
schedulePeriod?: number;
|
|
29675
|
+
status?: number;
|
|
29676
|
+
vendor?: number;
|
|
29677
|
+
static names(): {
|
|
29678
|
+
[key: string]: string;
|
|
29679
|
+
};
|
|
29680
|
+
static types(): {
|
|
29681
|
+
[key: string]: any;
|
|
29682
|
+
};
|
|
29683
|
+
constructor(map?: {
|
|
29684
|
+
[key: string]: any;
|
|
29685
|
+
});
|
|
29686
|
+
}
|
|
28516
29687
|
export declare class ListAssetSelectionSelectedTargetResponseBodyData extends $tea.Model {
|
|
28517
29688
|
targetId?: string;
|
|
28518
29689
|
targetName?: string;
|
|
@@ -28579,6 +29750,7 @@ export declare class ListCheckInstanceResultResponseBodyBasicData extends $tea.M
|
|
|
28579
29750
|
instanceName?: string;
|
|
28580
29751
|
regionId?: string;
|
|
28581
29752
|
status?: string;
|
|
29753
|
+
statusMessage?: string;
|
|
28582
29754
|
static names(): {
|
|
28583
29755
|
[key: string]: string;
|
|
28584
29756
|
};
|
|
@@ -28765,6 +29937,7 @@ export declare class ListCheckResultResponseBodyChecks extends $tea.Model {
|
|
|
28765
29937
|
lastCheckTime?: number;
|
|
28766
29938
|
riskLevel?: string;
|
|
28767
29939
|
status?: string;
|
|
29940
|
+
statusMessage?: string;
|
|
28768
29941
|
taskId?: string;
|
|
28769
29942
|
trialPermission?: boolean;
|
|
28770
29943
|
vendor?: string;
|
|
@@ -30041,6 +31214,8 @@ export default class Client extends OpenApi {
|
|
|
30041
31214
|
addCheckResultWhiteList(request: AddCheckResultWhiteListRequest): Promise<AddCheckResultWhiteListResponse>;
|
|
30042
31215
|
addClientUserDefineRuleWithOptions(request: AddClientUserDefineRuleRequest, runtime: $Util.RuntimeOptions): Promise<AddClientUserDefineRuleResponse>;
|
|
30043
31216
|
addClientUserDefineRule(request: AddClientUserDefineRuleRequest): Promise<AddClientUserDefineRuleResponse>;
|
|
31217
|
+
addImageVulWhiteListWithOptions(request: AddImageVulWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<AddImageVulWhiteListResponse>;
|
|
31218
|
+
addImageVulWhiteList(request: AddImageVulWhiteListRequest): Promise<AddImageVulWhiteListResponse>;
|
|
30044
31219
|
addInstallCodeWithOptions(request: AddInstallCodeRequest, runtime: $Util.RuntimeOptions): Promise<AddInstallCodeResponse>;
|
|
30045
31220
|
addInstallCode(request: AddInstallCodeRequest): Promise<AddInstallCodeResponse>;
|
|
30046
31221
|
addPrivateRegistryWithOptions(request: AddPrivateRegistryRequest, runtime: $Util.RuntimeOptions): Promise<AddPrivateRegistryResponse>;
|
|
@@ -30072,6 +31247,8 @@ export default class Client extends OpenApi {
|
|
|
30072
31247
|
bindAuthToMachine(request: BindAuthToMachineRequest): Promise<BindAuthToMachineResponse>;
|
|
30073
31248
|
cancelOnceTaskWithOptions(request: CancelOnceTaskRequest, runtime: $Util.RuntimeOptions): Promise<CancelOnceTaskResponse>;
|
|
30074
31249
|
cancelOnceTask(request: CancelOnceTaskRequest): Promise<CancelOnceTaskResponse>;
|
|
31250
|
+
changeAssetRefreshTaskConfigWithOptions(request: ChangeAssetRefreshTaskConfigRequest, runtime: $Util.RuntimeOptions): Promise<ChangeAssetRefreshTaskConfigResponse>;
|
|
31251
|
+
changeAssetRefreshTaskConfig(request: ChangeAssetRefreshTaskConfigRequest): Promise<ChangeAssetRefreshTaskConfigResponse>;
|
|
30075
31252
|
changeCheckConfigWithOptions(request: ChangeCheckConfigRequest, runtime: $Util.RuntimeOptions): Promise<ChangeCheckConfigResponse>;
|
|
30076
31253
|
changeCheckConfig(request: ChangeCheckConfigRequest): Promise<ChangeCheckConfigResponse>;
|
|
30077
31254
|
changeCheckCustomConfigWithOptions(request: ChangeCheckCustomConfigRequest, runtime: $Util.RuntimeOptions): Promise<ChangeCheckCustomConfigResponse>;
|
|
@@ -30084,6 +31261,8 @@ export default class Client extends OpenApi {
|
|
|
30084
31261
|
checkUserHasEcs(request: CheckUserHasEcsRequest): Promise<CheckUserHasEcsResponse>;
|
|
30085
31262
|
confirmVirusEventsWithOptions(request: ConfirmVirusEventsRequest, runtime: $Util.RuntimeOptions): Promise<ConfirmVirusEventsResponse>;
|
|
30086
31263
|
confirmVirusEvents(request: ConfirmVirusEventsRequest): Promise<ConfirmVirusEventsResponse>;
|
|
31264
|
+
createAgentlessScanTaskWithOptions(request: CreateAgentlessScanTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateAgentlessScanTaskResponse>;
|
|
31265
|
+
createAgentlessScanTask(request: CreateAgentlessScanTaskRequest): Promise<CreateAgentlessScanTaskResponse>;
|
|
30087
31266
|
createAntiBruteForceRuleWithOptions(request: CreateAntiBruteForceRuleRequest, runtime: $Util.RuntimeOptions): Promise<CreateAntiBruteForceRuleResponse>;
|
|
30088
31267
|
createAntiBruteForceRule(request: CreateAntiBruteForceRuleRequest): Promise<CreateAntiBruteForceRuleResponse>;
|
|
30089
31268
|
createAssetSelectionConfigWithOptions(request: CreateAssetSelectionConfigRequest, runtime: $Util.RuntimeOptions): Promise<CreateAssetSelectionConfigResponse>;
|
|
@@ -30098,7 +31277,10 @@ export default class Client extends OpenApi {
|
|
|
30098
31277
|
createCycleTask(request: CreateCycleTaskRequest): Promise<CreateCycleTaskResponse>;
|
|
30099
31278
|
/**
|
|
30100
31279
|
* You can call this operation to push a file to the cloud for detection. Before you call this operation, make sure that the file is uploaded. You can call the CreateFileDetectUploadUrl operation to upload the file.
|
|
30101
|
-
* The HashKey parameter is included in all API operations that are related to the file detection feature. The parameter specifies the unique identifier of a file. Only MD5 hash values are supported.
|
|
31280
|
+
* The HashKey parameter is included in all API operations that are related to the file detection feature. The parameter specifies the unique identifier of a file. Only hexadecimal MD5 hash values of complete file content are supported. You must calculate the MD5 hash value before you call this operation.
|
|
31281
|
+
* To calculate the hexadecimal MD5 hash value for a file, you can perform the following steps:
|
|
31282
|
+
* 1\\. Use the MD5 algorithm to encrypt data and generate a 128-bit hash value. You can use a tool such as MessageDigest for Java and the hashlib module for Python.
|
|
31283
|
+
* 2\\. Convert the hash value to a hexadecimal string. You can use a tool such as Codec for Java and the hex() function for Python.
|
|
30102
31284
|
*
|
|
30103
31285
|
* @param request CreateFileDetectRequest
|
|
30104
31286
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -30107,7 +31289,10 @@ export default class Client extends OpenApi {
|
|
|
30107
31289
|
createFileDetectWithOptions(request: CreateFileDetectRequest, runtime: $Util.RuntimeOptions): Promise<CreateFileDetectResponse>;
|
|
30108
31290
|
/**
|
|
30109
31291
|
* You can call this operation to push a file to the cloud for detection. Before you call this operation, make sure that the file is uploaded. You can call the CreateFileDetectUploadUrl operation to upload the file.
|
|
30110
|
-
* The HashKey parameter is included in all API operations that are related to the file detection feature. The parameter specifies the unique identifier of a file. Only MD5 hash values are supported.
|
|
31292
|
+
* The HashKey parameter is included in all API operations that are related to the file detection feature. The parameter specifies the unique identifier of a file. Only hexadecimal MD5 hash values of complete file content are supported. You must calculate the MD5 hash value before you call this operation.
|
|
31293
|
+
* To calculate the hexadecimal MD5 hash value for a file, you can perform the following steps:
|
|
31294
|
+
* 1\\. Use the MD5 algorithm to encrypt data and generate a 128-bit hash value. You can use a tool such as MessageDigest for Java and the hashlib module for Python.
|
|
31295
|
+
* 2\\. Convert the hash value to a hexadecimal string. You can use a tool such as Codec for Java and the hex() function for Python.
|
|
30111
31296
|
*
|
|
30112
31297
|
* @param request CreateFileDetectRequest
|
|
30113
31298
|
* @return CreateFileDetectResponse
|
|
@@ -30180,6 +31365,8 @@ export default class Client extends OpenApi {
|
|
|
30180
31365
|
* @return CreateServiceLinkedRoleResponse
|
|
30181
31366
|
*/
|
|
30182
31367
|
createServiceLinkedRole(request: CreateServiceLinkedRoleRequest): Promise<CreateServiceLinkedRoleResponse>;
|
|
31368
|
+
createServiceTrailWithOptions(request: CreateServiceTrailRequest, runtime: $Util.RuntimeOptions): Promise<CreateServiceTrailResponse>;
|
|
31369
|
+
createServiceTrail(request: CreateServiceTrailRequest): Promise<CreateServiceTrailResponse>;
|
|
30183
31370
|
createSimilarSecurityEventsQueryTaskWithOptions(request: CreateSimilarSecurityEventsQueryTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateSimilarSecurityEventsQueryTaskResponse>;
|
|
30184
31371
|
createSimilarSecurityEventsQueryTask(request: CreateSimilarSecurityEventsQueryTaskRequest): Promise<CreateSimilarSecurityEventsQueryTaskResponse>;
|
|
30185
31372
|
createSuspEventNoteWithOptions(request: CreateSuspEventNoteRequest, runtime: $Util.RuntimeOptions): Promise<CreateSuspEventNoteResponse>;
|
|
@@ -30196,6 +31383,8 @@ export default class Client extends OpenApi {
|
|
|
30196
31383
|
deleteBackupPolicy(request: DeleteBackupPolicyRequest): Promise<DeleteBackupPolicyResponse>;
|
|
30197
31384
|
deleteBackupPolicyMachineWithOptions(request: DeleteBackupPolicyMachineRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBackupPolicyMachineResponse>;
|
|
30198
31385
|
deleteBackupPolicyMachine(request: DeleteBackupPolicyMachineRequest): Promise<DeleteBackupPolicyMachineResponse>;
|
|
31386
|
+
deleteBinarySecurityPolicyWithOptions(request: DeleteBinarySecurityPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBinarySecurityPolicyResponse>;
|
|
31387
|
+
deleteBinarySecurityPolicy(request: DeleteBinarySecurityPolicyRequest): Promise<DeleteBinarySecurityPolicyResponse>;
|
|
30199
31388
|
deleteClientUserDefineRuleWithOptions(request: DeleteClientUserDefineRuleRequest, runtime: $Util.RuntimeOptions): Promise<DeleteClientUserDefineRuleResponse>;
|
|
30200
31389
|
deleteClientUserDefineRule(request: DeleteClientUserDefineRuleRequest): Promise<DeleteClientUserDefineRuleResponse>;
|
|
30201
31390
|
deleteCustomBlockRecordWithOptions(request: DeleteCustomBlockRecordRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCustomBlockRecordResponse>;
|
|
@@ -30237,6 +31426,8 @@ export default class Client extends OpenApi {
|
|
|
30237
31426
|
deletePrivateRegistry(request: DeletePrivateRegistryRequest): Promise<DeletePrivateRegistryResponse>;
|
|
30238
31427
|
deleteSecurityEventMarkMissListWithOptions(request: DeleteSecurityEventMarkMissListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSecurityEventMarkMissListResponse>;
|
|
30239
31428
|
deleteSecurityEventMarkMissList(request: DeleteSecurityEventMarkMissListRequest): Promise<DeleteSecurityEventMarkMissListResponse>;
|
|
31429
|
+
deleteServiceTrailWithOptions(request: DeleteServiceTrailRequest, runtime: $Util.RuntimeOptions): Promise<DeleteServiceTrailResponse>;
|
|
31430
|
+
deleteServiceTrail(request: DeleteServiceTrailRequest): Promise<DeleteServiceTrailResponse>;
|
|
30240
31431
|
deleteStrategyWithOptions(request: DeleteStrategyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteStrategyResponse>;
|
|
30241
31432
|
deleteStrategy(request: DeleteStrategyRequest): Promise<DeleteStrategyResponse>;
|
|
30242
31433
|
deleteSuspEventNodeWithOptions(request: DeleteSuspEventNodeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSuspEventNodeResponse>;
|
|
@@ -30550,6 +31741,8 @@ export default class Client extends OpenApi {
|
|
|
30550
31741
|
* @return DescribeImageVulListResponse
|
|
30551
31742
|
*/
|
|
30552
31743
|
describeImageVulList(request: DescribeImageVulListRequest): Promise<DescribeImageVulListResponse>;
|
|
31744
|
+
describeImageVulWhiteListWithOptions(request: DescribeImageVulWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImageVulWhiteListResponse>;
|
|
31745
|
+
describeImageVulWhiteList(request: DescribeImageVulWhiteListRequest): Promise<DescribeImageVulWhiteListResponse>;
|
|
30553
31746
|
describeInstallCaptchaWithOptions(request: DescribeInstallCaptchaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstallCaptchaResponse>;
|
|
30554
31747
|
describeInstallCaptcha(request: DescribeInstallCaptchaRequest): Promise<DescribeInstallCaptchaResponse>;
|
|
30555
31748
|
describeInstallCodeWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeInstallCodeResponse>;
|
|
@@ -30596,6 +31789,8 @@ export default class Client extends OpenApi {
|
|
|
30596
31789
|
describeMachineCanReboot(request: DescribeMachineCanRebootRequest): Promise<DescribeMachineCanRebootResponse>;
|
|
30597
31790
|
describeModuleConfigWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeModuleConfigResponse>;
|
|
30598
31791
|
describeModuleConfig(): Promise<DescribeModuleConfigResponse>;
|
|
31792
|
+
describeMonitorAccountsWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeMonitorAccountsResponse>;
|
|
31793
|
+
describeMonitorAccounts(): Promise<DescribeMonitorAccountsResponse>;
|
|
30599
31794
|
describeNoticeConfigWithOptions(request: DescribeNoticeConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNoticeConfigResponse>;
|
|
30600
31795
|
describeNoticeConfig(request: DescribeNoticeConfigRequest): Promise<DescribeNoticeConfigResponse>;
|
|
30601
31796
|
describeNsasSuspEventTypeWithOptions(request: DescribeNsasSuspEventTypeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNsasSuspEventTypeResponse>;
|
|
@@ -30775,6 +31970,8 @@ export default class Client extends OpenApi {
|
|
|
30775
31970
|
* @return DescribeSecurityCheckScheduleConfigResponse
|
|
30776
31971
|
*/
|
|
30777
31972
|
describeSecurityCheckScheduleConfig(request: DescribeSecurityCheckScheduleConfigRequest): Promise<DescribeSecurityCheckScheduleConfigResponse>;
|
|
31973
|
+
describeSecurityEventMarkMissListWithOptions(request: DescribeSecurityEventMarkMissListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityEventMarkMissListResponse>;
|
|
31974
|
+
describeSecurityEventMarkMissList(request: DescribeSecurityEventMarkMissListRequest): Promise<DescribeSecurityEventMarkMissListResponse>;
|
|
30778
31975
|
describeSecurityEventOperationStatusWithOptions(request: DescribeSecurityEventOperationStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityEventOperationStatusResponse>;
|
|
30779
31976
|
describeSecurityEventOperationStatus(request: DescribeSecurityEventOperationStatusRequest): Promise<DescribeSecurityEventOperationStatusResponse>;
|
|
30780
31977
|
describeSecurityEventOperationsWithOptions(request: DescribeSecurityEventOperationsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityEventOperationsResponse>;
|
|
@@ -30993,6 +32190,8 @@ export default class Client extends OpenApi {
|
|
|
30993
32190
|
fixCheckWarnings(request: FixCheckWarningsRequest): Promise<FixCheckWarningsResponse>;
|
|
30994
32191
|
generateOnceTaskWithOptions(request: GenerateOnceTaskRequest, runtime: $Util.RuntimeOptions): Promise<GenerateOnceTaskResponse>;
|
|
30995
32192
|
generateOnceTask(request: GenerateOnceTaskRequest): Promise<GenerateOnceTaskResponse>;
|
|
32193
|
+
getAgentlessTaskCountWithOptions(runtime: $Util.RuntimeOptions): Promise<GetAgentlessTaskCountResponse>;
|
|
32194
|
+
getAgentlessTaskCount(): Promise<GetAgentlessTaskCountResponse>;
|
|
30996
32195
|
getAlarmMachineCountWithOptions(request: GetAlarmMachineCountRequest, runtime: $Util.RuntimeOptions): Promise<GetAlarmMachineCountResponse>;
|
|
30997
32196
|
getAlarmMachineCount(request: GetAlarmMachineCountRequest): Promise<GetAlarmMachineCountResponse>;
|
|
30998
32197
|
getAppNetworkWithOptions(request: GetAppNetworkRequest, runtime: $Util.RuntimeOptions): Promise<GetAppNetworkResponse>;
|
|
@@ -31017,6 +32216,8 @@ export default class Client extends OpenApi {
|
|
|
31017
32216
|
getCheckRiskStatistics(request: GetCheckRiskStatisticsRequest): Promise<GetCheckRiskStatisticsResponse>;
|
|
31018
32217
|
getCheckSummaryWithOptions(request: GetCheckSummaryRequest, runtime: $Util.RuntimeOptions): Promise<GetCheckSummaryResponse>;
|
|
31019
32218
|
getCheckSummary(request: GetCheckSummaryRequest): Promise<GetCheckSummaryResponse>;
|
|
32219
|
+
getClientRatioStatisticWithOptions(request: GetClientRatioStatisticRequest, runtime: $Util.RuntimeOptions): Promise<GetClientRatioStatisticResponse>;
|
|
32220
|
+
getClientRatioStatistic(request: GetClientRatioStatisticRequest): Promise<GetClientRatioStatisticResponse>;
|
|
31020
32221
|
getClientUserDefineRuleWithOptions(request: GetClientUserDefineRuleRequest, runtime: $Util.RuntimeOptions): Promise<GetClientUserDefineRuleResponse>;
|
|
31021
32222
|
getClientUserDefineRule(request: GetClientUserDefineRuleRequest): Promise<GetClientUserDefineRuleResponse>;
|
|
31022
32223
|
getCloudAssetCriteriaWithOptions(request: GetCloudAssetCriteriaRequest, runtime: $Util.RuntimeOptions): Promise<GetCloudAssetCriteriaResponse>;
|
|
@@ -31072,6 +32273,8 @@ export default class Client extends OpenApi {
|
|
|
31072
32273
|
getPropertyScheduleConfig(request: GetPropertyScheduleConfigRequest): Promise<GetPropertyScheduleConfigResponse>;
|
|
31073
32274
|
getRulesCountWithOptions(runtime: $Util.RuntimeOptions): Promise<GetRulesCountResponse>;
|
|
31074
32275
|
getRulesCount(): Promise<GetRulesCountResponse>;
|
|
32276
|
+
getServiceTrailWithOptions(request: GetServiceTrailRequest, runtime: $Util.RuntimeOptions): Promise<GetServiceTrailResponse>;
|
|
32277
|
+
getServiceTrail(request: GetServiceTrailRequest): Promise<GetServiceTrailResponse>;
|
|
31075
32278
|
getSuspiciousStatisticsWithOptions(request: GetSuspiciousStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<GetSuspiciousStatisticsResponse>;
|
|
31076
32279
|
getSuspiciousStatistics(request: GetSuspiciousStatisticsRequest): Promise<GetSuspiciousStatisticsResponse>;
|
|
31077
32280
|
getVulStatisticsWithOptions(request: GetVulStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<GetVulStatisticsResponse>;
|
|
@@ -31109,6 +32312,16 @@ export default class Client extends OpenApi {
|
|
|
31109
32312
|
installUniBackupAgent(request: InstallUniBackupAgentRequest): Promise<InstallUniBackupAgentResponse>;
|
|
31110
32313
|
joinWebLockProcessWhiteListWithOptions(request: JoinWebLockProcessWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<JoinWebLockProcessWhiteListResponse>;
|
|
31111
32314
|
joinWebLockProcessWhiteList(request: JoinWebLockProcessWhiteListRequest): Promise<JoinWebLockProcessWhiteListResponse>;
|
|
32315
|
+
listAgentlessRegionWithOptions(runtime: $Util.RuntimeOptions): Promise<ListAgentlessRegionResponse>;
|
|
32316
|
+
listAgentlessRegion(): Promise<ListAgentlessRegionResponse>;
|
|
32317
|
+
listAgentlessRelateMaliciousWithOptions(request: ListAgentlessRelateMaliciousRequest, runtime: $Util.RuntimeOptions): Promise<ListAgentlessRelateMaliciousResponse>;
|
|
32318
|
+
listAgentlessRelateMalicious(request: ListAgentlessRelateMaliciousRequest): Promise<ListAgentlessRelateMaliciousResponse>;
|
|
32319
|
+
listAgentlessRiskUuidWithOptions(request: ListAgentlessRiskUuidRequest, runtime: $Util.RuntimeOptions): Promise<ListAgentlessRiskUuidResponse>;
|
|
32320
|
+
listAgentlessRiskUuid(request: ListAgentlessRiskUuidRequest): Promise<ListAgentlessRiskUuidResponse>;
|
|
32321
|
+
listAgentlessTaskWithOptions(request: ListAgentlessTaskRequest, runtime: $Util.RuntimeOptions): Promise<ListAgentlessTaskResponse>;
|
|
32322
|
+
listAgentlessTask(request: ListAgentlessTaskRequest): Promise<ListAgentlessTaskResponse>;
|
|
32323
|
+
listAssetRefreshTaskConfigWithOptions(request: ListAssetRefreshTaskConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListAssetRefreshTaskConfigResponse>;
|
|
32324
|
+
listAssetRefreshTaskConfig(request: ListAssetRefreshTaskConfigRequest): Promise<ListAssetRefreshTaskConfigResponse>;
|
|
31112
32325
|
listAssetSelectionSelectedTargetWithOptions(request: ListAssetSelectionSelectedTargetRequest, runtime: $Util.RuntimeOptions): Promise<ListAssetSelectionSelectedTargetResponse>;
|
|
31113
32326
|
listAssetSelectionSelectedTarget(request: ListAssetSelectionSelectedTargetRequest): Promise<ListAssetSelectionSelectedTargetResponse>;
|
|
31114
32327
|
listAssetSelectionTargetWithOptions(request: ListAssetSelectionTargetRequest, runtime: $Util.RuntimeOptions): Promise<ListAssetSelectionTargetResponse>;
|
|
@@ -31506,8 +32719,8 @@ export default class Client extends OpenApi {
|
|
|
31506
32719
|
startPreCheckDatabase(request: StartPreCheckDatabaseRequest): Promise<StartPreCheckDatabaseResponse>;
|
|
31507
32720
|
startVirusScanTaskWithOptions(request: StartVirusScanTaskRequest, runtime: $Util.RuntimeOptions): Promise<StartVirusScanTaskResponse>;
|
|
31508
32721
|
startVirusScanTask(request: StartVirusScanTaskRequest): Promise<StartVirusScanTaskResponse>;
|
|
31509
|
-
submitCheckWithOptions(runtime: $Util.RuntimeOptions): Promise<SubmitCheckResponse>;
|
|
31510
|
-
submitCheck(): Promise<SubmitCheckResponse>;
|
|
32722
|
+
submitCheckWithOptions(request: SubmitCheckRequest, runtime: $Util.RuntimeOptions): Promise<SubmitCheckResponse>;
|
|
32723
|
+
submitCheck(request: SubmitCheckRequest): Promise<SubmitCheckResponse>;
|
|
31511
32724
|
/**
|
|
31512
32725
|
* If you no longer require protection for servers that are not deployed on Alibaba Cloud, you can call this operation to unbind the servers from Security Center. After you unbind a server that is not deployed on Alibaba Cloud from Security Center, the server no longer consumes the quota of protected servers or protected server vCPUs. This way, you can install the Security Center agent on other servers to meet your business requirements.
|
|
31513
32726
|
* > You can unbind only the servers that are not deployed on Alibaba Cloud from Security Center. If you use an Alibaba Cloud Elastic Compute Service (ECS) instance, you do not need to unbind the ECS instance. If you uninstall the Security Center agent from an ECS instance, the ECS instance still exists as a disconnected server in the asset list of the Security Center console. The ECS instance is not removed from the asset list.
|