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

EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails

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

Contains the details of the execution info of this event: this includes the tasks execution details plus the event execution statistics. Next available id: 11

interface EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails {
eventExecutionSnapshotsSize?: bigint;
eventExecutionState?:
| "UNSPECIFIED"
| "ON_HOLD"
| "IN_PROCESS"
| "SUCCEEDED"
| "FAILED"
| "CANCELED"
| "RETRY_ON_HOLD"
| "SUSPENDED";
eventRetriesFromBeginningCount?: number;
logFilePath?: string;
networkAddress?: string;
nextExecutionTime?: bigint;
ryeLockUnheldCount?: number;
}

§Properties

§

After snapshot migration, this field will no longer be populated, but old execution snapshots will still be accessible.

§
eventExecutionSnapshotsSize?: bigint
[src]

Total size of all event_execution_snapshots for an execution

§
eventExecutionState?: "UNSPECIFIED" | "ON_HOLD" | "IN_PROCESS" | "SUCCEEDED" | "FAILED" | "CANCELED" | "RETRY_ON_HOLD" | "SUSPENDED"
[src]

The execution state of this event.

§
eventRetriesFromBeginningCount?: number
[src]

Indicates the number of times the execution has restarted from the beginning.

§
logFilePath?: string
[src]

The log file path (aka. cns address) for this event.

§
networkAddress?: string
[src]

The network address (aka. bns address) that indicates where the event executor is running.

§
nextExecutionTime?: bigint
[src]

Next scheduled execution time in case the execution status was RETRY_ON_HOLD.

§
ryeLockUnheldCount?: number
[src]

Used internally and shouldn't be exposed to users. A counter for the cron job to record how many times this event is in in_process state but don't have a lock consecutively/