ScheduleArgs

data class ScheduleArgs(val cronSchedule: Output<String>? = null, val description: Output<String>? = null, val executionTemplate: Output<ExecutionTemplateArgs>? = null, val location: Output<String>? = null, val project: Output<String>? = null, val scheduleId: Output<String>? = null, val state: Output<ScheduleState>? = null, val timeZone: Output<String>? = null) : ConvertibleToJava<ScheduleArgs>

Creates a new Scheduled Notebook in a given project and location. Auto-naming is currently not supported for this resource.

Constructors

Link copied to clipboard
fun ScheduleArgs(cronSchedule: Output<String>? = null, description: Output<String>? = null, executionTemplate: Output<ExecutionTemplateArgs>? = null, location: Output<String>? = null, project: Output<String>? = null, scheduleId: Output<String>? = null, state: Output<ScheduleState>? = null, timeZone: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ScheduleArgs

Properties

Link copied to clipboard
val cronSchedule: Output<String>? = null

Cron-tab formatted schedule by which the job will execute. Format: minute, hour, day of month, month, day of week, e.g. 0 0 * * WED = every Wednesday More examples: https://crontab.guru/examples.html

Link copied to clipboard
val description: Output<String>? = null

A brief description of this environment.

Link copied to clipboard

Notebook Execution Template corresponding to this schedule.

Link copied to clipboard
val location: Output<String>? = null
Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val scheduleId: Output<String>? = null

Required. User-defined unique ID of this schedule.

Link copied to clipboard
val state: Output<ScheduleState>? = null
Link copied to clipboard
val timeZone: Output<String>? = null

Timezone on which the cron_schedule. The value of this field must be a time zone name from the tz database. TZ Database: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones Note that some time zones include a provision for daylight savings time. The rules for daylight saving time are determined by the chosen tz. For UTC use the string "utc". If a time zone is not specified, the default will be in UTC (also known as GMT).