api_operations
Creates, updates, deletes, gets or lists a api_operations
resource.
Overview
Name | api_operations |
Type | Resource |
Id | google.apim.api_operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Name of resource |
count | string | The number of occurrences of this API Operation. |
firstSeenTime | string | First seen time stamp |
httpOperation | object | An HTTP-based API Operation, sometimes called a "REST" Operation. |
lastSeenTime | string | Last seen time stamp |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | apiObservationsId, apiOperationsId, locationsId, observationJobsId, projectsId | GetApiOperation retrieves a single ApiOperation by name. |
list | SELECT | apiObservationsId, locationsId, observationJobsId, projectsId | ListApiOperations gets all ApiOperations for a given project and location and ObservationJob and ApiObservation. |
SELECT
examples
ListApiOperations gets all ApiOperations for a given project and location and ObservationJob and ApiObservation.
SELECT
name,
count,
firstSeenTime,
httpOperation,
lastSeenTime
FROM google.apim.api_operations
WHERE apiObservationsId = '{{ apiObservationsId }}'
AND locationsId = '{{ locationsId }}'
AND observationJobsId = '{{ observationJobsId }}'
AND projectsId = '{{ projectsId }}';