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 @@ -34,6 +34,7 @@
"hostName": "myservice.service.signalr.net",
"publicPort": 5001,
"serverPort": 5002,
"version": "1.0-preview",
"hostNamePrefix": null
},
"location": "eastus",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"200": {
"body": {
"sku": {
"name": "Basic_DS2",
"tier": "Basic",
"size": "DS2",
"name": "Standard_S1",
"tier": "Standard",
"size": "S1",
"capacity": 1
},
"properties": {
Expand All @@ -20,6 +20,7 @@
"hostName": "myservice.service.signalr.net",
"publicPort": 5001,
"serverPort": 5002,
"version": "1.0-preview",
"hostNamePrefix": null
},
"location": "eastus",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"value": [
{
"sku": {
"name": "Basic_DS2",
"tier": "Basic",
"size": "DS2",
"name": "Standard_S1",
"tier": "Standard",
"size": "S1",
"capacity": 1
},
"properties": {
Expand All @@ -21,6 +21,7 @@
"hostName": "myservice.service.signalr.net",
"publicPort": 5001,
"serverPort": 5002,
"version": "1.0-preview",
"hostNamePrefix": null
},
"location": "eastus",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"value": [
{
"sku": {
"name": "Basic_DS2",
"tier": "Basic",
"size": "DS2",
"name": "Standard_S1",
"tier": "Standard",
"size": "S1",
"capacity": 1
},
"properties": {
Expand All @@ -20,6 +20,7 @@
"hostName": "myservice.service.signalr.net",
"publicPort": 5001,
"serverPort": 5002,
"version": "1.0-preview",
"hostNamePrefix": null
},
"location": "eastus",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"200": {
"body": {
"primaryKey": "primaryAccessKey",
"secondaryKey": "secondaryAccessKey"
"secondaryKey": "secondaryAccessKey",
"primaryConnectionString": "Endpoint=https://yourServiceName.service.signalr.net;AccessKey=primaryAccessKey;",
"secondaryConnectionString": "Endpoint=https://yourServiceName.service.signalr.net;AccessKey=secondaryAccessKey;"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
"201": {
"body": {
"primaryKey": "primaryAccessKey",
"secondaryKey": "secondaryAccessKey"
"secondaryKey": "secondaryAccessKey",
"primaryConnectionString": "Endpoint=https://yourServiceName.service.signalr.net;AccessKey=primaryAccessKey;",
"secondaryConnectionString": "Endpoint=https://yourServiceName.service.signalr.net;AccessKey=secondaryAccessKey;"
},
"headers": {
"Location": "https://management.azure.com/subscriptions/subid/providers/Microsoft.SignalRService/...pathToOperationResult..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"key1": "value1"
},
"sku": {
"name": "Basic_DS2",
"tier": "Basic",
"name": "Standard_S1",
"tier": "Standard",
"capacity": 1
},
"properties": {
Expand All @@ -22,9 +22,9 @@
"200": {
"body": {
"sku": {
"name": "Basic_DS2",
"tier": "Basic",
"size": "DS2",
"name": "Standard_S1",
"tier": "Standard",
"size": "S1",
"capacity": 1
},
"properties": {
Expand All @@ -33,6 +33,7 @@
"hostName": "myservice.service.signalr.net",
"publicPort": 5001,
"serverPort": 5002,
"version": "1.0-preview",
"hostNamePrefix": null
},
"location": "eastus",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,35 @@
"category": {
"description": "The name of the metric category that the metric belongs to. A metric can only belong to a single category.",
"type": "string"
},
"dimensions": {
"description": "The dimensions of the metrics.",
"type": "array",
"items": {
"$ref": "#/definitions/Dimension"
}
}
}
},
"Dimension": {
"description": "Specifications of the Dimension of metrics.",
"type": "object",
"properties": {
"name": {
"description": "The public facing name of the dimension.",
"type": "string"
},
"displayName": {
"description": "Localized friendly display name of the dimension.",
"type": "string"
},
"internalName": {
"description": "Name of the dimension as it appears in MDM.",
"type": "string"
},
"toBeExportedForShoebox": {
"description": "A Boolean flag indicating whether this dimension should be included for the shoebox export scenario.",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -800,6 +829,10 @@
"description": "The publicly accessibly port of the SignalR service which is designed for customer server side usage.",
"type": "integer",
"readOnly": true
},
"version": {
"description": "Version of the SignalR resource. Probably you need the same or higher version of client SDKs.",
"type": "string"
}
}
},
Expand All @@ -824,6 +857,14 @@
"secondaryKey": {
"description": "The secondary access key.",
"type": "string"
},
"primaryConnectionString": {
"description": "SignalR connection string constructed via the primaryKey",
"type": "string"
},
"secondaryConnectionString": {
"description": "SignalR connection string constructed via the secondaryKey",
"type": "string"
}
}
},
Expand Down