Method: googleapis.integrations.v1.projects.locations.integrations.executions.list

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

string

Required. The parent resource name of the integration execution.

filter

string

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

string

Optional user-provided custom filter.

filterParams.endTime

string (int64 format)

End timestamp.

filterParams.eventStatuses

string

List of possible event statuses.

filterParams.executionId

string

Execution id.

filterParams.parameterKey

string

Param key. DEPRECATED. User parameter_pair_key instead.

filterParams.parameterPairKey

string

Param key in the key value pair filter.

filterParams.parameterPairValue

string

Param value in the key value pair filter.

filterParams.parameterType

string

Param type.

filterParams.parameterValue

string

Param value. DEPRECATED. User parameter_pair_value instead.

filterParams.startTime

string (int64 format)

Start timestamp.

filterParams.taskStatuses

string

List of possible task statuses.

filterParams.workflowName

string

Workflow name.

orderBy

string

Optional. The results would be returned in order you specified here. Currently supporting "last_modified_time" and "create_time".

pageSize

integer (int32 format)

Optional. The size of entries in the response.

pageToken

string

Optional. The token returned in the previous response.

readMask

string (FieldMask format)

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

boolean

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

boolean

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

string

Location of the HTTP endpoint. For example, if location is set to us-central1, the endpoint https://us-central1-integrations.googleapis.com will be used. If not set, the global endpint will be used. See service endpoints.

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"
    }
  }
]