Show / Hide Table of Contents

Class DowntimeRecurrenceGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DowntimeRecurrenceGetArgs
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.Datadog.Inputs
Assembly: Pulumi.Datadog.dll
Syntax
public sealed class DowntimeRecurrenceGetArgs : ResourceArgs

Constructors

View Source

DowntimeRecurrenceGetArgs()

Declaration
public DowntimeRecurrenceGetArgs()

Properties

View Source

Period

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>
View Source

Type

days, weeks, months, or years

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

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.