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

ProjectsLocationsWorkflowsExecutionsStepEntriesListOptions

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

Additional options for WorkflowExecutions#projectsLocationsWorkflowsExecutionsStepEntriesList.

interface ProjectsLocationsWorkflowsExecutionsStepEntriesListOptions {
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
skip?: number;
}

§Properties

§
filter?: string
[src]

Optional. Filters applied to the [StepEntries.ListStepEntries] results. The following fields are supported for filtering: entryId, createTime, updateTime, routine, step, stepType, state. For details, see AIP-160. For example, if you are using the Google APIs Explorer: state="SUCCEEDED" or createTime>"2023-08-01" AND state="FAILED"

§
orderBy?: string
[src]

Optional. Comma-separated list of fields that specify the ordering applied to the [StepEntries.ListStepEntries] results. By default the ordering is based on ascending entryId. The following fields are supported for ordering: entryId, createTime, updateTime, routine, step, stepType, state. For details, see AIP-132.

§
pageSize?: number
[src]

Optional. Number of step entries to return per call. The default max is 1000.

§
pageToken?: string
[src]

Optional. A page token, received from a previous ListStepEntries call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListStepEntries must match the call that provided the page token.