host_security_reports_result
Creates, updates, deletes, gets or lists a host_security_reports_result
resource.
Overview
Name | host_security_reports_result |
Type | Resource |
Id | google.apigee.host_security_reports_result |
Fields
The following fields are returned by SELECT
queries:
- organizations_host_security_reports_get_result
Successful response
Name | Datatype | Description |
---|---|---|
contentType | string | The HTTP Content-Type header value specifying the content type of the body. |
data | string (byte) | The HTTP request/response body as raw binary. |
extensions | array | Application specific response metadata. Must be set in the first response for streaming APIs. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_host_security_reports_get_result | select | organizationsId , hostSecurityReportsId | After the query is completed, use this API to retrieve the results. If the request succeeds, and there is a non-zero result set, the result is downloaded to the client as a zipped JSON file. The name of the downloaded file will be: OfflineQueryResult-.zip Example: OfflineQueryResult-9cfc0d85-0f30-46d6-ae6f-318d0cb961bd.zip |
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 |
---|---|---|
hostSecurityReportsId | string | |
organizationsId | string |
SELECT
examples
- organizations_host_security_reports_get_result
After the query is completed, use this API to retrieve the results. If the request succeeds, and there is a non-zero result set, the result is downloaded to the client as a zipped JSON file. The name of the downloaded file will be: OfflineQueryResult-.zip Example: OfflineQueryResult-9cfc0d85-0f30-46d6-ae6f-318d0cb961bd.zip
SELECT
contentType,
data,
extensions
FROM google.apigee.host_security_reports_result
WHERE organizationsId = '{{ organizationsId }}' -- required
AND hostSecurityReportsId = '{{ hostSecurityReportsId }}' -- required;