Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new property for CORS settings #6478

Merged
merged 1 commit into from
Jul 26, 2019
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
}
},
"api-version": "2018-10-01",
Expand Down Expand Up @@ -49,7 +55,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
},
"location": "eastus",
"tags": {
Expand All @@ -69,4 +81,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
},
"204": {}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
},
"location": "eastus",
"tags": {
Expand All @@ -40,4 +46,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
},
"location": "eastus",
"tags": {
Expand All @@ -43,4 +49,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
},
"location": "eastus",
"tags": {
Expand All @@ -42,4 +48,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
},
"204": {}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
}
},
"api-version": "2018-10-01",
Expand Down Expand Up @@ -48,7 +54,13 @@
"value": "Serverless",
"properties": {}
}
]
],
"cors": {
"allowedOrigins": [
"https://foo.com",
"https://bar.com"
]
}
},
"location": "eastus",
"tags": {
Expand All @@ -65,4 +77,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,10 @@
"items": {
"$ref": "#/definitions/SignalRFeature"
}
},
"cors": {
"$ref": "#/definitions/SignalRCorsSettings",
"description": "Cross-Origin Resource Sharing (CORS) settings."
}
}
},
Expand Down Expand Up @@ -930,6 +934,19 @@
}
}
},
"SignalRCorsSettings": {
"description": "Cross-Origin Resource Sharing (CORS) settings.",
"type": "object",
"properties": {
"allowedOrigins": {
"description": "Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use \"*\" to allow all. If omitted, allow all by default.",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"SignalRKeys": {
"description": "A class represents the access keys of SignalR service.",
"type": "object",
Expand Down Expand Up @@ -1120,4 +1137,4 @@
]
}
]
}
}