Skip to main content

host_security_reports_result_view

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

Overview

Namehost_security_reports_result_view
TypeResource
Idgoogle.apigee.host_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_host_security_reports_get_result_viewSELECThostSecurityReportsId, organizationsIdAfter 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.host_security_reports_result_view
WHERE hostSecurityReportsId = '{{ hostSecurityReportsId }}'
AND organizationsId = '{{ organizationsId }}';