attack_surface_report_issues
Creates, updates, deletes, gets or lists an attack_surface_report_issues resource.
Overview
| Name | attack_surface_report_issues |
| Type | Resource |
| Id | cloudflare.intel.attack_surface_report_issues |
Fields
The following fields are returned by SELECT queries:
- list
The request was successful.
| Name | Datatype | Description |
|---|---|---|
count | integer | Indicates the total number of results. |
issues | array | |
page | integer | Specifies the current page within paginated list of results. |
per_page | integer | Sets the number of results per page of results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | dismissed, issue_class, issue_type, product, severity, subject, issue_class~neq, issue_type~neq, product~neq, severity~neq, subject~neq, page, per_page | Lists all Security Center issues for the account, showing active security problems requiring attention. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
dismissed | boolean | |
issue_class | array | |
issue_class~neq | array | |
issue_type | array | |
issue_type~neq | array | |
page | integer | |
per_page | integer | |
product | array | |
product~neq | array | |
severity | array | |
severity~neq | array | |
subject | array | |
subject~neq | array |
SELECT examples
- list
Lists all Security Center issues for the account, showing active security problems requiring attention.
SELECT
count,
issues,
page,
per_page
FROM cloudflare.intel.attack_surface_report_issues
WHERE account_id = '{{ account_id }}' -- required
AND dismissed = '{{ dismissed }}'
AND issue_class = '{{ issue_class }}'
AND issue_type = '{{ issue_type }}'
AND product = '{{ product }}'
AND severity = '{{ severity }}'
AND subject = '{{ subject }}'
AND issue_class~neq = '{{ issue_class~neq }}'
AND issue_type~neq = '{{ issue_type~neq }}'
AND product~neq = '{{ product~neq }}'
AND severity~neq = '{{ severity~neq }}'
AND subject~neq = '{{ subject~neq }}'
AND page = '{{ page }}'
AND per_page = '{{ per_page }}'
;