Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProjectsLocationsWorkflowsExecutionsListOptions

import type { ProjectsLocationsWorkflowsExecutionsListOptions } from "https://googleapis.deno.dev/v1/workflowexecutions:v1.ts";

Additional options for WorkflowExecutions#projectsLocationsWorkflowsExecutionsList.

interface ProjectsLocationsWorkflowsExecutionsListOptions {
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
view?: "EXECUTION_VIEW_UNSPECIFIED" | "BASIC" | "FULL";
}

§Properties

§
filter?: string
[src]

Optional. Filters applied to the [Executions.ListExecutions] results. The following fields are supported for filtering: executionId, state, createTime, startTime, endTime, duration, workflowRevisionId, stepName, and label. For details, see AIP-160. For example, if you are using the Google APIs Explorer: state="SUCCEEDED" or startTime>"2023-08-01" AND state="FAILED"

§
orderBy?: string
[src]

Optional. Comma-separated list of fields that specify the ordering applied to the [Executions.ListExecutions] results. By default the ordering is based on descending createTime. The following fields are supported for ordering: executionId, state, createTime, startTime, endTime, duration, and workflowRevisionId. For details, see AIP-132.

§
pageSize?: number
[src]

Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 1000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it.

§
pageToken?: string
[src]

A page token, received from a previous ListExecutions call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListExecutions must match the call that provided the page token. Note that pagination is applied to dynamic data. The list of executions returned can change between page requests.

§
view?: "EXECUTION_VIEW_UNSPECIFIED" | "BASIC" | "FULL"
[src]

Optional. A view defining which fields should be filled in the returned executions. The API will default to the BASIC view.