Skip to main content

queries_resulturl

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

Overview

Namequeries_resulturl
TypeResource
Idgoogle.apigee.queries_resulturl

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
urlsarrayThe list of Signed URLs generated by the CreateAsyncQuery request

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_environments_queries_get_resulturlselectorganizationsId, environmentsId, queriesIdAfter 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.

NameDatatypeDescription
environmentsIdstring
organizationsIdstring
queriesIdstring

SELECT examples

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;