Skip to main content

api_observation_tags

Creates, updates, deletes, gets or lists an api_observation_tags resource.

Overview

Nameapi_observation_tags
TypeResource
Idgoogle.apim.api_observation_tags

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_api_observation_tagsselectprojectsId, locationsIdpageSize, pageTokenListApiObservationTags lists all extant tags on any observation in the given project.

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

SELECT examples

ListApiObservationTags lists all extant tags on any observation in the given project.

SELECT
*
FROM google.apim.api_observation_tags
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';