az signalr upstream
Manage upstream settings.
Commands
az signalr upstream clear |
List upstream settings of an existing SignalR Service. |
az signalr upstream list |
List upstream settings of an existing SignalR Service. |
az signalr upstream update |
Update order sensitive upstream settings for an existing SignalR Service. |
az signalr upstream clear
List upstream settings of an existing SignalR Service.
az signalr upstream clear --name
--resource-group
[--subscription]
Required Parameters
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
az signalr upstream list
List upstream settings of an existing SignalR Service.
az signalr upstream list --name
--resource-group
[--query-examples]
[--subscription]
Required Parameters
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
Recommend JMESPath string for you. You can copy one of the query and paste it after --query parameter within double quotation marks to see the results. You can add one or more positional keywords so that we can give suggestions based on these key words.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
az signalr upstream update
Update order sensitive upstream settings for an existing SignalR Service.
az signalr upstream update --name
--resource-group
--template
[--subscription]
Examples
Update two upstream settings to handle messages and connections separately.
az signalr upstream update -n MySignalR -g MyResourceGroup --template url-template="http://host-connections.com" category-pattern="connections" --template url-template="http://host-connections.com" category-pattern="messages"
Update one upstream setting to handle a specific event in a specific hub.
az signalr upstream update -n MySignalR -g MyResourceGroup --template url-template="http://host.com/{hub}/{event}/{category}" category-pattern="messages" event-pattern="broadcast" hub-pattern="chat"
Required Parameters
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Template item for upstream settings. Use key=value pattern to set properties. Supported keys are "url-template", "hub-pattern", "event-pattern", "category-pattern".
Optional Parameters
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.