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

ScheduleOptions

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

Options customizing the data transfer schedule.

interface ScheduleOptions {
disableAutoScheduling?: boolean;
endTime?: Date;
startTime?: Date;
}

§Properties

§
disableAutoScheduling?: boolean
[src]

If true, automatic scheduling of data transfer runs for this configuration will be disabled. The runs can be started on ad-hoc basis using StartManualTransferRuns API. When automatic scheduling is disabled, the TransferConfig.schedule field will be ignored.

§
endTime?: Date
[src]

Defines time to stop scheduling transfer runs. A transfer run cannot be scheduled at or after the end time. The end time can be changed at any moment. The time when a data transfer can be triggered manually is not limited by this option.

§
startTime?: Date
[src]

Specifies time to start scheduling transfer runs. The first run will be scheduled at or after the start time according to a recurrence pattern defined in the schedule string. The start time can be changed at any moment. The time when a data transfer can be triggered manually is not limited by this option.