callbacks
Creates, updates, deletes, gets or lists a callbacks
resource.
Overview
Name | callbacks |
Type | Resource |
Id | google.workflowexecutions.callbacks |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The resource name of the callback. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/callback/{callback} |
availablePayloads | array | Output only. The payloads received by the callback that have not been processed by a waiting execution step. |
method | string | Output only. The method accepted by the callback. For example: GET, POST, PUT. |
waiters | string | Output only. Number of execution steps waiting on this callback. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | executionsId, locationsId, projectsId, workflowsId | Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID. |
SELECT
examples
Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID.
SELECT
name,
availablePayloads,
method,
waiters
FROM google.workflowexecutions.callbacks
WHERE executionsId = '{{ executionsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND workflowsId = '{{ workflowsId }}';