@alicloud/sas20181203 2.27.4 → 2.28.0
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 +115 -0
- package/dist/client.js +241 -38
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +248 -0
package/dist/client.d.ts
CHANGED
|
@@ -14390,6 +14390,48 @@ export declare class DescribeVulConfigResponse extends $tea.Model {
|
|
|
14390
14390
|
[key: string]: any;
|
|
14391
14391
|
});
|
|
14392
14392
|
}
|
|
14393
|
+
export declare class DescribeVulDefendCountStatisticsRequest extends $tea.Model {
|
|
14394
|
+
vulType?: string;
|
|
14395
|
+
static names(): {
|
|
14396
|
+
[key: string]: string;
|
|
14397
|
+
};
|
|
14398
|
+
static types(): {
|
|
14399
|
+
[key: string]: any;
|
|
14400
|
+
};
|
|
14401
|
+
constructor(map?: {
|
|
14402
|
+
[key: string]: any;
|
|
14403
|
+
});
|
|
14404
|
+
}
|
|
14405
|
+
export declare class DescribeVulDefendCountStatisticsResponseBody extends $tea.Model {
|
|
14406
|
+
raspDefendedCount?: number;
|
|
14407
|
+
raspDefensibleCount?: number;
|
|
14408
|
+
requestId?: string;
|
|
14409
|
+
static names(): {
|
|
14410
|
+
[key: string]: string;
|
|
14411
|
+
};
|
|
14412
|
+
static types(): {
|
|
14413
|
+
[key: string]: any;
|
|
14414
|
+
};
|
|
14415
|
+
constructor(map?: {
|
|
14416
|
+
[key: string]: any;
|
|
14417
|
+
});
|
|
14418
|
+
}
|
|
14419
|
+
export declare class DescribeVulDefendCountStatisticsResponse extends $tea.Model {
|
|
14420
|
+
headers?: {
|
|
14421
|
+
[key: string]: string;
|
|
14422
|
+
};
|
|
14423
|
+
statusCode?: number;
|
|
14424
|
+
body?: DescribeVulDefendCountStatisticsResponseBody;
|
|
14425
|
+
static names(): {
|
|
14426
|
+
[key: string]: string;
|
|
14427
|
+
};
|
|
14428
|
+
static types(): {
|
|
14429
|
+
[key: string]: any;
|
|
14430
|
+
};
|
|
14431
|
+
constructor(map?: {
|
|
14432
|
+
[key: string]: any;
|
|
14433
|
+
});
|
|
14434
|
+
}
|
|
14393
14435
|
export declare class DescribeVulDetailsRequest extends $tea.Model {
|
|
14394
14436
|
aliasName?: string;
|
|
14395
14437
|
lang?: string;
|
|
@@ -14579,7 +14621,9 @@ export declare class DescribeVulListPageRequest extends $tea.Model {
|
|
|
14579
14621
|
currentPage?: number;
|
|
14580
14622
|
cveId?: string;
|
|
14581
14623
|
pageSize?: number;
|
|
14624
|
+
raspDefend?: number;
|
|
14582
14625
|
vulNameLike?: string;
|
|
14626
|
+
vulType?: string;
|
|
14583
14627
|
static names(): {
|
|
14584
14628
|
[key: string]: string;
|
|
14585
14629
|
};
|
|
@@ -14620,6 +14664,38 @@ export declare class DescribeVulListPageResponse extends $tea.Model {
|
|
|
14620
14664
|
[key: string]: any;
|
|
14621
14665
|
});
|
|
14622
14666
|
}
|
|
14667
|
+
export declare class DescribeVulMetaCountStatisticsResponseBody extends $tea.Model {
|
|
14668
|
+
appCount?: number;
|
|
14669
|
+
cveCount?: number;
|
|
14670
|
+
raspDefendCount?: number;
|
|
14671
|
+
requestId?: string;
|
|
14672
|
+
sysCount?: number;
|
|
14673
|
+
static names(): {
|
|
14674
|
+
[key: string]: string;
|
|
14675
|
+
};
|
|
14676
|
+
static types(): {
|
|
14677
|
+
[key: string]: any;
|
|
14678
|
+
};
|
|
14679
|
+
constructor(map?: {
|
|
14680
|
+
[key: string]: any;
|
|
14681
|
+
});
|
|
14682
|
+
}
|
|
14683
|
+
export declare class DescribeVulMetaCountStatisticsResponse extends $tea.Model {
|
|
14684
|
+
headers?: {
|
|
14685
|
+
[key: string]: string;
|
|
14686
|
+
};
|
|
14687
|
+
statusCode?: number;
|
|
14688
|
+
body?: DescribeVulMetaCountStatisticsResponseBody;
|
|
14689
|
+
static names(): {
|
|
14690
|
+
[key: string]: string;
|
|
14691
|
+
};
|
|
14692
|
+
static types(): {
|
|
14693
|
+
[key: string]: any;
|
|
14694
|
+
};
|
|
14695
|
+
constructor(map?: {
|
|
14696
|
+
[key: string]: any;
|
|
14697
|
+
});
|
|
14698
|
+
}
|
|
14623
14699
|
export declare class DescribeVulNumStatisticsRequest extends $tea.Model {
|
|
14624
14700
|
from?: string;
|
|
14625
14701
|
static names(): {
|
|
@@ -19435,6 +19511,7 @@ export declare class HandleSecurityEventsRequest extends $tea.Model {
|
|
|
19435
19511
|
operationCode?: string;
|
|
19436
19512
|
operationParams?: string;
|
|
19437
19513
|
remark?: string;
|
|
19514
|
+
resourceDirectoryAccountId?: number;
|
|
19438
19515
|
securityEventIds?: string[];
|
|
19439
19516
|
sourceIp?: string;
|
|
19440
19517
|
static names(): {
|
|
@@ -33089,26 +33166,32 @@ export declare class DescribeFieldStatisticsResponseBodyGroupedFields extends $t
|
|
|
33089
33166
|
aliYunInstanceCount?: number;
|
|
33090
33167
|
awsInstanceCount?: number;
|
|
33091
33168
|
azureInstanceCount?: number;
|
|
33169
|
+
exposedInstanceCoreCount?: number;
|
|
33092
33170
|
exposedInstanceCount?: number;
|
|
33093
33171
|
generalAssetCount?: number;
|
|
33094
33172
|
groupCount?: number;
|
|
33095
33173
|
huaweiInstanceCount?: number;
|
|
33096
33174
|
idcInstanceCount?: number;
|
|
33097
33175
|
importantAssetCount?: number;
|
|
33176
|
+
instanceCoreCount?: number;
|
|
33098
33177
|
instanceCount?: number;
|
|
33099
33178
|
instanceSyncTaskCount?: number;
|
|
33179
|
+
newInstanceCoreCount?: number;
|
|
33100
33180
|
newInstanceCount?: number;
|
|
33101
33181
|
noRiskInstanceCount?: number;
|
|
33182
|
+
notRunningStatusCoreCount?: number;
|
|
33102
33183
|
notRunningStatusCount?: number;
|
|
33103
33184
|
offlineInstanceCount?: number;
|
|
33104
33185
|
outMachineInstanceCount?: number;
|
|
33105
33186
|
pauseInstanceCount?: number;
|
|
33106
33187
|
regionCount?: number;
|
|
33188
|
+
riskInstanceCoreCount?: number;
|
|
33107
33189
|
riskInstanceCount?: number;
|
|
33108
33190
|
tencentInstanceCount?: number;
|
|
33109
33191
|
testAssetCount?: number;
|
|
33110
33192
|
tripartiteInstanceCount?: number;
|
|
33111
33193
|
unKnowStatusInstanceCount?: number;
|
|
33194
|
+
unprotectedInstanceCoreCount?: number;
|
|
33112
33195
|
unprotectedInstanceCount?: number;
|
|
33113
33196
|
vpcCount?: number;
|
|
33114
33197
|
static names(): {
|
|
@@ -33205,6 +33288,7 @@ export declare class DescribeGroupedInstancesResponseBodyInstances extends $tea.
|
|
|
33205
33288
|
authVersionCheckCount?: number;
|
|
33206
33289
|
fieldAliasName?: string;
|
|
33207
33290
|
groupFlag?: number;
|
|
33291
|
+
instanceCoreCount?: number;
|
|
33208
33292
|
instanceCount?: string;
|
|
33209
33293
|
os?: string;
|
|
33210
33294
|
riskInstanceCount?: string;
|
|
@@ -36414,6 +36498,8 @@ export declare class DescribeUserBaselineAuthorizationResponseBodyUserBaselineAu
|
|
|
36414
36498
|
});
|
|
36415
36499
|
}
|
|
36416
36500
|
export declare class DescribeUuidsByVulNamesResponseBodyMachineInfoStatistics extends $tea.Model {
|
|
36501
|
+
internetIp?: string;
|
|
36502
|
+
intranetIp?: string;
|
|
36417
36503
|
machineInstanceId?: string;
|
|
36418
36504
|
machineIp?: string;
|
|
36419
36505
|
machineName?: string;
|
|
@@ -48306,6 +48392,21 @@ export default class Client extends OpenApi {
|
|
|
48306
48392
|
* @return DescribeVulConfigResponse
|
|
48307
48393
|
*/
|
|
48308
48394
|
describeVulConfig(request: DescribeVulConfigRequest): Promise<DescribeVulConfigResponse>;
|
|
48395
|
+
/**
|
|
48396
|
+
* @summary 查询漏洞rasp防御统计
|
|
48397
|
+
*
|
|
48398
|
+
* @param request DescribeVulDefendCountStatisticsRequest
|
|
48399
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
48400
|
+
* @return DescribeVulDefendCountStatisticsResponse
|
|
48401
|
+
*/
|
|
48402
|
+
describeVulDefendCountStatisticsWithOptions(request: DescribeVulDefendCountStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVulDefendCountStatisticsResponse>;
|
|
48403
|
+
/**
|
|
48404
|
+
* @summary 查询漏洞rasp防御统计
|
|
48405
|
+
*
|
|
48406
|
+
* @param request DescribeVulDefendCountStatisticsRequest
|
|
48407
|
+
* @return DescribeVulDefendCountStatisticsResponse
|
|
48408
|
+
*/
|
|
48409
|
+
describeVulDefendCountStatistics(request: DescribeVulDefendCountStatisticsRequest): Promise<DescribeVulDefendCountStatisticsResponse>;
|
|
48309
48410
|
/**
|
|
48310
48411
|
* @summary Queries the details about a vulnerability.
|
|
48311
48412
|
*
|
|
@@ -48384,6 +48485,20 @@ export default class Client extends OpenApi {
|
|
|
48384
48485
|
* @return DescribeVulListPageResponse
|
|
48385
48486
|
*/
|
|
48386
48487
|
describeVulListPage(request: DescribeVulListPageRequest): Promise<DescribeVulListPageResponse>;
|
|
48488
|
+
/**
|
|
48489
|
+
* @summary 查询漏洞库信息统计
|
|
48490
|
+
*
|
|
48491
|
+
* @param request DescribeVulMetaCountStatisticsRequest
|
|
48492
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
48493
|
+
* @return DescribeVulMetaCountStatisticsResponse
|
|
48494
|
+
*/
|
|
48495
|
+
describeVulMetaCountStatisticsWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeVulMetaCountStatisticsResponse>;
|
|
48496
|
+
/**
|
|
48497
|
+
* @summary 查询漏洞库信息统计
|
|
48498
|
+
*
|
|
48499
|
+
* @return DescribeVulMetaCountStatisticsResponse
|
|
48500
|
+
*/
|
|
48501
|
+
describeVulMetaCountStatistics(): Promise<DescribeVulMetaCountStatisticsResponse>;
|
|
48387
48502
|
/**
|
|
48388
48503
|
* @summary Queries the statistics of vulnerabilities.
|
|
48389
48504
|
*
|