Skip to content

Commit 11d1ed6

Browse files
author
Autogenerator Pipeline
committed
Merge remote-tracking branch 'origin/main' into autogenerate
2 parents 2f7a560 + 6aed2a4 commit 11d1ed6

File tree

5 files changed

+56
-4
lines changed

5 files changed

+56
-4
lines changed

schemas/2019-06-01/Microsoft.Automation.json

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,6 +1119,54 @@
11191119
},
11201120
"description": "The properties of the create Advanced Schedule."
11211121
},
1122+
"AdvancedScheduleModel": {
1123+
"type": "object",
1124+
"properties": {
1125+
"monthDays": {
1126+
"oneOf": [
1127+
{
1128+
"type": "array",
1129+
"items": {
1130+
"type": "integer"
1131+
}
1132+
},
1133+
{
1134+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
1135+
}
1136+
],
1137+
"description": "Days of the month that the job should execute on. Must be between 1 and 31."
1138+
},
1139+
"monthlyOccurrences": {
1140+
"oneOf": [
1141+
{
1142+
"type": "array",
1143+
"items": {
1144+
"$ref": "#/definitions/AdvancedScheduleMonthlyOccurrence"
1145+
}
1146+
},
1147+
{
1148+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
1149+
}
1150+
],
1151+
"description": "Occurrences of days within a month."
1152+
},
1153+
"weekDays": {
1154+
"oneOf": [
1155+
{
1156+
"type": "array",
1157+
"items": {
1158+
"type": "string"
1159+
}
1160+
},
1161+
{
1162+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
1163+
}
1164+
],
1165+
"description": "Days of the week that the job should execute on."
1166+
}
1167+
},
1168+
"description": "The properties of the create Advanced Schedule."
1169+
},
11221170
"AdvancedScheduleMonthlyOccurrence": {
11231171
"type": "object",
11241172
"properties": {
@@ -3012,7 +3060,7 @@
30123060
"advancedSchedule": {
30133061
"oneOf": [
30143062
{
3015-
"$ref": "#/definitions/AdvancedSchedule"
3063+
"$ref": "#/definitions/AdvancedScheduleModel"
30163064
},
30173065
{
30183066
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"

schemas/2021-08-01/Microsoft.Insights.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@
401401
"severity": {
402402
"oneOf": [
403403
{
404-
"type": "number"
404+
"type": "integer"
405405
},
406406
{
407407
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"

schemas/2021-09-01-preview/Microsoft.Dashboard.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"name": {
3232
"type": "string",
33-
"description": "The name of Azure Managed Workspace for Grafana."
33+
"description": "The name of Azure Managed Grafana."
3434
},
3535
"properties": {
3636
"oneOf": [

schemas/2022-01-01-preview/Microsoft.App.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,6 +1350,10 @@
13501350
"description": "Hostname."
13511351
}
13521352
},
1353+
"required": [
1354+
"certificateId",
1355+
"name"
1356+
],
13531357
"description": "Custom Domain of a Container App"
13541358
},
13551359
"CustomOpenIdConnectProvider": {

schemas/2022-01-01/Microsoft.Batch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2057,7 +2057,7 @@
20572057
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
20582058
}
20592059
],
2060-
"description": "The Batch service retries a task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the task. If the maximum retry count is -1, the Batch service retries the task without limit."
2060+
"description": "The Batch service retries a task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the task. If the maximum retry count is -1, the Batch service retries the task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries)."
20612061
},
20622062
"resourceFiles": {
20632063
"oneOf": [

0 commit comments

Comments
 (0)