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

PubsubTarget

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

Pub/Sub target. The job will be delivered by publishing a message to the given Pub/Sub topic.

interface PubsubTarget {
attributes?: {
[key: string]: string;
}
;
data?: Uint8Array;
topicName?: string;
}

§Properties

§
attributes?: {
[key: string]: string;
}
[src]

Attributes for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.

§
data?: Uint8Array
[src]

The message payload for PubsubMessage. Pubsub message must contain either non-empty data, or at least one attribute.

§
topicName?: string
[src]

Required. The name of the Cloud Pub/Sub topic to which messages will be published when a job is delivered. The topic name must be in the same format as required by Pub/Sub's PublishRequest.name, for example projects/PROJECT_ID/topics/TOPIC_ID. The topic must be in the same project as the Cloud Scheduler job.