site_search_engine_domain_verification_status
Creates, updates, deletes, gets or lists a site_search_engine_domain_verification_status
resource.
Overview
Name | site_search_engine_domain_verification_status |
Type | Resource |
Id | google.discoveryengine.site_search_engine_domain_verification_status |
Fields
The following fields are returned by SELECT
queries:
- projects_locations_collections_data_stores_site_search_engine_fetch_domain_verification_status
Successful response
Name | Datatype | Description |
---|---|---|
nextPageToken | string | A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. |
targetSites | array | List of TargetSites containing the site verification status. |
totalSize | integer (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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_collections_data_stores_site_search_engine_fetch_domain_verification_status | select | projectsId , locationsId , collectionsId , dataStoresId | pageSize , pageToken | 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. |
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.
Name | Datatype | Description |
---|---|---|
collectionsId | string | |
dataStoresId | string | |
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- projects_locations_collections_data_stores_site_search_engine_fetch_domain_verification_status
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 }}';