Skip to content

Commit

Permalink
chore: Format BlobServicesGet.json (#4641)
Browse files Browse the repository at this point in the history
- Remove trailing comma that failed the JSON.parse in semantic validation
- Tabs -> spaces
  • Loading branch information
nschonni authored and praries880 committed Dec 3, 2018
1 parent 7bb5751 commit f2014e9
Showing 1 changed file with 36 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,63 +15,62 @@
"type": "Microsoft.Storage/storageAccounts/blobServices",
"properties": {
"cors": {
"corsRules": [
{
"corsRules": [{
"allowedOrigins": [
"http://www.contoso.com",
"http://www.fabrikam.com"
],
"http://www.contoso.com",
"http://www.fabrikam.com"
],
"allowedMethods": [
"GET",
"HEAD",
"POST",
"OPTIONS",
"MERGE",
"PUT"
],
"GET",
"HEAD",
"POST",
"OPTIONS",
"MERGE",
"PUT"
],
"maxAgeInSeconds": 100,
"exposedHeaders": [
"x-ms-meta-*"
],
"x-ms-meta-*"
],
"allowedHeaders": [
"x-ms-meta-abc",
"x-ms-meta-data*",
"x-ms-meta-target*"
],
"x-ms-meta-abc",
"x-ms-meta-data*",
"x-ms-meta-target*"
]
},
{
"allowedOrigins": [
"*"
],
"*"
],
"allowedMethods": [
"GET"
"GET"
],
"maxAgeInSeconds": 2,
"exposedHeaders": [
"*"
],
"*"
],
"allowedHeaders": [
"*"
],
"*"
]
},
{
"allowedOrigins": [
"http://www.abc23.com",
"https://www.fabrikam.com/*"
],
"http://www.abc23.com",
"https://www.fabrikam.com/*"
],
"allowedMethods": [
"GET",
"PUT"
"GET",
"PUT"
],
"maxAgeInSeconds": 2000,
"exposedHeaders": [
"x-ms-meta-abc",
"x-ms-meta-data*",
"x -ms-meta-target*"
],
"x-ms-meta-abc",
"x-ms-meta-data*",
"x -ms-meta-target*"
],
"allowedHeaders": [
"x-ms-meta-12345675754564*"
],
"x-ms-meta-12345675754564*"
]
}
]
},
Expand All @@ -84,4 +83,4 @@
}
}
}
}
}

0 comments on commit f2014e9

Please sign in to comment.