api_observation_tags
Creates, updates, deletes, gets or lists an api_observation_tags
resource.
Overview
Name | api_observation_tags |
Type | Resource |
Id | google.apim.api_observation_tags |
Fields
The following fields are returned by SELECT
queries:
- list_api_observation_tags
Successful response
Name | Datatype | Description |
---|
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_api_observation_tags | select | projectsId , locationsId | pageSize , pageToken | ListApiObservationTags 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.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list_api_observation_tags
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 }}';