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

StepEntry

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

An StepEntry contains debugging information for a step transition in a workflow execution.

interface StepEntry {
readonly createTime?: Date;
readonly entryId?: bigint;
readonly exception?: Exception;
readonly name?: string;
readonly navigationInfo?: NavigationInfo;
readonly routine?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "STATE_IN_PROGRESS"
| "STATE_SUCCEEDED"
| "STATE_FAILED";
readonly step?: string;
readonly stepEntryMetadata?: StepEntryMetadata;
readonly stepType?:
| "STEP_TYPE_UNSPECIFIED"
| "STEP_ASSIGN"
| "STEP_STD_LIB_CALL"
| "STEP_CONNECTOR_CALL"
| "STEP_SUBWORKFLOW_CALL"
| "STEP_CALL"
| "STEP_SWITCH"
| "STEP_CONDITION"
| "STEP_FOR"
| "STEP_FOR_ITERATION"
| "STEP_PARALLEL_FOR"
| "STEP_PARALLEL_BRANCH"
| "STEP_PARALLEL_BRANCH_ENTRY"
| "STEP_TRY_RETRY_EXCEPT"
| "STEP_TRY"
| "STEP_RETRY"
| "STEP_EXCEPT"
| "STEP_RETURN"
| "STEP_RAISE"
| "STEP_GOTO";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The creation time of the step entry.

§
readonly entryId?: bigint
[src]

Output only. The numeric ID of this step entry, used for navigation.

§
readonly exception?: Exception
[src]

Output only. The exception thrown by the step entry.

§
readonly name?: string
[src]

Output only. The full resource name of the step entry. Each step entry has a unique entry ID, which is a monotonically increasing counter. Step entry names have the format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/stepEntries/{step_entry}.

§
readonly routine?: string
[src]

Output only. The name of the routine this step entry belongs to. A routine name is the subworkflow name defined in the YAML source code. The top level routine name is main.

§
readonly state?: "STATE_UNSPECIFIED" | "STATE_IN_PROGRESS" | "STATE_SUCCEEDED" | "STATE_FAILED"
[src]

Output only. The state of the step entry.

§
readonly step?: string
[src]

Output only. The name of the step this step entry belongs to.

§
readonly stepEntryMetadata?: StepEntryMetadata
[src]

Output only. The StepEntryMetadata associated to this step.

§
readonly stepType?: "STEP_TYPE_UNSPECIFIED" | "STEP_ASSIGN" | "STEP_STD_LIB_CALL" | "STEP_CONNECTOR_CALL" | "STEP_SUBWORKFLOW_CALL" | "STEP_CALL" | "STEP_SWITCH" | "STEP_CONDITION" | "STEP_FOR" | "STEP_FOR_ITERATION" | "STEP_PARALLEL_FOR" | "STEP_PARALLEL_BRANCH" | "STEP_PARALLEL_BRANCH_ENTRY" | "STEP_TRY_RETRY_EXCEPT" | "STEP_TRY" | "STEP_RETRY" | "STEP_EXCEPT" | "STEP_RETURN" | "STEP_RAISE" | "STEP_GOTO"
[src]

Output only. The type of the step this step entry belongs to.

§
readonly updateTime?: Date
[src]

Output only. The most recently updated time of the step entry.