Show / Hide Table of Contents

Class ScheduleState

Inheritance
System.Object
Pulumi.InputArgs
Pulumi.ResourceArgs
ScheduleState
Inherited Members
Pulumi.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.Pagerduty
Assembly: Pulumi.Pagerduty.dll
Syntax
public sealed class ScheduleState : ResourceArgs

Constructors

View Source

ScheduleState()

Declaration
public ScheduleState()

Properties

View Source

Description

The description of the schedule

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

Layers

A schedule layer block. Schedule layers documented below.

Declaration
public InputList<ScheduleLayerGetArgs> Layers { get; set; }
Property Value
Type Description
Pulumi.InputList<ScheduleLayerGetArgs>
View Source

Name

The name of the schedule.

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

Overflow

Any on-call schedule entries that pass the date range bounds will be truncated at the bounds, unless the parameter overflow is passed. For instance, if your schedule is a rotation that changes daily at midnight UTC, and your date range is from 2011-06-01T10:00:00Z to 2011-06-01T14:00:00Z: If you don't pass the overflow=true parameter, you will get one schedule entry returned with a start of 2011-06-01T10:00:00Z and end of 2011-06-01T14:00:00Z. If you do pass the overflow parameter, you will get one schedule entry returned with a start of 2011-06-01T00:00:00Z and end of 2011-06-02T00:00:00Z.

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

TimeZone

The time zone of the schedule (e.g Europe/Berlin).

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