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
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,32 @@
"resourceName": "mySignalRService"
},
"responses": {
"200": {
"body": {
"sku": {
"name": "Standard_S1",
"tier": "Standard",
"size": "S1",
"capacity": 1
},
"properties": {
"provisioningState": "Succeeded",
"externalIP": "10.0.0.1",
"hostName": "myservice.service.signalr.net",
"publicPort": 443,
"serverPort": 443,
"version": "1.0-preview",
"hostNamePrefix": null
},
"location": "eastus",
"tags": {
"key1": "value1"
},
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService",
"name": "mySignalRService",
"type": "Microsoft.SignalRService/SignalR"
}
},
"201": {
"body": {
"sku": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,12 @@
}
],
"responses": {
"200": {
"description": "Success. The response describes a SignalR service.",
"schema": {
"$ref": "#/definitions/SignalRResource"
}
},
"201": {
"description": "Created. The response describes the new service and contains a Location header to query the operation result.",
"schema": {
Expand Down
2 changes: 1 addition & 1 deletion specification/signalr/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ directive:
- suppress: EnumInsteadOfBoolean
from: signalr.json
where: $.definitions.Dimension.properties.toBeExportedForShoebox
reason: The boolean properties 'toBeExportedForShoebox' is defined by Geneva metrics
reason: The boolean properties 'toBeExportedForShoebox' is defined by Geneva metrics.
- suppress: PutRequestResponseScheme
from: signalr.json
where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}"].put
Expand Down