data
Creates, updates, deletes, gets or lists a data
resource.
Overview
Name | data |
Type | Resource |
Id | google.apigee.data |
Fields
Name | Datatype | Description |
---|---|---|
completed | boolean | Flag indicating whether a transaction is completed or not |
point | array | List of debug data collected by runtime plane at various defined points in the flow. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_environments_apis_revisions_debugsessions_data_get | SELECT | apisId, dataId, debugsessionsId, environmentsId, organizationsId, revisionsId | Gets the debug data from a transaction. |
SELECT
examples
Gets the debug data from a transaction.
SELECT
completed,
point
FROM google.apigee.data
WHERE apisId = '{{ apisId }}'
AND dataId = '{{ dataId }}'
AND debugsessionsId = '{{ debugsessionsId }}'
AND environmentsId = '{{ environmentsId }}'
AND organizationsId = '{{ organizationsId }}'
AND revisionsId = '{{ revisionsId }}';