Show / Hide Table of Contents

Class PipelineScheduleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PipelineScheduleArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.GitLab
Assembly: Pulumi.GitLab.dll
Syntax
public sealed class PipelineScheduleArgs : ResourceArgs

Constructors

View Source

PipelineScheduleArgs()

Declaration
public PipelineScheduleArgs()

Properties

View Source

Active

The activation of pipeline schedule. If false is set, the pipeline schedule will deactivated initially.

Declaration
public Input<bool> Active { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Cron

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

Declaration
public Input<string> Cron { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CronTimezone

The timezone.

Declaration
public Input<string> CronTimezone { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

The description of the pipeline schedule.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Project

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

Declaration
public Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Ref

The branch/tag name to be triggered.

Declaration
public Input<string> Ref { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.