Skip to main content

locations

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

Overview

Namelocations
TypeResource
Idgoogle.contactcenteraiplatform.locations

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
contactCenterCountLimitinteger (int32)Deprecated: Use the Quota fields instead. Reflects the count limit of contact centers on a billing account.
contactCenterCountSuminteger (int32)Deprecated: Use the Quota fields instead. Reflects the count sum of contact centers on a billing account.
quotasarrayQuota details per contact center instance type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
query_contact_center_quotaselectprojectsId, locationsIdQueries the contact center quota, an aggregation over all the projects, that belongs to the billing account, which the input project belongs to.
getselectprojectsId, locationsIdGets information about a location.
listselectprojectsIdfilter, pageSize, pageToken, extraLocationTypesLists information about the supported locations for this service.

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

Queries the contact center quota, an aggregation over all the projects, that belongs to the billing account, which the input project belongs to.

SELECT
contactCenterCountLimit,
contactCenterCountSum,
quotas
FROM google.contactcenteraiplatform.locations
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required;