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

TriggerPubsubExecutionRequest

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

Request for the TriggerPubsubExecution method.

interface TriggerPubsubExecutionRequest {
deliveryAttempt?: number;
GCPCloudEventsMode?: string;
message?: PubsubMessage;
subscription?: string;
}

§Properties

§
deliveryAttempt?: number
[src]

The number of attempts that have been made to deliver this message. This is set by Pub/Sub for subscriptions that have the "dead letter" feature enabled, and hence provided here for compatibility, but is ignored by Workflows.

§
GCPCloudEventsMode?: string
[src]

Required. LINT: LEGACY_NAMES The query parameter value for __GCP_CloudEventsMode, set by the Eventarc service when configuring triggers.

§

Required. The message of the Pub/Sub push notification.

§
subscription?: string
[src]

Required. The subscription of the Pub/Sub push notification. Format: projects/{project}/subscriptions/{sub}