Skip to main content

data_stores_site_search_engine

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

Overview

Namedata_stores_site_search_engine
TypeResource
Idgoogle.discoveryengine.data_stores_site_search_engine

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe fully qualified resource name of the site search engine. Format: projects/*/locations/*/dataStores/*/siteSearchEngine

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_collections_data_stores_get_site_search_engineselectprojectsId, locationsId, collectionsId, dataStoresIdGets the SiteSearchEngine.
projects_locations_data_stores_get_site_search_engineselectprojectsId, locationsId, dataStoresIdGets the SiteSearchEngine.

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
collectionsIdstring
dataStoresIdstring
locationsIdstring
projectsIdstring

SELECT examples

Gets the SiteSearchEngine.

SELECT
name
FROM google.discoveryengine.data_stores_site_search_engine
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND collectionsId = '{{ collectionsId }}' -- required
AND dataStoresId = '{{ dataStoresId }}' -- required;