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

Event

import type { Event } from "https://googleapis.deno.dev/v1/notebooks:v2.ts";

The definition of an Event for a managed / semi-managed notebook instance.

interface Event {
details?: {
[key: string]: string;
}
;
reportTime?: Date;
type?:
| "EVENT_TYPE_UNSPECIFIED"
| "IDLE"
| "HEARTBEAT"
| "HEALTH"
| "MAINTENANCE"
| "METADATA_CHANGE";
}

§Properties

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

Optional. Event details. This field is used to pass event information.

§
reportTime?: Date
[src]

Optional. Event report time.

§
type?: "EVENT_TYPE_UNSPECIFIED" | "IDLE" | "HEARTBEAT" | "HEALTH" | "MAINTENANCE" | "METADATA_CHANGE"
[src]

Optional. Event type.