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

EventType

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

A representation of the event type resource.

interface EventType {
readonly description?: string;
readonly eventSchemaUri?: string;
readonly filteringAttributes?: FilteringAttribute[];
readonly type?: string;
}

§Properties

§
readonly description?: string
[src]

Output only. Human friendly description of what the event type is about. For example "Bucket created in Cloud Storage".

§
readonly eventSchemaUri?: string
[src]
§
readonly filteringAttributes?: FilteringAttribute[]
[src]

Output only. Filtering attributes for the event type.

§
readonly type?: string
[src]

Output only. The full name of the event type (for example, "google.cloud.storage.object.v1.finalized"). In the form of {provider-specific-prefix}.{resource}.{version}.{verb}. Types MUST be versioned and event schemas are guaranteed to remain backward compatible within one version. Note that event type versions and API versions do not need to match.