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

Pubsub

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

Represents a Pub/Sub transport.

interface Pubsub {
readonly subscription?: string;
topic?: string;
}

§Properties

§
readonly subscription?: string
[src]

Output only. The name of the Pub/Sub subscription created and managed by Eventarc as a transport for the event delivery. Format: projects/{PROJECT_ID}/subscriptions/{SUBSCRIPTION_NAME}.

§
topic?: string
[src]

Optional. The name of the Pub/Sub topic created and managed by Eventarc as a transport for the event delivery. Format: projects/{PROJECT_ID}/topics/{TOPIC_NAME}. You can set an existing topic for triggers of the type google.cloud.pubsub.topic.v1.messagePublished. The topic you provide here is not deleted by Eventarc at trigger deletion.