Skip to content
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
update CheckNameAvailability resource extra location in its route
  • Loading branch information
juniwang committed May 3, 2018
commit fe945cab5ae7da48a881392a7bc8b3fda2ef3748
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"parameters": {
"location": "eastus",
"parameters": {
"type": "Microsoft.SignalRService/SignalR",
"name": "my-signalr-service"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,21 @@
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/checkNameAvailability": {
"/subscriptions/{subscriptionId}/providers/Microsoft.SignalRService/locations/{location}/checkNameAvailability": {
"post": {
"tags": [
"SignalR"
],
"description": "Checks that the SignalR name is valid and is not already in use.",
"operationId": "SignalR_CheckNameAvailability",
"parameters": [
{
"name": "location",
"in": "path",
"description": "the region",
"required": true,
"type": "string"
},
{
"name": "parameters",
"in": "body",
Expand Down Expand Up @@ -844,7 +851,10 @@
"in": "query",
"description": "Client Api Version.",
"required": true,
"type": "string"
"type": "string",
"enum": [
"2018-03-01-preview"
]
},
"SubscriptionIdParameter": {
"name": "subscriptionId",
Expand Down