Skip to main content

locations

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

Overview

Namelocations
TypeResource
Idgoogle.dialogflow.locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestring
displayNamestring
labelsobject
locationIdstring
metadataobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_getselectprojectsId, locationsId
projects_locations_listselectprojectsIdpageSize, filter, extraLocationTypes, pageToken

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
locationsIdstring
projectsIdstring
extraLocationTypesstring
filterstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Successful response

SELECT
name,
displayName,
labels,
locationId,
metadata
FROM google.dialogflow.locations
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
;