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

ScheduleOptionsV2

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

V2 options customizing different types of data transfer schedule. This field supports existing time-based and manual transfer schedule. Also supports Event-Driven transfer schedule. ScheduleOptionsV2 cannot be used together with ScheduleOptions/Schedule.

interface ScheduleOptionsV2 {
eventDrivenSchedule?: EventDrivenSchedule;
manualSchedule?: ManualSchedule;
timeBasedSchedule?: TimeBasedSchedule;
}

§Properties

§
eventDrivenSchedule?: EventDrivenSchedule
[src]

Event driven transfer schedule options. If set, the transfer will be scheduled upon events arrial.

§
manualSchedule?: ManualSchedule
[src]

Manual transfer schedule. If set, the transfer run will not be auto-scheduled by the system, unless the client invokes StartManualTransferRuns. This is equivalent to disable_auto_scheduling = true.

§
timeBasedSchedule?: TimeBasedSchedule
[src]

Time based transfer schedule options. This is the default schedule option.