@alicloud/sas20181203 2.1.8 → 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 +414 -4
- package/dist/client.js +809 -6
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1009 -6
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,10 +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[];
|
|
605
698
|
cycleDays?: number[];
|
|
699
|
+
enableAddCheck?: boolean;
|
|
700
|
+
enableAutoCheck?: boolean;
|
|
606
701
|
endTime?: number;
|
|
607
702
|
regionId?: string;
|
|
703
|
+
removedCheck?: ChangeCheckConfigRequestRemovedCheck[];
|
|
608
704
|
standardIds?: number[];
|
|
609
705
|
startTime?: number;
|
|
610
706
|
static names(): {
|
|
@@ -861,6 +957,8 @@ export declare class ConfirmVirusEventsResponse extends $tea.Model {
|
|
|
861
957
|
}
|
|
862
958
|
export declare class CreateAgentlessScanTaskRequest extends $tea.Model {
|
|
863
959
|
autoDeleteDays?: number;
|
|
960
|
+
releaseAfterScan?: boolean;
|
|
961
|
+
scanDataDisk?: boolean;
|
|
864
962
|
targetType?: number;
|
|
865
963
|
uuidList?: string[];
|
|
866
964
|
static names(): {
|
|
@@ -2257,6 +2355,48 @@ export declare class DeleteBackupPolicyMachineResponse extends $tea.Model {
|
|
|
2257
2355
|
[key: string]: any;
|
|
2258
2356
|
});
|
|
2259
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
|
+
}
|
|
2260
2400
|
export declare class DeleteClientUserDefineRuleRequest extends $tea.Model {
|
|
2261
2401
|
idList?: number[];
|
|
2262
2402
|
static names(): {
|
|
@@ -3165,8 +3305,10 @@ export declare class DescribeAccessKeyLeakDetailResponseBody extends $tea.Model
|
|
|
3165
3305
|
remark?: string;
|
|
3166
3306
|
requestId?: string;
|
|
3167
3307
|
source?: string;
|
|
3308
|
+
tokenValid?: number;
|
|
3168
3309
|
type?: string;
|
|
3169
3310
|
whitelistStatus?: string;
|
|
3311
|
+
whitelistTime?: number;
|
|
3170
3312
|
static names(): {
|
|
3171
3313
|
[key: string]: string;
|
|
3172
3314
|
};
|
|
@@ -3438,6 +3580,7 @@ export declare class DescribeAlarmEventDetailResponse extends $tea.Model {
|
|
|
3438
3580
|
export declare class DescribeAlarmEventStackInfoRequest extends $tea.Model {
|
|
3439
3581
|
eventName?: string;
|
|
3440
3582
|
lang?: string;
|
|
3583
|
+
resourceDirectoryAccountId?: number;
|
|
3441
3584
|
sourceIp?: string;
|
|
3442
3585
|
uniqueInfo?: string;
|
|
3443
3586
|
uuid?: string;
|
|
@@ -3713,6 +3856,7 @@ export declare class DescribeAssetDetailByUuidResponse extends $tea.Model {
|
|
|
3713
3856
|
}
|
|
3714
3857
|
export declare class DescribeAssetDetailByUuidsRequest extends $tea.Model {
|
|
3715
3858
|
lang?: string;
|
|
3859
|
+
resourceDirectoryAccountId?: number;
|
|
3716
3860
|
uuids?: string;
|
|
3717
3861
|
static names(): {
|
|
3718
3862
|
[key: string]: string;
|
|
@@ -4680,6 +4824,7 @@ export declare class DescribeCloudCenterInstancesRequest extends $tea.Model {
|
|
|
4680
4824
|
noGroupTrace?: boolean;
|
|
4681
4825
|
pageSize?: number;
|
|
4682
4826
|
regionId?: string;
|
|
4827
|
+
resourceDirectoryAccountId?: number;
|
|
4683
4828
|
useNextToken?: boolean;
|
|
4684
4829
|
static names(): {
|
|
4685
4830
|
[key: string]: string;
|
|
@@ -6198,6 +6343,7 @@ export declare class DescribeExposedStatisticsDetailResponse extends $tea.Model
|
|
|
6198
6343
|
export declare class DescribeFieldStatisticsRequest extends $tea.Model {
|
|
6199
6344
|
machineTypes?: string;
|
|
6200
6345
|
regionId?: string;
|
|
6346
|
+
resourceDirectoryAccountId?: number;
|
|
6201
6347
|
static names(): {
|
|
6202
6348
|
[key: string]: string;
|
|
6203
6349
|
};
|
|
@@ -6539,6 +6685,7 @@ export declare class DescribeGroupedVulRequest extends $tea.Model {
|
|
|
6539
6685
|
lang?: string;
|
|
6540
6686
|
necessity?: string;
|
|
6541
6687
|
pageSize?: number;
|
|
6688
|
+
resourceDirectoryAccountId?: number;
|
|
6542
6689
|
searchTags?: string;
|
|
6543
6690
|
targetType?: string;
|
|
6544
6691
|
type?: string;
|
|
@@ -7846,6 +7993,56 @@ export declare class DescribeImageVulListResponse extends $tea.Model {
|
|
|
7846
7993
|
[key: string]: any;
|
|
7847
7994
|
});
|
|
7848
7995
|
}
|
|
7996
|
+
export declare class DescribeImageVulWhiteListRequest extends $tea.Model {
|
|
7997
|
+
aliasName?: string;
|
|
7998
|
+
currentPage?: number;
|
|
7999
|
+
lang?: string;
|
|
8000
|
+
pageSize?: number;
|
|
8001
|
+
static names(): {
|
|
8002
|
+
[key: string]: string;
|
|
8003
|
+
};
|
|
8004
|
+
static types(): {
|
|
8005
|
+
[key: string]: any;
|
|
8006
|
+
};
|
|
8007
|
+
constructor(map?: {
|
|
8008
|
+
[key: string]: any;
|
|
8009
|
+
});
|
|
8010
|
+
}
|
|
8011
|
+
export declare class DescribeImageVulWhiteListResponseBody extends $tea.Model {
|
|
8012
|
+
code?: string;
|
|
8013
|
+
httpStatusCode?: number;
|
|
8014
|
+
imageVulWhitelist?: DescribeImageVulWhiteListResponseBodyImageVulWhitelist[];
|
|
8015
|
+
message?: string;
|
|
8016
|
+
pageInfo?: DescribeImageVulWhiteListResponseBodyPageInfo;
|
|
8017
|
+
requestId?: string;
|
|
8018
|
+
success?: boolean;
|
|
8019
|
+
timeCost?: number;
|
|
8020
|
+
static names(): {
|
|
8021
|
+
[key: string]: string;
|
|
8022
|
+
};
|
|
8023
|
+
static types(): {
|
|
8024
|
+
[key: string]: any;
|
|
8025
|
+
};
|
|
8026
|
+
constructor(map?: {
|
|
8027
|
+
[key: string]: any;
|
|
8028
|
+
});
|
|
8029
|
+
}
|
|
8030
|
+
export declare class DescribeImageVulWhiteListResponse extends $tea.Model {
|
|
8031
|
+
headers: {
|
|
8032
|
+
[key: string]: string;
|
|
8033
|
+
};
|
|
8034
|
+
statusCode: number;
|
|
8035
|
+
body: DescribeImageVulWhiteListResponseBody;
|
|
8036
|
+
static names(): {
|
|
8037
|
+
[key: string]: string;
|
|
8038
|
+
};
|
|
8039
|
+
static types(): {
|
|
8040
|
+
[key: string]: any;
|
|
8041
|
+
};
|
|
8042
|
+
constructor(map?: {
|
|
8043
|
+
[key: string]: any;
|
|
8044
|
+
});
|
|
8045
|
+
}
|
|
7849
8046
|
export declare class DescribeInstallCaptchaRequest extends $tea.Model {
|
|
7850
8047
|
deadline?: string;
|
|
7851
8048
|
lang?: string;
|
|
@@ -8436,6 +8633,35 @@ export declare class DescribeModuleConfigResponse extends $tea.Model {
|
|
|
8436
8633
|
[key: string]: any;
|
|
8437
8634
|
});
|
|
8438
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
|
+
}
|
|
8439
8665
|
export declare class DescribeNoticeConfigRequest extends $tea.Model {
|
|
8440
8666
|
sourceIp?: string;
|
|
8441
8667
|
static names(): {
|
|
@@ -10775,6 +11001,7 @@ export declare class DescribeSupportRegionResponse extends $tea.Model {
|
|
|
10775
11001
|
export declare class DescribeSuspEventDetailRequest extends $tea.Model {
|
|
10776
11002
|
from?: string;
|
|
10777
11003
|
lang?: string;
|
|
11004
|
+
resourceDirectoryAccountId?: number;
|
|
10778
11005
|
sourceIp?: string;
|
|
10779
11006
|
suspiciousEventId?: number;
|
|
10780
11007
|
static names(): {
|
|
@@ -10998,6 +11225,7 @@ export declare class DescribeSuspEventsRequest extends $tea.Model {
|
|
|
10998
11225
|
pageSize?: string;
|
|
10999
11226
|
parentEventTypes?: string;
|
|
11000
11227
|
remark?: string;
|
|
11228
|
+
resourceDirectoryAccountId?: number;
|
|
11001
11229
|
sortColumn?: string;
|
|
11002
11230
|
sortType?: string;
|
|
11003
11231
|
source?: string;
|
|
@@ -12073,6 +12301,7 @@ export declare class DescribeVulDetailsRequest extends $tea.Model {
|
|
|
12073
12301
|
aliasName?: string;
|
|
12074
12302
|
lang?: string;
|
|
12075
12303
|
name?: string;
|
|
12304
|
+
resourceDirectoryAccountId?: number;
|
|
12076
12305
|
type?: string;
|
|
12077
12306
|
static names(): {
|
|
12078
12307
|
[key: string]: string;
|
|
@@ -12202,6 +12431,7 @@ export declare class DescribeVulListRequest extends $tea.Model {
|
|
|
12202
12431
|
necessity?: string;
|
|
12203
12432
|
pageSize?: number;
|
|
12204
12433
|
remark?: string;
|
|
12434
|
+
resourceDirectoryAccountId?: number;
|
|
12205
12435
|
type?: string;
|
|
12206
12436
|
uuids?: string;
|
|
12207
12437
|
vpcInstanceIds?: string;
|
|
@@ -13663,10 +13893,13 @@ export declare class GenerateOnceTaskResponse extends $tea.Model {
|
|
|
13663
13893
|
});
|
|
13664
13894
|
}
|
|
13665
13895
|
export declare class GetAgentlessTaskCountResponseBody extends $tea.Model {
|
|
13896
|
+
baselineCheckCount?: number;
|
|
13897
|
+
cveVulCount?: number;
|
|
13666
13898
|
lastTaskTime?: number;
|
|
13667
13899
|
maliciousFile?: number;
|
|
13668
13900
|
requestId?: string;
|
|
13669
13901
|
riskMachine?: number;
|
|
13902
|
+
scaVulCount?: number;
|
|
13670
13903
|
scanMachine?: number;
|
|
13671
13904
|
vulnerability?: number;
|
|
13672
13905
|
static names(): {
|
|
@@ -13991,8 +14224,11 @@ export declare class GetBackupStorageCountResponse extends $tea.Model {
|
|
|
13991
14224
|
}
|
|
13992
14225
|
export declare class GetCheckConfigResponseBody extends $tea.Model {
|
|
13993
14226
|
cycleDays?: number[];
|
|
14227
|
+
enableAddCheck?: boolean;
|
|
14228
|
+
enableAutoCheck?: boolean;
|
|
13994
14229
|
endTime?: number;
|
|
13995
14230
|
requestId?: string;
|
|
14231
|
+
selectedChecks?: GetCheckConfigResponseBodySelectedChecks[];
|
|
13996
14232
|
standards?: GetCheckConfigResponseBodyStandards[];
|
|
13997
14233
|
startTime?: number;
|
|
13998
14234
|
static names(): {
|
|
@@ -14196,6 +14432,7 @@ export declare class GetCheckSummaryResponse extends $tea.Model {
|
|
|
14196
14432
|
});
|
|
14197
14433
|
}
|
|
14198
14434
|
export declare class GetClientRatioStatisticRequest extends $tea.Model {
|
|
14435
|
+
resourceDirectoryAccountId?: number;
|
|
14199
14436
|
statisticTypes?: string[];
|
|
14200
14437
|
timeEnd?: number;
|
|
14201
14438
|
timeStart?: number;
|
|
@@ -15852,6 +16089,47 @@ export declare class ListAgentlessTaskResponse extends $tea.Model {
|
|
|
15852
16089
|
[key: string]: any;
|
|
15853
16090
|
});
|
|
15854
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
|
+
}
|
|
15855
16133
|
export declare class ListAssetSelectionSelectedTargetRequest extends $tea.Model {
|
|
15856
16134
|
selectionKey?: string;
|
|
15857
16135
|
targetList?: string[];
|
|
@@ -16145,6 +16423,7 @@ export declare class ListCheckItemWarningSummaryResponse extends $tea.Model {
|
|
|
16145
16423
|
export declare class ListCheckResultRequest extends $tea.Model {
|
|
16146
16424
|
checkKey?: string;
|
|
16147
16425
|
currentPage?: number;
|
|
16426
|
+
customParam?: boolean;
|
|
16148
16427
|
instanceIds?: string[];
|
|
16149
16428
|
instanceTypes?: string[];
|
|
16150
16429
|
lang?: string;
|
|
@@ -21634,6 +21913,18 @@ export declare class StartVirusScanTaskResponse extends $tea.Model {
|
|
|
21634
21913
|
[key: string]: any;
|
|
21635
21914
|
});
|
|
21636
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
|
+
}
|
|
21637
21928
|
export declare class SubmitCheckResponseBody extends $tea.Model {
|
|
21638
21929
|
data?: SubmitCheckResponseBodyData;
|
|
21639
21930
|
requestId?: string;
|
|
@@ -22332,6 +22623,46 @@ export declare class AdvanceSecurityEventOperationsResponseBodySecurityEventOper
|
|
|
22332
22623
|
[key: string]: any;
|
|
22333
22624
|
});
|
|
22334
22625
|
}
|
|
22626
|
+
export declare class ChangeAssetRefreshTaskConfigRequestAssetRefreshConfigs extends $tea.Model {
|
|
22627
|
+
schedulePeriod?: number;
|
|
22628
|
+
status?: number;
|
|
22629
|
+
vendor?: number;
|
|
22630
|
+
static names(): {
|
|
22631
|
+
[key: string]: string;
|
|
22632
|
+
};
|
|
22633
|
+
static types(): {
|
|
22634
|
+
[key: string]: any;
|
|
22635
|
+
};
|
|
22636
|
+
constructor(map?: {
|
|
22637
|
+
[key: string]: any;
|
|
22638
|
+
});
|
|
22639
|
+
}
|
|
22640
|
+
export declare class ChangeCheckConfigRequestAddedCheck extends $tea.Model {
|
|
22641
|
+
checkId?: number;
|
|
22642
|
+
sectionId?: number;
|
|
22643
|
+
static names(): {
|
|
22644
|
+
[key: string]: string;
|
|
22645
|
+
};
|
|
22646
|
+
static types(): {
|
|
22647
|
+
[key: string]: any;
|
|
22648
|
+
};
|
|
22649
|
+
constructor(map?: {
|
|
22650
|
+
[key: string]: any;
|
|
22651
|
+
});
|
|
22652
|
+
}
|
|
22653
|
+
export declare class ChangeCheckConfigRequestRemovedCheck extends $tea.Model {
|
|
22654
|
+
checkId?: number;
|
|
22655
|
+
sectionId?: number;
|
|
22656
|
+
static names(): {
|
|
22657
|
+
[key: string]: string;
|
|
22658
|
+
};
|
|
22659
|
+
static types(): {
|
|
22660
|
+
[key: string]: any;
|
|
22661
|
+
};
|
|
22662
|
+
constructor(map?: {
|
|
22663
|
+
[key: string]: any;
|
|
22664
|
+
});
|
|
22665
|
+
}
|
|
22335
22666
|
export declare class ChangeCheckCustomConfigRequestCustomConfigs extends $tea.Model {
|
|
22336
22667
|
name?: string;
|
|
22337
22668
|
operation?: string;
|
|
@@ -25134,6 +25465,38 @@ export declare class DescribeImageVulListResponseBodyVulRecords extends $tea.Mod
|
|
|
25134
25465
|
[key: string]: any;
|
|
25135
25466
|
});
|
|
25136
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
|
+
}
|
|
25137
25500
|
export declare class DescribeInstallCodesResponseBodyInstallCodes extends $tea.Model {
|
|
25138
25501
|
captchaCode?: string;
|
|
25139
25502
|
expiredDate?: number;
|
|
@@ -28291,6 +28654,19 @@ export declare class GetBackupStorageCountResponseBodyBackupStorageCount extends
|
|
|
28291
28654
|
[key: string]: any;
|
|
28292
28655
|
});
|
|
28293
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
|
+
}
|
|
28294
28670
|
export declare class GetCheckConfigResponseBodyStandards extends $tea.Model {
|
|
28295
28671
|
id?: number;
|
|
28296
28672
|
showName?: string;
|
|
@@ -29294,6 +29670,20 @@ export declare class ListAgentlessTaskResponseBodyPageInfo extends $tea.Model {
|
|
|
29294
29670
|
[key: string]: any;
|
|
29295
29671
|
});
|
|
29296
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
|
+
}
|
|
29297
29687
|
export declare class ListAssetSelectionSelectedTargetResponseBodyData extends $tea.Model {
|
|
29298
29688
|
targetId?: string;
|
|
29299
29689
|
targetName?: string;
|
|
@@ -29360,6 +29750,7 @@ export declare class ListCheckInstanceResultResponseBodyBasicData extends $tea.M
|
|
|
29360
29750
|
instanceName?: string;
|
|
29361
29751
|
regionId?: string;
|
|
29362
29752
|
status?: string;
|
|
29753
|
+
statusMessage?: string;
|
|
29363
29754
|
static names(): {
|
|
29364
29755
|
[key: string]: string;
|
|
29365
29756
|
};
|
|
@@ -29546,6 +29937,7 @@ export declare class ListCheckResultResponseBodyChecks extends $tea.Model {
|
|
|
29546
29937
|
lastCheckTime?: number;
|
|
29547
29938
|
riskLevel?: string;
|
|
29548
29939
|
status?: string;
|
|
29940
|
+
statusMessage?: string;
|
|
29549
29941
|
taskId?: string;
|
|
29550
29942
|
trialPermission?: boolean;
|
|
29551
29943
|
vendor?: string;
|
|
@@ -30822,6 +31214,8 @@ export default class Client extends OpenApi {
|
|
|
30822
31214
|
addCheckResultWhiteList(request: AddCheckResultWhiteListRequest): Promise<AddCheckResultWhiteListResponse>;
|
|
30823
31215
|
addClientUserDefineRuleWithOptions(request: AddClientUserDefineRuleRequest, runtime: $Util.RuntimeOptions): Promise<AddClientUserDefineRuleResponse>;
|
|
30824
31216
|
addClientUserDefineRule(request: AddClientUserDefineRuleRequest): Promise<AddClientUserDefineRuleResponse>;
|
|
31217
|
+
addImageVulWhiteListWithOptions(request: AddImageVulWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<AddImageVulWhiteListResponse>;
|
|
31218
|
+
addImageVulWhiteList(request: AddImageVulWhiteListRequest): Promise<AddImageVulWhiteListResponse>;
|
|
30825
31219
|
addInstallCodeWithOptions(request: AddInstallCodeRequest, runtime: $Util.RuntimeOptions): Promise<AddInstallCodeResponse>;
|
|
30826
31220
|
addInstallCode(request: AddInstallCodeRequest): Promise<AddInstallCodeResponse>;
|
|
30827
31221
|
addPrivateRegistryWithOptions(request: AddPrivateRegistryRequest, runtime: $Util.RuntimeOptions): Promise<AddPrivateRegistryResponse>;
|
|
@@ -30853,6 +31247,8 @@ export default class Client extends OpenApi {
|
|
|
30853
31247
|
bindAuthToMachine(request: BindAuthToMachineRequest): Promise<BindAuthToMachineResponse>;
|
|
30854
31248
|
cancelOnceTaskWithOptions(request: CancelOnceTaskRequest, runtime: $Util.RuntimeOptions): Promise<CancelOnceTaskResponse>;
|
|
30855
31249
|
cancelOnceTask(request: CancelOnceTaskRequest): Promise<CancelOnceTaskResponse>;
|
|
31250
|
+
changeAssetRefreshTaskConfigWithOptions(request: ChangeAssetRefreshTaskConfigRequest, runtime: $Util.RuntimeOptions): Promise<ChangeAssetRefreshTaskConfigResponse>;
|
|
31251
|
+
changeAssetRefreshTaskConfig(request: ChangeAssetRefreshTaskConfigRequest): Promise<ChangeAssetRefreshTaskConfigResponse>;
|
|
30856
31252
|
changeCheckConfigWithOptions(request: ChangeCheckConfigRequest, runtime: $Util.RuntimeOptions): Promise<ChangeCheckConfigResponse>;
|
|
30857
31253
|
changeCheckConfig(request: ChangeCheckConfigRequest): Promise<ChangeCheckConfigResponse>;
|
|
30858
31254
|
changeCheckCustomConfigWithOptions(request: ChangeCheckCustomConfigRequest, runtime: $Util.RuntimeOptions): Promise<ChangeCheckCustomConfigResponse>;
|
|
@@ -30881,7 +31277,10 @@ export default class Client extends OpenApi {
|
|
|
30881
31277
|
createCycleTask(request: CreateCycleTaskRequest): Promise<CreateCycleTaskResponse>;
|
|
30882
31278
|
/**
|
|
30883
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.
|
|
30884
|
-
* 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.
|
|
30885
31284
|
*
|
|
30886
31285
|
* @param request CreateFileDetectRequest
|
|
30887
31286
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -30890,7 +31289,10 @@ export default class Client extends OpenApi {
|
|
|
30890
31289
|
createFileDetectWithOptions(request: CreateFileDetectRequest, runtime: $Util.RuntimeOptions): Promise<CreateFileDetectResponse>;
|
|
30891
31290
|
/**
|
|
30892
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.
|
|
30893
|
-
* 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.
|
|
30894
31296
|
*
|
|
30895
31297
|
* @param request CreateFileDetectRequest
|
|
30896
31298
|
* @return CreateFileDetectResponse
|
|
@@ -30981,6 +31383,8 @@ export default class Client extends OpenApi {
|
|
|
30981
31383
|
deleteBackupPolicy(request: DeleteBackupPolicyRequest): Promise<DeleteBackupPolicyResponse>;
|
|
30982
31384
|
deleteBackupPolicyMachineWithOptions(request: DeleteBackupPolicyMachineRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBackupPolicyMachineResponse>;
|
|
30983
31385
|
deleteBackupPolicyMachine(request: DeleteBackupPolicyMachineRequest): Promise<DeleteBackupPolicyMachineResponse>;
|
|
31386
|
+
deleteBinarySecurityPolicyWithOptions(request: DeleteBinarySecurityPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBinarySecurityPolicyResponse>;
|
|
31387
|
+
deleteBinarySecurityPolicy(request: DeleteBinarySecurityPolicyRequest): Promise<DeleteBinarySecurityPolicyResponse>;
|
|
30984
31388
|
deleteClientUserDefineRuleWithOptions(request: DeleteClientUserDefineRuleRequest, runtime: $Util.RuntimeOptions): Promise<DeleteClientUserDefineRuleResponse>;
|
|
30985
31389
|
deleteClientUserDefineRule(request: DeleteClientUserDefineRuleRequest): Promise<DeleteClientUserDefineRuleResponse>;
|
|
30986
31390
|
deleteCustomBlockRecordWithOptions(request: DeleteCustomBlockRecordRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCustomBlockRecordResponse>;
|
|
@@ -31337,6 +31741,8 @@ export default class Client extends OpenApi {
|
|
|
31337
31741
|
* @return DescribeImageVulListResponse
|
|
31338
31742
|
*/
|
|
31339
31743
|
describeImageVulList(request: DescribeImageVulListRequest): Promise<DescribeImageVulListResponse>;
|
|
31744
|
+
describeImageVulWhiteListWithOptions(request: DescribeImageVulWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImageVulWhiteListResponse>;
|
|
31745
|
+
describeImageVulWhiteList(request: DescribeImageVulWhiteListRequest): Promise<DescribeImageVulWhiteListResponse>;
|
|
31340
31746
|
describeInstallCaptchaWithOptions(request: DescribeInstallCaptchaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstallCaptchaResponse>;
|
|
31341
31747
|
describeInstallCaptcha(request: DescribeInstallCaptchaRequest): Promise<DescribeInstallCaptchaResponse>;
|
|
31342
31748
|
describeInstallCodeWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeInstallCodeResponse>;
|
|
@@ -31383,6 +31789,8 @@ export default class Client extends OpenApi {
|
|
|
31383
31789
|
describeMachineCanReboot(request: DescribeMachineCanRebootRequest): Promise<DescribeMachineCanRebootResponse>;
|
|
31384
31790
|
describeModuleConfigWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeModuleConfigResponse>;
|
|
31385
31791
|
describeModuleConfig(): Promise<DescribeModuleConfigResponse>;
|
|
31792
|
+
describeMonitorAccountsWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeMonitorAccountsResponse>;
|
|
31793
|
+
describeMonitorAccounts(): Promise<DescribeMonitorAccountsResponse>;
|
|
31386
31794
|
describeNoticeConfigWithOptions(request: DescribeNoticeConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNoticeConfigResponse>;
|
|
31387
31795
|
describeNoticeConfig(request: DescribeNoticeConfigRequest): Promise<DescribeNoticeConfigResponse>;
|
|
31388
31796
|
describeNsasSuspEventTypeWithOptions(request: DescribeNsasSuspEventTypeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNsasSuspEventTypeResponse>;
|
|
@@ -31912,6 +32320,8 @@ export default class Client extends OpenApi {
|
|
|
31912
32320
|
listAgentlessRiskUuid(request: ListAgentlessRiskUuidRequest): Promise<ListAgentlessRiskUuidResponse>;
|
|
31913
32321
|
listAgentlessTaskWithOptions(request: ListAgentlessTaskRequest, runtime: $Util.RuntimeOptions): Promise<ListAgentlessTaskResponse>;
|
|
31914
32322
|
listAgentlessTask(request: ListAgentlessTaskRequest): Promise<ListAgentlessTaskResponse>;
|
|
32323
|
+
listAssetRefreshTaskConfigWithOptions(request: ListAssetRefreshTaskConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListAssetRefreshTaskConfigResponse>;
|
|
32324
|
+
listAssetRefreshTaskConfig(request: ListAssetRefreshTaskConfigRequest): Promise<ListAssetRefreshTaskConfigResponse>;
|
|
31915
32325
|
listAssetSelectionSelectedTargetWithOptions(request: ListAssetSelectionSelectedTargetRequest, runtime: $Util.RuntimeOptions): Promise<ListAssetSelectionSelectedTargetResponse>;
|
|
31916
32326
|
listAssetSelectionSelectedTarget(request: ListAssetSelectionSelectedTargetRequest): Promise<ListAssetSelectionSelectedTargetResponse>;
|
|
31917
32327
|
listAssetSelectionTargetWithOptions(request: ListAssetSelectionTargetRequest, runtime: $Util.RuntimeOptions): Promise<ListAssetSelectionTargetResponse>;
|
|
@@ -32309,8 +32719,8 @@ export default class Client extends OpenApi {
|
|
|
32309
32719
|
startPreCheckDatabase(request: StartPreCheckDatabaseRequest): Promise<StartPreCheckDatabaseResponse>;
|
|
32310
32720
|
startVirusScanTaskWithOptions(request: StartVirusScanTaskRequest, runtime: $Util.RuntimeOptions): Promise<StartVirusScanTaskResponse>;
|
|
32311
32721
|
startVirusScanTask(request: StartVirusScanTaskRequest): Promise<StartVirusScanTaskResponse>;
|
|
32312
|
-
submitCheckWithOptions(runtime: $Util.RuntimeOptions): Promise<SubmitCheckResponse>;
|
|
32313
|
-
submitCheck(): Promise<SubmitCheckResponse>;
|
|
32722
|
+
submitCheckWithOptions(request: SubmitCheckRequest, runtime: $Util.RuntimeOptions): Promise<SubmitCheckResponse>;
|
|
32723
|
+
submitCheck(request: SubmitCheckRequest): Promise<SubmitCheckResponse>;
|
|
32314
32724
|
/**
|
|
32315
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.
|
|
32316
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.
|