security_reports_result_view
Creates, updates, deletes, gets or lists a security_reports_result_view
resource.
Overview
Name | security_reports_result_view |
Type | Resource |
Id | google.apigee.security_reports_result_view |
Fields
Name | Datatype | Description |
---|---|---|
code | integer | Error code when there is a failure. |
error | string | Error message when there is a failure. |
metadata | object | Metadata for the security report. |
rows | array | Rows of security report result. Each row is a JSON object. Example: {sum(message_count): 1, developer_app: "(not set)",…} |
state | string | State of retrieving ResultView. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_environments_security_reports_get_result_view | SELECT | environmentsId, organizationsId, securityReportsId | After the query is completed, use this API to view the query result when result size is small. |
SELECT
examples
After the query is completed, use this API to view the query result when result size is small.
SELECT
code,
error,
metadata,
rows,
state
FROM google.apigee.security_reports_result_view
WHERE environmentsId = '{{ environmentsId }}'
AND organizationsId = '{{ organizationsId }}'
AND securityReportsId = '{{ securityReportsId }}';