PipelineScheduleInfo

data class PipelineScheduleInfo(val nextJobTime: String? = null, val schedule: String? = null, val timeZone: String? = null)

Constructors

Link copied to clipboard
constructor(nextJobTime: String? = null, schedule: String? = null, timeZone: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val nextJobTime: String? = null

(Output) When the next Scheduler job is going to run. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Link copied to clipboard
val schedule: String? = null

Unix-cron format of the schedule. This information is retrieved from the linked Cloud Scheduler.

Link copied to clipboard
val timeZone: String? = null

Timezone ID. This matches the timezone IDs used by the Cloud Scheduler API. If empty, UTC time is assumed.