You can call this operation to query the whitelist of vulnerabilities by page.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | DescribeVulWhitelist |
The operation that you want to perform. Set the value to DescribeVulWhitelist. |
CurrentPage | Integer | No | 1 |
The number of the page to return. Pages start from page 1. Default value: 1. |
PageSize | Integer | No | 10 |
The number of entries to return on each page. Default value: 20. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
CurrentPage | Integer | 1 |
The page number of the returned page. |
PageSize | Integer | 10 |
The number of entries returned on the page. |
RequestId | String | 74F97EF7-B543-43FD-A4E9-18456731F9C5 |
The ID of the request. |
TotalCount | Integer | 1 |
The total number of returned entries. |
VulWhitelists | Array |
The information about the vulnerability whitelist. |
|
AliasName | String | RHSA-2017:3263: curl security update |
The alias of the vulnerability. |
Name | String | oval:com.redhat.rhsa:def:20173263 |
The name of the vulnerability. |
Reason | String | Not urgent |
The reason why the vulnerability was added to the whitelist. |
Type | String | cve |
The type of the vulnerability. |
Examples
Sample requests
http(s)://[Endpoint]/? Action=DescribeVulWhitelist
&<Common request parameters>
Sample success responses
XML
format
<DescribeVulWhitelist>
<TotalCount>1</TotalCount>
<VulWhitelists>
<Name>oval:com.redhat.rhsa:def:20173263</Name>
<AliasName>RHSA-2017:3263: curl security update</AliasName>
<Type>cve</Type>
<Reason>Not urgent</Reason>
</VulWhitelists>
<PageSize>3</PageSize>
<RequestId>74F97EF7-B543-43FD-A4E9-18456731F9C5</RequestId>
<CurrentPage>1</CurrentPage>
</DescribeVulWhitelist>
JSON
format
{
"TotalCount":1,
"PageSize":3,
"VulWhitelists":[
{
"Name":"oval:com.redhat.rhsa:def:20173263",
"AliasName":"RHSA-2017:3263: curl security update",
"Type":"cve",
"Reason":"Not urgent"
}
],
"RequestId":"74F97EF7-B543-43FD-A4E9-18456731F9C5",
"CurrentPage":1
}
Error codes
For a list of error codes, visit the API Error Center.