* $apigeeService = new Google\Service\Apigee(...); * $queries = $apigeeService->queries; * */ class OrganizationsEnvironmentsQueries extends \Google\Service\Resource { /** * Submit a query to be processed in the background. If the submission of the * query succeeds, the API returns a 201 status and an ID that refer to the * query. In addition to the HTTP status 201, the `state` of "enqueued" means * that the request succeeded. (queries.create) * * @param string $parent Required. The parent resource name. Must be of the form * `organizations/{org}/environments/{env}`. * @param GoogleCloudApigeeV1Query $postBody * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1AsyncQuery */ public function create($parent, GoogleCloudApigeeV1Query $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudApigeeV1AsyncQuery::class); } /** * Get query status If the query is still in progress, the `state` is set to * "running" After the query has completed successfully, `state` is set to * "completed" (queries.get) * * @param string $name Required. Name of the asynchronous query to get. Must be * of the form `organizations/{org}/environments/{env}/queries/{queryId}`. * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1AsyncQuery */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudApigeeV1AsyncQuery::class); } /** * 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` (queries.getResult) * * @param string $name Required. Name of the asynchronous query result to get. * Must be of the form * `organizations/{org}/environments/{env}/queries/{queryId}/result`. * @param array $optParams Optional parameters. * @return GoogleApiHttpBody */ public function getResult($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getResult', [$params], GoogleApiHttpBody::class); } /** * 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. (queries.getResulturl) * * @param string $name Required. Name of the asynchronous query result to get. * Must be of the form * `organizations/{org}/environments/{env}/queries/{queryId}/resulturl`. * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse */ public function getResulturl($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getResulturl', [$params], GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse::class); } /** * Return a list of Asynchronous Queries * (queries.listOrganizationsEnvironmentsQueries) * * @param string $parent Required. The parent resource name. Must be of the form * `organizations/{org}/environments/{env}`. * @param array $optParams Optional parameters. * * @opt_param string dataset Filter response list by dataset. Example: `api`, * `mint` * @opt_param string from Filter response list by returning asynchronous queries * that created after this date time. Time must be in ISO date-time format like * '2011-12-03T10:15:30Z'. * @opt_param string inclQueriesWithoutReport Flag to include asynchronous * queries that don't have a report denifition. * @opt_param string status Filter response list by asynchronous query status. * @opt_param string submittedBy Filter response list by user who submitted * queries. * @opt_param string to Filter response list by returning asynchronous queries * that created before this date time. Time must be in ISO date-time format like * '2011-12-03T10:16:30Z'. * @return GoogleCloudApigeeV1ListAsyncQueriesResponse */ public function listOrganizationsEnvironmentsQueries($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudApigeeV1ListAsyncQueriesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OrganizationsEnvironmentsQueries::class, 'Google_Service_Apigee_Resource_OrganizationsEnvironmentsQueries');