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

ChannelConnection

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

A representation of the ChannelConnection resource. A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

interface ChannelConnection {
activationToken?: string;
channel?: string;
readonly createTime?: Date;
name?: string;
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
activationToken?: string
[src]

Input only. Activation token for the channel. The token will be used during the creation of ChannelConnection to bind the channel with the provider project. This field will not be stored in the provider resource.

§
channel?: string
[src]

Required. The name of the connected subscriber Channel. This is a weak reference to avoid cross project and cross accounts references. This must be in projects/{project}/location/{location}/channels/{channel_id} format.

§
readonly createTime?: Date
[src]

Output only. The creation time.

§
name?: string
[src]

Required. The name of the connection.

§
readonly uid?: string
[src]

Output only. Server assigned ID of the resource. The server guarantees uniqueness and immutability until deleted.

§
readonly updateTime?: Date
[src]

Output only. The last-modified time.