Skip to main content

security_reports_result_view

Creates, updates, deletes, gets or lists a security_reports_result_view resource.

Overview

Namesecurity_reports_result_view
TypeResource
Idgoogle.apigee.security_reports_result_view

Fields

NameDatatypeDescription
codeintegerError code when there is a failure.
errorstringError message when there is a failure.
metadataobjectMetadata for the security report.
rowsarrayRows of security report result. Each row is a JSON object. Example: {sum(message_count): 1, developer_app: "(not set)",…}
statestringState of retrieving ResultView.

Methods

NameAccessible byRequired ParamsDescription
organizations_environments_security_reports_get_result_viewSELECTenvironmentsId, organizationsId, securityReportsIdAfter 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 }}';