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
The following fields are returned by SELECT queries:
- organizations_environments_security_reports_get_result_view
| Name | Datatype | Description |
|---|---|---|
code | integer (int32) | Error code when there is a failure. |
error | string | Error message when there is a failure. |
metadata | object | Metadata contains information like metrics, dimenstions etc of the security report. (id: GoogleCloudApigeeV1SecurityReportMetadata) |
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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
organizations_environments_security_reports_get_result_view | select | organizationsId, environmentsId, securityReportsId | After 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.
| Name | Datatype | Description |
|---|---|---|
environmentsId | string | |
organizationsId | string | |
securityReportsId | string |
SELECT examples
- organizations_environments_security_reports_get_result_view
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
;