* $discoveryengineService = new Google\Service\DiscoveryEngine(...); * $servingConfigs = $discoveryengineService->projects_locations_collections_dataStores_servingConfigs; * */ class ProjectsLocationsCollectionsDataStoresServingConfigs extends \Google\Service\Resource { /** * Answer query method. (servingConfigs.answer) * * @param string $servingConfig Required. The resource name of the Search * serving config, such as `projects/locations/global/collections/default_collec * tion/engines/servingConfigs/default_serving_config`, or `projects/locations/g * lobal/collections/default_collection/dataStores/servingConfigs/default_servin * g_config`. This field is used to identify the serving configuration name, set * of models used to make the search. * @param GoogleCloudDiscoveryengineV1AnswerQueryRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudDiscoveryengineV1AnswerQueryResponse * @throws \Google\Service\Exception */ public function answer($servingConfig, GoogleCloudDiscoveryengineV1AnswerQueryRequest $postBody, $optParams = []) { $params = ['servingConfig' => $servingConfig, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('answer', [$params], GoogleCloudDiscoveryengineV1AnswerQueryResponse::class); } /** * Makes a recommendation, which requires a contextual user event. * (servingConfigs.recommend) * * @param string $servingConfig Required. Full resource name of a ServingConfig: * `projects/locations/global/collections/engines/servingConfigs`, or * `projects/locations/global/collections/dataStores/servingConfigs` One default * serving config is created along with your recommendation engine creation. The * engine ID is used as the ID of the default serving config. For example, for * Engine `projects/locations/global/collections/engines/my-engine`, you can use * `projects/locations/global/collections/engines/my-engine/servingConfigs/my- * engine` for your RecommendationService.Recommend requests. * @param GoogleCloudDiscoveryengineV1RecommendRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudDiscoveryengineV1RecommendResponse * @throws \Google\Service\Exception */ public function recommend($servingConfig, GoogleCloudDiscoveryengineV1RecommendRequest $postBody, $optParams = []) { $params = ['servingConfig' => $servingConfig, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('recommend', [$params], GoogleCloudDiscoveryengineV1RecommendResponse::class); } /** * Performs a search. (servingConfigs.search) * * @param string $servingConfig Required. The resource name of the Search * serving config, such as `projects/locations/global/collections/default_collec * tion/engines/servingConfigs/default_serving_config`, or `projects/locations/g * lobal/collections/default_collection/dataStores/default_data_store/servingCon * figs/default_serving_config`. This field is used to identify the serving * configuration name, set of models used to make the search. * @param GoogleCloudDiscoveryengineV1SearchRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudDiscoveryengineV1SearchResponse * @throws \Google\Service\Exception */ public function search($servingConfig, GoogleCloudDiscoveryengineV1SearchRequest $postBody, $optParams = []) { $params = ['servingConfig' => $servingConfig, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('search', [$params], GoogleCloudDiscoveryengineV1SearchResponse::class); } /** * Performs a search. Similar to the SearchService.Search method, but a lite * version that allows API key for authentication, where OAuth and IAM checks * are not required. Only public website search is supported by this method. If * data stores and engines not associated with public website search are * specified, a `FAILED_PRECONDITION` error is returned. This method can be used * for easy onboarding without having to implement an authentication backend. * However, it is strongly recommended to use SearchService.Search instead with * required OAuth and IAM checks to provide better data security. * (servingConfigs.searchLite) * * @param string $servingConfig Required. The resource name of the Search * serving config, such as `projects/locations/global/collections/default_collec * tion/engines/servingConfigs/default_serving_config`, or `projects/locations/g * lobal/collections/default_collection/dataStores/default_data_store/servingCon * figs/default_serving_config`. This field is used to identify the serving * configuration name, set of models used to make the search. * @param GoogleCloudDiscoveryengineV1SearchRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudDiscoveryengineV1SearchResponse * @throws \Google\Service\Exception */ public function searchLite($servingConfig, GoogleCloudDiscoveryengineV1SearchRequest $postBody, $optParams = []) { $params = ['servingConfig' => $servingConfig, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('searchLite', [$params], GoogleCloudDiscoveryengineV1SearchResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsCollectionsDataStoresServingConfigs::class, 'Google_Service_DiscoveryEngine_Resource_ProjectsLocationsCollectionsDataStoresServingConfigs');