/var/www/flurhymez/vendor/google/apiclient-services/src/CloudSearch/Resource
NameSizeModeActions
Debug.php10460644editdlrm
DebugDatasources.php10970644editdlrm
DebugDatasourcesItems.php28180644editdlrm
DebugDatasourcesItemsUnmappedids.php22290644editdlrm
DebugIdentitysources.php11210644editdlrm
DebugIdentitysourcesItems.php22970644editdlrm
DebugIdentitysourcesUnmappedids.php23150644editdlrm
Indexing.php10640644editdlrm
IndexingDatasources.php34260644editdlrm
IndexingDatasourcesItems.php114980644editdlrm
Media.php26800644editdlrm
Operations.php16530644editdlrm
OperationsLro.php23690644editdlrm
Query.php29990644editdlrm
QuerySources.php34660644editdlrm
Settings.php24060644editdlrm
SettingsDatasources.php44830644editdlrm
SettingsSearchapplications.php54080644editdlrm
Stats.php63900644editdlrm
StatsIndex.php10610644editdlrm
StatsIndexDatasources.php23020644editdlrm
StatsQuery.php10610644editdlrm
StatsQuerySearchapplications.php23680644editdlrm
StatsSession.php10730644editdlrm
StatsSessionSearchapplications.php24470644editdlrm
StatsUser.php10550644editdlrm
StatsUserSearchapplications.php23640644editdlrm
V1.php16750644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/CloudSearch/Resource/Query.php (2999B)
* $cloudsearchService = new Google\Service\CloudSearch(...); * $query = $cloudsearchService->query; * */ class Query extends \Google\Service\Resource { /** * The Cloud Search Query API provides the search method, which returns the most * relevant results from a user query. The results can come from Google * Workspace apps, such as Gmail or Google Drive, or they can come from data * that you have indexed from a third party. **Note:** This API requires a * standard end user account to execute. A service account can't perform Query * API requests directly; to use a service account to perform queries, set up * [Google Workspace domain-wide delegation of * authority](https://developers.google.com/cloud- * search/docs/guides/delegation/). (query.search) * * @param SearchRequest $postBody * @param array $optParams Optional parameters. * @return SearchResponse */ public function search(SearchRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('search', [$params], SearchResponse::class); } /** * Provides suggestions for autocompleting the query. **Note:** This API * requires a standard end user account to execute. A service account can't * perform Query API requests directly; to use a service account to perform * queries, set up [Google Workspace domain-wide delegation of * authority](https://developers.google.com/cloud- * search/docs/guides/delegation/). (query.suggest) * * @param SuggestRequest $postBody * @param array $optParams Optional parameters. * @return SuggestResponse */ public function suggest(SuggestRequest $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('suggest', [$params], SuggestResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Query::class, 'Google_Service_CloudSearch_Resource_Query');