Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 49 additions & 1 deletion schemas/2019-06-01/Microsoft.Automation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1119,6 +1119,54 @@
},
"description": "The properties of the create Advanced Schedule."
},
"AdvancedScheduleModel": {
"type": "object",
"properties": {
"monthDays": {
"oneOf": [
{
"type": "array",
"items": {
"type": "integer"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Days of the month that the job should execute on. Must be between 1 and 31."
},
"monthlyOccurrences": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/AdvancedScheduleMonthlyOccurrence"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Occurrences of days within a month."
},
"weekDays": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Days of the week that the job should execute on."
}
},
"description": "The properties of the create Advanced Schedule."
},
"AdvancedScheduleMonthlyOccurrence": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3012,7 +3060,7 @@
"advancedSchedule": {
"oneOf": [
{
"$ref": "#/definitions/AdvancedSchedule"
"$ref": "#/definitions/AdvancedScheduleModel"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand Down