GetAlertsAlertSchedule

data class GetAlertsAlertSchedule(val cronExpression: String, val delay: Int, val interval: String, val runImmdiately: Boolean, val timeZone: String, val type: String)

Constructors

Link copied to clipboard
constructor(cronExpression: String, delay: Int, interval: String, runImmdiately: Boolean, timeZone: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Cron expression, the minimum accuracy is minutes, 24 hours. For example, 0 0/1 * * * means that the check is conducted every 1 hour from 00:00.When type is set to Cron, cronExpression must be set.

Link copied to clipboard
val delay: Int

Timed task execution delay (unit: s).

Link copied to clipboard

Fixed interval for scheduling.

Link copied to clipboard

Dispatch immediately.

Link copied to clipboard

The time zone where the Cron expression is located. The default value is null, indicating the eighth zone in the east.

Link copied to clipboard

Check the frequency type. Log Service checks the query and analysis results according to the frequency you configured. The values are as follows:Fixedate: checks query and analysis results at regular intervals.Cron: specifies the time interval by using the Cron expression, and checks the query and analysis results at the specified time interval.