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

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
codeinteger (int32)Error code when there is a failure.
errorstringError message when there is a failure.
metadataobjectMetadata contains information like metrics, dimenstions etc of the security report. (id: GoogleCloudApigeeV1SecurityReportMetadata)
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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_environments_security_reports_get_result_viewselectorganizationsId, environmentsId, securityReportsIdAfter the query is completed, use this API to view the query result when result size is small.

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.

NameDatatypeDescription
environmentsIdstring
organizationsIdstring
securityReportsIdstring

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 organizationsId = '{{ organizationsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required
AND securityReportsId = '{{ securityReportsId }}' -- required;