Show / Hide Table of Contents

Class ScheduleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ScheduleArgs
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.Azure.Automation
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ScheduleArgs : ResourceArgs

Constructors

View Source

ScheduleArgs()

Declaration
public ScheduleArgs()

Properties

View Source

AutomationAccountName

The name of the automation account in which the Schedule is created. Changing this forces a new resource to be created.

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

Description

A description for this Schedule.

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

ExpiryTime

The end time of the schedule.

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

Frequency

The frequency of the schedule. - can be either OneTime, Day, Hour, Week, or Month.

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

Interval

The number of frequencys between runs. Only valid when frequency is Day, Hour, Week, or Month and defaults to 1.

Declaration
public Input<int> Interval { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MonthDays

List of days of the month that the job should execute on. Must be between 1 and 31. -1 for last day of the month. Only valid when frequency is Month.

Declaration
public InputList<int> MonthDays { get; set; }
Property Value
Type Description
InputList<System.Int32>
View Source

MonthlyOccurrences

List of occurrences of days within a month. Only valid when frequency is Month. The monthly_occurrence block supports fields documented below.

Declaration
public InputList<ScheduleMonthlyOccurrenceArgs> MonthlyOccurrences { get; set; }
Property Value
Type Description
InputList<ScheduleMonthlyOccurrenceArgs>
View Source

Name

Specifies the name of the Schedule. Changing this forces a new resource to be created.

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

ResourceGroupName

The name of the resource group in which the Schedule is created. Changing this forces a new resource to be created.

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

StartTime

Start time of the schedule. Must be at least five minutes in the future. Defaults to seven minutes in the future from the time the resource is created.

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

Timezone

The timezone of the start time. Defaults to UTC. For possible values see: https://msdn.microsoft.com/en-us/library/ms912391(v=winembedded.11).aspx

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

WeekDays

List of days of the week that the job should execute on. Only valid when frequency is Week.

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