Skip to content

Commit 0467bd6

Browse files
authored
Adding default values to fix correctness issue (#12286)
* Adding default values to fix correctness issue * revoke default value for allowedOrigins
1 parent dd03be9 commit 0467bd6

File tree

2 files changed

+4
-2
lines changed
  • specification/signalr/resource-manager/Microsoft.SignalRService

2 files changed

+4
-2
lines changed

specification/signalr/resource-manager/Microsoft.SignalRService/preview/2020-07-01-preview/signalr.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,8 @@
13431343
"properties": {
13441344
"defaultAction": {
13451345
"$ref": "#/definitions/ACLAction",
1346-
"description": "Default action when no other rule matches"
1346+
"description": "Default action when no other rule matches",
1347+
"default": "Deny"
13471348
},
13481349
"publicNetwork": {
13491350
"$ref": "#/definitions/NetworkACL",

specification/signalr/resource-manager/Microsoft.SignalRService/stable/2020-05-01/signalr.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,8 @@
13401340
"properties": {
13411341
"defaultAction": {
13421342
"$ref": "#/definitions/ACLAction",
1343-
"description": "Default action when no other rule matches"
1343+
"description": "Default action when no other rule matches",
1344+
"default": "Deny"
13441345
},
13451346
"publicNetwork": {
13461347
"$ref": "#/definitions/NetworkACL",

0 commit comments

Comments
 (0)