ScheduledSqlSchedule

data class ScheduledSqlSchedule(val cronExpression: String? = null, val delay: Int? = null, val interval: String? = null, val runImmediately: Boolean? = null, val timeZone: String? = null, val type: String? = null)

Constructors

Link copied to clipboard
constructor(cronExpression: String? = null, delay: Int? = null, interval: String? = null, runImmediately: Boolean? = null, timeZone: String? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cronExpression: String? = null

Cron expression, minimum precision is minutes, 24-hour clock. For example, 0 0/1 **indicates that the check is performed every one hour from 00:00. When type is set to Cron, cronExpression must be set.

Link copied to clipboard
val delay: Int? = null

Delay time.

Link copied to clipboard
val interval: String? = null

Time interval, such as 5m, 1H.

Link copied to clipboard
val runImmediately: Boolean? = null

Whether to execute the OSS import task immediately after it is created.

Link copied to clipboard
val timeZone: String? = null

Time Zone.

Link copied to clipboard
val type: String? = null

Check the frequency type. Log Service checks the query and analysis results based on the frequency you configured. The value is as follows: FixedRate: checks the query and analysis results at fixed intervals. Cron: specifies a time interval through a Cron expression, and checks the query and analysis results at the specified time interval. Weekly: Check the query and analysis results at a fixed point in time on the day of the week. Daily: checks the query and analysis results at a fixed time point every day. Hourly: Check query and analysis results every hour.