Class ScheduleArgs
Inheritance
Inherited Members
Namespace: Pulumi.Pagerduty
Assembly: Pulumi.Pagerduty.dll
Syntax
public sealed class ScheduleArgs : ResourceArgs
Constructors
View SourceScheduleArgs()
Declaration
public ScheduleArgs()
Properties
View SourceDescription
The description of the schedule
Declaration
public Input<string> Description { get; set; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Input<System.String> |
Layers
A schedule layer block. Schedule layers documented below.
Declaration
public InputList<ScheduleLayerArgs> Layers { get; set; }
Property Value
| Type | Description |
|---|---|
| Pulumi.InputList<ScheduleLayerArgs> |
Name
The name of the schedule.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Input<System.String> |
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> |
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> |