Class DowntimeRecurrenceGetArgs
Inherited Members
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.Datadog.Inputs
Assembly: Pulumi.Datadog.dll
Syntax
public sealed class DowntimeRecurrenceGetArgs : ResourceArgs
Constructors
View SourceDowntimeRecurrenceGetArgs()
Declaration
public DowntimeRecurrenceGetArgs()
Properties
View SourcePeriod
How often to repeat as an integer. For example to repeat every 3 days, select a type of days and a period of 3.
Declaration
public Input<int> Period { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Type
days, weeks, months, or years
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
UntilDate
The date at which the recurrence should end as a POSIX timestamp. until_occurrences and until_date are mutually exclusive.
Declaration
public Input<int> UntilDate { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
UntilOccurrences
How many times the downtime will be rescheduled. until_occurrences and until_date are mutually exclusive.
Declaration
public Input<int> UntilOccurrences { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
WeekDays
A list of week days to repeat on. Choose from: Mon, Tue, Wed, Thu, Fri, Sat or Sun. Only applicable when type is weeks. First letter must be capitalized.
Declaration
public InputList<string> WeekDays { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |