@alicloud/sas20181203 1.1.23 → 1.1.26
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 +211 -0
- package/dist/client.js +392 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +496 -0
package/dist/client.d.ts
CHANGED
|
@@ -6094,6 +6094,9 @@ export declare class DescribeWarningExportInfoResponse extends $tea.Model {
|
|
|
6094
6094
|
});
|
|
6095
6095
|
}
|
|
6096
6096
|
export declare class DescribeWarningMachinesRequest extends $tea.Model {
|
|
6097
|
+
clusterId?: string;
|
|
6098
|
+
containerFieldName?: string;
|
|
6099
|
+
containerFieldValue?: string;
|
|
6097
6100
|
currentPage?: number;
|
|
6098
6101
|
lang?: string;
|
|
6099
6102
|
machineName?: string;
|
|
@@ -6101,6 +6104,7 @@ export declare class DescribeWarningMachinesRequest extends $tea.Model {
|
|
|
6101
6104
|
riskId?: number;
|
|
6102
6105
|
sourceIp?: string;
|
|
6103
6106
|
strategyId?: number;
|
|
6107
|
+
targetType?: string;
|
|
6104
6108
|
uuids?: string;
|
|
6105
6109
|
static names(): {
|
|
6106
6110
|
[key: string]: string;
|
|
@@ -6463,6 +6467,50 @@ export declare class GetBackupStorageCountResponse extends $tea.Model {
|
|
|
6463
6467
|
[key: string]: any;
|
|
6464
6468
|
});
|
|
6465
6469
|
}
|
|
6470
|
+
export declare class GetCheckDetailRequest extends $tea.Model {
|
|
6471
|
+
checkId?: number;
|
|
6472
|
+
lang?: string;
|
|
6473
|
+
static names(): {
|
|
6474
|
+
[key: string]: string;
|
|
6475
|
+
};
|
|
6476
|
+
static types(): {
|
|
6477
|
+
[key: string]: any;
|
|
6478
|
+
};
|
|
6479
|
+
constructor(map?: {
|
|
6480
|
+
[key: string]: any;
|
|
6481
|
+
});
|
|
6482
|
+
}
|
|
6483
|
+
export declare class GetCheckDetailResponseBody extends $tea.Model {
|
|
6484
|
+
assistInfo?: GetCheckDetailResponseBodyAssistInfo;
|
|
6485
|
+
description?: GetCheckDetailResponseBodyDescription;
|
|
6486
|
+
requestId?: string;
|
|
6487
|
+
solution?: GetCheckDetailResponseBodySolution;
|
|
6488
|
+
static names(): {
|
|
6489
|
+
[key: string]: string;
|
|
6490
|
+
};
|
|
6491
|
+
static types(): {
|
|
6492
|
+
[key: string]: any;
|
|
6493
|
+
};
|
|
6494
|
+
constructor(map?: {
|
|
6495
|
+
[key: string]: any;
|
|
6496
|
+
});
|
|
6497
|
+
}
|
|
6498
|
+
export declare class GetCheckDetailResponse extends $tea.Model {
|
|
6499
|
+
headers: {
|
|
6500
|
+
[key: string]: string;
|
|
6501
|
+
};
|
|
6502
|
+
statusCode: number;
|
|
6503
|
+
body: GetCheckDetailResponseBody;
|
|
6504
|
+
static names(): {
|
|
6505
|
+
[key: string]: string;
|
|
6506
|
+
};
|
|
6507
|
+
static types(): {
|
|
6508
|
+
[key: string]: any;
|
|
6509
|
+
};
|
|
6510
|
+
constructor(map?: {
|
|
6511
|
+
[key: string]: any;
|
|
6512
|
+
});
|
|
6513
|
+
}
|
|
6466
6514
|
export declare class GetFileDetectResultRequest extends $tea.Model {
|
|
6467
6515
|
hashKeyList?: string[];
|
|
6468
6516
|
sourceIp?: string;
|
|
@@ -6822,6 +6870,61 @@ export declare class InstallCloudMonitorResponse extends $tea.Model {
|
|
|
6822
6870
|
[key: string]: any;
|
|
6823
6871
|
});
|
|
6824
6872
|
}
|
|
6873
|
+
export declare class ListCheckInstanceResultRequest extends $tea.Model {
|
|
6874
|
+
checkId?: number;
|
|
6875
|
+
currentPage?: number;
|
|
6876
|
+
instanceIdKey?: string;
|
|
6877
|
+
instanceIds?: string[];
|
|
6878
|
+
instanceNameKey?: string;
|
|
6879
|
+
lang?: string;
|
|
6880
|
+
pageSize?: number;
|
|
6881
|
+
regionIdKey?: string;
|
|
6882
|
+
sortTypes?: string[];
|
|
6883
|
+
statuses?: string[];
|
|
6884
|
+
static names(): {
|
|
6885
|
+
[key: string]: string;
|
|
6886
|
+
};
|
|
6887
|
+
static types(): {
|
|
6888
|
+
[key: string]: any;
|
|
6889
|
+
};
|
|
6890
|
+
constructor(map?: {
|
|
6891
|
+
[key: string]: any;
|
|
6892
|
+
});
|
|
6893
|
+
}
|
|
6894
|
+
export declare class ListCheckInstanceResultResponseBody extends $tea.Model {
|
|
6895
|
+
basicData?: ListCheckInstanceResultResponseBodyBasicData[];
|
|
6896
|
+
checks?: {
|
|
6897
|
+
[key: string]: any;
|
|
6898
|
+
}[];
|
|
6899
|
+
columns?: ListCheckInstanceResultResponseBodyColumns[];
|
|
6900
|
+
pageInfo?: ListCheckInstanceResultResponseBodyPageInfo;
|
|
6901
|
+
requestId?: string;
|
|
6902
|
+
static names(): {
|
|
6903
|
+
[key: string]: string;
|
|
6904
|
+
};
|
|
6905
|
+
static types(): {
|
|
6906
|
+
[key: string]: any;
|
|
6907
|
+
};
|
|
6908
|
+
constructor(map?: {
|
|
6909
|
+
[key: string]: any;
|
|
6910
|
+
});
|
|
6911
|
+
}
|
|
6912
|
+
export declare class ListCheckInstanceResultResponse extends $tea.Model {
|
|
6913
|
+
headers: {
|
|
6914
|
+
[key: string]: string;
|
|
6915
|
+
};
|
|
6916
|
+
statusCode: number;
|
|
6917
|
+
body: ListCheckInstanceResultResponseBody;
|
|
6918
|
+
static names(): {
|
|
6919
|
+
[key: string]: string;
|
|
6920
|
+
};
|
|
6921
|
+
static types(): {
|
|
6922
|
+
[key: string]: any;
|
|
6923
|
+
};
|
|
6924
|
+
constructor(map?: {
|
|
6925
|
+
[key: string]: any;
|
|
6926
|
+
});
|
|
6927
|
+
}
|
|
6825
6928
|
export declare class ListCheckResultRequest extends $tea.Model {
|
|
6826
6929
|
checkKey?: string;
|
|
6827
6930
|
currentPage?: number;
|
|
@@ -12334,6 +12437,48 @@ export declare class GetBackupStorageCountResponseBodyBackupStorageCount extends
|
|
|
12334
12437
|
[key: string]: any;
|
|
12335
12438
|
});
|
|
12336
12439
|
}
|
|
12440
|
+
export declare class GetCheckDetailResponseBodyAssistInfo extends $tea.Model {
|
|
12441
|
+
link?: string;
|
|
12442
|
+
type?: string;
|
|
12443
|
+
value?: string;
|
|
12444
|
+
static names(): {
|
|
12445
|
+
[key: string]: string;
|
|
12446
|
+
};
|
|
12447
|
+
static types(): {
|
|
12448
|
+
[key: string]: any;
|
|
12449
|
+
};
|
|
12450
|
+
constructor(map?: {
|
|
12451
|
+
[key: string]: any;
|
|
12452
|
+
});
|
|
12453
|
+
}
|
|
12454
|
+
export declare class GetCheckDetailResponseBodyDescription extends $tea.Model {
|
|
12455
|
+
link?: string;
|
|
12456
|
+
type?: string;
|
|
12457
|
+
value?: string;
|
|
12458
|
+
static names(): {
|
|
12459
|
+
[key: string]: string;
|
|
12460
|
+
};
|
|
12461
|
+
static types(): {
|
|
12462
|
+
[key: string]: any;
|
|
12463
|
+
};
|
|
12464
|
+
constructor(map?: {
|
|
12465
|
+
[key: string]: any;
|
|
12466
|
+
});
|
|
12467
|
+
}
|
|
12468
|
+
export declare class GetCheckDetailResponseBodySolution extends $tea.Model {
|
|
12469
|
+
link?: string;
|
|
12470
|
+
type?: string;
|
|
12471
|
+
value?: string;
|
|
12472
|
+
static names(): {
|
|
12473
|
+
[key: string]: string;
|
|
12474
|
+
};
|
|
12475
|
+
static types(): {
|
|
12476
|
+
[key: string]: any;
|
|
12477
|
+
};
|
|
12478
|
+
constructor(map?: {
|
|
12479
|
+
[key: string]: any;
|
|
12480
|
+
});
|
|
12481
|
+
}
|
|
12337
12482
|
export declare class GetFileDetectResultResponseBodyResultListExt extends $tea.Model {
|
|
12338
12483
|
virusName?: string;
|
|
12339
12484
|
static names(): {
|
|
@@ -12374,6 +12519,68 @@ export declare class HandleSecurityEventsResponseBodyHandleSecurityEventsRespons
|
|
|
12374
12519
|
[key: string]: any;
|
|
12375
12520
|
});
|
|
12376
12521
|
}
|
|
12522
|
+
export declare class ListCheckInstanceResultResponseBodyBasicData extends $tea.Model {
|
|
12523
|
+
id?: number;
|
|
12524
|
+
instanceId?: string;
|
|
12525
|
+
instanceName?: string;
|
|
12526
|
+
regionId?: string;
|
|
12527
|
+
status?: string;
|
|
12528
|
+
static names(): {
|
|
12529
|
+
[key: string]: string;
|
|
12530
|
+
};
|
|
12531
|
+
static types(): {
|
|
12532
|
+
[key: string]: any;
|
|
12533
|
+
};
|
|
12534
|
+
constructor(map?: {
|
|
12535
|
+
[key: string]: any;
|
|
12536
|
+
});
|
|
12537
|
+
}
|
|
12538
|
+
export declare class ListCheckInstanceResultResponseBodyColumnsGrids extends $tea.Model {
|
|
12539
|
+
key?: string;
|
|
12540
|
+
showName?: string;
|
|
12541
|
+
type?: string;
|
|
12542
|
+
static names(): {
|
|
12543
|
+
[key: string]: string;
|
|
12544
|
+
};
|
|
12545
|
+
static types(): {
|
|
12546
|
+
[key: string]: any;
|
|
12547
|
+
};
|
|
12548
|
+
constructor(map?: {
|
|
12549
|
+
[key: string]: any;
|
|
12550
|
+
});
|
|
12551
|
+
}
|
|
12552
|
+
export declare class ListCheckInstanceResultResponseBodyColumns extends $tea.Model {
|
|
12553
|
+
grids?: ListCheckInstanceResultResponseBodyColumnsGrids[];
|
|
12554
|
+
key?: string;
|
|
12555
|
+
search?: boolean;
|
|
12556
|
+
searchKey?: string;
|
|
12557
|
+
showName?: string;
|
|
12558
|
+
type?: string;
|
|
12559
|
+
static names(): {
|
|
12560
|
+
[key: string]: string;
|
|
12561
|
+
};
|
|
12562
|
+
static types(): {
|
|
12563
|
+
[key: string]: any;
|
|
12564
|
+
};
|
|
12565
|
+
constructor(map?: {
|
|
12566
|
+
[key: string]: any;
|
|
12567
|
+
});
|
|
12568
|
+
}
|
|
12569
|
+
export declare class ListCheckInstanceResultResponseBodyPageInfo extends $tea.Model {
|
|
12570
|
+
count?: string;
|
|
12571
|
+
currentPage?: number;
|
|
12572
|
+
pageSize?: number;
|
|
12573
|
+
totalCount?: number;
|
|
12574
|
+
static names(): {
|
|
12575
|
+
[key: string]: string;
|
|
12576
|
+
};
|
|
12577
|
+
static types(): {
|
|
12578
|
+
[key: string]: any;
|
|
12579
|
+
};
|
|
12580
|
+
constructor(map?: {
|
|
12581
|
+
[key: string]: any;
|
|
12582
|
+
});
|
|
12583
|
+
}
|
|
12377
12584
|
export declare class ListCheckResultResponseBodyChecksCheckPolicies extends $tea.Model {
|
|
12378
12585
|
requirementId?: number;
|
|
12379
12586
|
requirementShowName?: string;
|
|
@@ -12901,6 +13108,8 @@ export default class Client extends OpenApi {
|
|
|
12901
13108
|
fixCheckWarnings(request: FixCheckWarningsRequest): Promise<FixCheckWarningsResponse>;
|
|
12902
13109
|
getBackupStorageCountWithOptions(runtime: $Util.RuntimeOptions): Promise<GetBackupStorageCountResponse>;
|
|
12903
13110
|
getBackupStorageCount(): Promise<GetBackupStorageCountResponse>;
|
|
13111
|
+
getCheckDetailWithOptions(request: GetCheckDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetCheckDetailResponse>;
|
|
13112
|
+
getCheckDetail(request: GetCheckDetailRequest): Promise<GetCheckDetailResponse>;
|
|
12904
13113
|
getFileDetectResultWithOptions(request: GetFileDetectResultRequest, runtime: $Util.RuntimeOptions): Promise<GetFileDetectResultResponse>;
|
|
12905
13114
|
getFileDetectResult(request: GetFileDetectResultRequest): Promise<GetFileDetectResultResponse>;
|
|
12906
13115
|
getSuspiciousStatisticsWithOptions(request: GetSuspiciousStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<GetSuspiciousStatisticsResponse>;
|
|
@@ -12917,6 +13126,8 @@ export default class Client extends OpenApi {
|
|
|
12917
13126
|
installBackupClient(request: InstallBackupClientRequest): Promise<InstallBackupClientResponse>;
|
|
12918
13127
|
installCloudMonitorWithOptions(request: InstallCloudMonitorRequest, runtime: $Util.RuntimeOptions): Promise<InstallCloudMonitorResponse>;
|
|
12919
13128
|
installCloudMonitor(request: InstallCloudMonitorRequest): Promise<InstallCloudMonitorResponse>;
|
|
13129
|
+
listCheckInstanceResultWithOptions(request: ListCheckInstanceResultRequest, runtime: $Util.RuntimeOptions): Promise<ListCheckInstanceResultResponse>;
|
|
13130
|
+
listCheckInstanceResult(request: ListCheckInstanceResultRequest): Promise<ListCheckInstanceResultResponse>;
|
|
12920
13131
|
listCheckResultWithOptions(request: ListCheckResultRequest, runtime: $Util.RuntimeOptions): Promise<ListCheckResultResponse>;
|
|
12921
13132
|
listCheckResult(request: ListCheckResultRequest): Promise<ListCheckResultResponse>;
|
|
12922
13133
|
listVulAutoRepairConfigWithOptions(request: ListVulAutoRepairConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListVulAutoRepairConfigResponse>;
|