Skip to content

Commit

Permalink
CodeGen from PR 17598 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 2347781c120c2f7ffe85de53c204c3ab85d884e2 into abb41537b416b30bfe9fca6df98ad0fc64cfb1d7
  • Loading branch information
SDKAuto committed Feb 9, 2022
1 parent 60b772a commit a0d051c
Showing 1 changed file with 49 additions and 1 deletion.
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

0 comments on commit a0d051c

Please sign in to comment.