Class ScheduleArgs
Inherited Members
Namespace: Pulumi.Azure.Automation
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ScheduleArgs : ResourceArgs
Constructors
View SourceScheduleArgs()
Declaration
public ScheduleArgs()
Properties
View SourceAutomationAccountName
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> |
Description
A description for this Schedule.
Declaration
public Input<string> Description { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ExpiryTime
The end time of the schedule.
Declaration
public Input<string> ExpiryTime { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |