Lists the results of all the integration executions. The response includes the same information as the execution log in the Integration UI.
Arguments
Parameters | |
---|---|
parent |
Required. The parent resource name of the integration execution. |
filter |
Optional. Standard filter field, we support filtering on all fields in EventExecutionParamIndexes table. All fields support for EQUALS, in additional: CreateTimestamp support for LESS_THAN, GREATER_THAN ParameterKey, ParameterValue, ParameterType support for HAS For example: "parameter_value" HAS \"parameter1\" Also supports operators like AND, OR, NOT For example, trigger_id=\"id1\" AND event_execution_state=\"FAILED\" |
filterParams.customFilter |
Optional user-provided custom filter. |
filterParams.endTime |
End timestamp. |
filterParams.eventStatuses |
List of possible event statuses. |
filterParams.executionId |
Execution id. |
filterParams.parameterKey |
Param key. DEPRECATED. User parameter_pair_key instead. |
filterParams.parameterPairKey |
Param key in the key value pair filter. |
filterParams.parameterPairValue |
Param value in the key value pair filter. |
filterParams.parameterType |
Param type. |
filterParams.parameterValue |
Param value. DEPRECATED. User parameter_pair_value instead. |
filterParams.startTime |
Start timestamp. |
filterParams.taskStatuses |
List of possible task statuses. |
filterParams.workflowName |
Workflow name. |
orderBy |
Optional. The results would be returned in order you specified here. Currently supporting "last_modified_time" and "create_time". |
pageSize |
Optional. The size of entries in the response. |
pageToken |
Optional. The token returned in the previous response. |
readMask |
Optional. View mask for the response data. If set, only the field specified will be returned as part of the result. If not set, all fields in event execution info will be filled and returned. |
refreshAcl |
Optional. If true, the service will use the most recent acl information to list event execution infos and renew the acl cache. Note that fetching the most recent acl is synchronous, so it will increase RPC call latency. |
truncateParams |
Optional. If true, the service will truncate the params to only keep the first 1000 characters of string params and empty the executions in order to make response smaller. Only works for UI and when the params fields are not filtered out. |
location |
Location of the HTTP endpoint. For example, if location is set to |
Raised exceptions
Exceptions | |
---|---|
ConnectionError |
In case of a network problem (such as DNS failure or refused connection). |
HttpError |
If the response status is >= 400 (excluding 429 and 503). |
TimeoutError |
If a long-running operation takes longer to finish than the specified timeout limit. |
TypeError |
If an operation or function receives an argument of the wrong type. |
ValueError |
If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout. |
Response
If successful, the response contains an instance of GoogleCloudIntegrationsV1alphaListExecutionsResponse
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation.
YAML
- list: call: googleapis.integrations.v1.projects.locations.integrations.executions.list args: parent: ... filter: ... filterParams: customFilter: ... endTime: ... eventStatuses: ... executionId: ... parameterKey: ... parameterPairKey: ... parameterPairValue: ... parameterType: ... parameterValue: ... startTime: ... taskStatuses: ... workflowName: ... orderBy: ... pageSize: ... pageToken: ... readMask: ... refreshAcl: ... truncateParams: ... result: listResult
JSON
[ { "list": { "call": "googleapis.integrations.v1.projects.locations.integrations.executions.list", "args": { "parent": "...", "filter": "...", "filterParams": { "customFilter": "...", "endTime": "...", "eventStatuses": "...", "executionId": "...", "parameterKey": "...", "parameterPairKey": "...", "parameterPairValue": "...", "parameterType": "...", "parameterValue": "...", "startTime": "...", "taskStatuses": "...", "workflowName": "..." }, "orderBy": "...", "pageSize": "...", "pageToken": "...", "readMask": "...", "refreshAcl": "...", "truncateParams": "..." }, "result": "listResult" } } ]