Queries the overall information about pending vulnerabilities, including the number of vulnerabilities with different priorities.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | DescribeVulOverview |
The operation that you want to perform. Set the value to DescribeVulOverview. |
RegionId | String | Yes | cn-hangzhou |
The ID of the region. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
AsapCount | Integer | 1 |
The number of high-risk vulnerabilities. |
LaterCount | Integer | 2 |
The number of medium-risk vulnerabilities. |
NntfCount | Integer | 3 |
The number of low-risk vulnerabilities. |
RequestId | String | 484256DA-D816-44D2-9D86-B6EE4D5BA78C |
The ID of the request. |
Examples
Sample requests
https://ecd.cn-hangzhou.aliyuncs.com/?Action=DescribeVulOverview
&RegionId=cn-hangzhou
&<Common request parameters>
Sample success responses
XML
format
<DescribeVulOverviewResponse>
<RequestId>484256DA-D816-44D2-9D86-B6EE4D5BA78C</RequestId>
<LaterCount>2</LaterCount>
<AsapCount>1</AsapCount>
<NntfCount>3</NntfCount>
</DescribeVulOverviewResponse>
JSON
format
{
"RequestId": "484256DA-D816-44D2-9D86-B6EE4D5BA78C",
"LaterCount": "2",
"AsapCount": "1",
"NntfCount": "3"
}