GetPipelineScheduleResult

data class GetPipelineScheduleResult(val active: Boolean, val createdAt: String, val cron: String, val cronTimezone: String, val description: String, val id: String, val lastPipeline: GetPipelineScheduleLastPipeline, val nextRunAt: String, val owner: GetPipelineScheduleOwner, val pipelineScheduleId: Int, val project: String, val ref: String, val updatedAt: String, val variables: List<GetPipelineScheduleVariable>)

A collection of values returned by getPipelineSchedule.

Constructors

Link copied to clipboard
constructor(active: Boolean, createdAt: String, cron: String, cronTimezone: String, description: String, id: String, lastPipeline: GetPipelineScheduleLastPipeline, nextRunAt: String, owner: GetPipelineScheduleOwner, pipelineScheduleId: Int, project: String, ref: String, updatedAt: String, variables: List<GetPipelineScheduleVariable>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The activation status of pipeline schedule.

Link copied to clipboard

The datetime of when the schedule was created.

Link copied to clipboard

The cron (e.g. 0 1 * * *).

Link copied to clipboard

The timezone.

Link copied to clipboard

The description of the pipeline schedule.

Link copied to clipboard
val id: String
Link copied to clipboard

The details of the last pipeline run by the schedule.

Link copied to clipboard

The datetime of when the schedule will next run.

Link copied to clipboard

The details of the pipeline schedule owner.

Link copied to clipboard

The pipeline schedule id.

Link copied to clipboard

The name or id of the project to add the schedule to.

Link copied to clipboard
val ref: String

The branch/tag name to be triggered. This will be the full branch reference, for example: refs/heads/main, not main.

Link copied to clipboard

The datetime of when the schedule was last updated.

Link copied to clipboard

The list of the pipeline schedule variables.