Skip to main content

site_search_engine_domain_verification_status

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

Overview

Namesite_search_engine_domain_verification_status
TypeResource
Idgoogle.discoveryengine.site_search_engine_domain_verification_status

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
nextPageTokenstringA token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
targetSitesarrayList of TargetSites containing the site verification status.
totalSizeinteger (int32)The total number of items matching the request. This will always be populated in the response.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_collections_data_stores_site_search_engine_fetch_domain_verification_statusselectprojectsId, locationsId, collectionsId, dataStoresIdpageSize, pageTokenReturns list of target sites with its domain verification status. This method can only be called under data store with BASIC_SITE_SEARCH state at the moment.

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
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Returns list of target sites with its domain verification status. This method can only be called under data store with BASIC_SITE_SEARCH state at the moment.

SELECT
nextPageToken,
targetSites,
totalSize
FROM google.discoveryengine.site_search_engine_domain_verification_status
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND collectionsId = '{{ collectionsId }}' -- required
AND dataStoresId = '{{ dataStoresId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';