queries_resulturl
Creates, updates, deletes, gets or lists a queries_resulturl
resource.
Overview
Name | queries_resulturl |
Type | Resource |
Id | google.apigee.queries_resulturl |
Fields
The following fields are returned by SELECT
queries:
- organizations_environments_queries_get_resulturl
Successful response
Name | Datatype | Description |
---|---|---|
urls | array | The list of Signed URLs generated by the CreateAsyncQuery request |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_environments_queries_get_resulturl | select | organizationsId , environmentsId , queriesId | 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 sent to the client as a list of urls to JSON files. |
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 | |
queriesId | string |
SELECT
examples
- organizations_environments_queries_get_resulturl
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 sent to the client as a list of urls to JSON files.
SELECT
urls
FROM google.apigee.queries_resulturl
WHERE organizationsId = '{{ organizationsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required
AND queriesId = '{{ queriesId }}' -- required;