az signalr
Manage Azure SignalR Service.
Commands
Name | Description | Type | Status |
---|---|---|---|
az signalr cors |
Manage CORS for Azure SignalR Service. |
Core | GA |
az signalr cors add |
Add allowed origins to a SignalR Service. |
Core | GA |
az signalr cors list |
List allowed origins of a SignalR Service. |
Core | GA |
az signalr cors remove |
Remove allowed origins from a SignalR Service. |
Core | GA |
az signalr cors update |
Update allowed origins to a SignalR Service. |
Core | GA |
az signalr create |
Creates a SignalR Service. |
Core | GA |
az signalr custom-certificate |
Manage custom certificate settings. |
Core | GA |
az signalr custom-certificate create |
Create a custom certificate of SignalR Service. |
Core | GA |
az signalr custom-certificate delete |
Delete a custom certificate of SignalR Service. |
Core | GA |
az signalr custom-certificate list |
List custom certificate of SignalR Service. |
Core | GA |
az signalr custom-certificate show |
Show the detail of a custom certificate of SignalR Service. |
Core | GA |
az signalr custom-certificate update |
Update a custom certificate of SignalR Service. |
Core | GA |
az signalr custom-domain |
Manage custom domain settings. |
Core | GA |
az signalr custom-domain create |
Create a custom domain of SignalR Service. |
Core | GA |
az signalr custom-domain delete |
Delete a custom domain of SignalR Service. |
Core | GA |
az signalr custom-domain list |
List custom domains of SignalR Service. |
Core | GA |
az signalr custom-domain show |
Show the detail of a custom domain of SignalR Service. |
Core | GA |
az signalr custom-domain update |
Update a custom domain of SignalR Service. |
Core | GA |
az signalr delete |
Deletes a SignalR Service. |
Core | GA |
az signalr identity |
Manage managed identity settings. |
Core | GA |
az signalr identity assign |
Assign managed identity for SignalR Service. |
Core | GA |
az signalr identity remove |
Remove managed identity for SignalR Service. |
Core | GA |
az signalr identity show |
Show managed identity for SignalR Service. |
Core | GA |
az signalr key |
Manage keys for Azure SignalR Service. |
Core | GA |
az signalr key list |
List the access keys for a SignalR Service. |
Core | GA |
az signalr key renew |
Regenerate the access key for a SignalR Service. |
Core | GA |
az signalr list |
Lists all the SignalR Service under the current subscription. |
Core | GA |
az signalr network-rule |
Manage network rules. |
Core | GA |
az signalr network-rule list |
Get the Network access control of SignalR Service. |
Core | GA |
az signalr network-rule update |
Update the Network access control of SignalR Service. |
Core | GA |
az signalr replica |
Manage replica settings. |
Core | GA |
az signalr replica create |
Create a replica of SignalR Service. |
Core | GA |
az signalr replica delete |
Delete a replica of SignalR Service. |
Core | GA |
az signalr replica list |
List replicas of SignalR Service. |
Core | GA |
az signalr replica show |
Show the details of a replica. |
Core | GA |
az signalr restart |
Restart an existing SignalR Service. |
Core | GA |
az signalr show |
Get the details of a SignalR Service. |
Core | GA |
az signalr update |
Update an existing SignalR Service. |
Core | GA |
az signalr upstream |
Manage upstream settings. |
Core | GA |
az signalr upstream clear |
Clear upstream settings of an existing SignalR Service. |
Core | GA |
az signalr upstream list |
List upstream settings of an existing SignalR Service. |
Core | GA |
az signalr upstream update |
Update order sensitive upstream settings for an existing SignalR Service. |
Core | GA |
az signalr create
Creates a SignalR Service.
az signalr create --name
--resource-group
--sku
[--allowed-origins]
[--default-action {Allow, Deny}]
[--enable-message-logs {false, true}]
[--location]
[--service-mode {Classic, Default, Serverless}]
[--tags]
[--unit-count]
Examples
Create a SignalR Service with the Premium SKU and default mode
az signalr create -n MySignalR -g MyResourceGroup --sku Premium_P1
Create a SignalR Service with the Premium SKU and serverless mode and enable messaging logs.
az signalr create -n MySignalR -g MyResourceGroup --sku Premium_P1 --unit-count 1 --service-mode Serverless --enable-message-logs True
Required Parameters
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The sku name of the signalr service. Allowed values: Premium_P1, Standard_S1, Free_F1.
Optional Parameters
Space separated origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). To allow all, use "*".
Default action to apply when no rule matches.
The switch for messaging logs which signalr service will generate or not.
Location. Values from: az account list-locations
. You can configure the default location using az configure --defaults location=<location>
.
The service mode which signalr service will be working on.
Space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.
The number of signalr service unit count.
Global Parameters
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.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az signalr delete
Deletes a SignalR Service.
az signalr delete [--ids]
[--name]
[--resource-group]
[--subscription]
Examples
Delete a SignalR Service.
az signalr delete -n MySignalR -g MyResourceGroup
Optional Parameters
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Global Parameters
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.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az signalr list
Lists all the SignalR Service under the current subscription.
az signalr list [--resource-group]
Examples
List SignalR Service and show the results in a table.
az signalr list -o table
List SignalR Service in a resource group and show the results in a table.
az signalr list -g MySignalR -o table
Optional Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
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.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az signalr restart
Restart an existing SignalR Service.
az signalr restart [--ids]
[--name]
[--resource-group]
[--subscription]
Examples
Restart a SignalR Service instance.
az signalr restart -n MySignalR -g MyResourceGroup
Optional Parameters
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Global Parameters
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.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az signalr show
Get the details of a SignalR Service.
az signalr show [--ids]
[--name]
[--resource-group]
[--subscription]
Examples
Get the sku for a SignalR Service.
az signalr show -n MySignalR -g MyResourceGroup --query sku
Optional Parameters
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Name of signalr service.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Global Parameters
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.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az signalr update
Update an existing SignalR Service.
az signalr update [--add]
[--allowed-origins]
[--default-action {Allow, Deny}]
[--enable-message-logs {false, true}]
[--force-string]
[--ids]
[--name]
[--remove]
[--resource-group]
[--service-mode {Classic, Default, Serverless}]
[--set]
[--sku]
[--subscription]
[--tags]
[--unit-count]
Examples
Update unit count to scale the service.
az signalr update -n MySignalR -g MyResourceGroup --sku Standard_S1 --unit-count 50
Update service mode.
az signalr update -n MySignalR -g MyResourceGroup --service-mode Serverless
Update for enabling messaging logs in the service.
az signalr update -n MySignalR -g MyResourceGroup --enable-message-logs True
Optional Parameters
Add an object to a list of objects by specifying a path and key value pairs. Example: --add property.listProperty <key=value, string or JSON string>
.
Space separated origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). To allow all, use "*".
Default action to apply when no rule matches.
The switch for messaging logs which signalr service will generate or not.
When using 'set' or 'add', preserve string literals instead of attempting to convert to JSON.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Name of signalr service.
Remove a property or an element from a list. Example: --remove property.list <indexToRemove>
OR --remove propertyToRemove
.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The service mode which signalr service will be working on.
Update an object by specifying a property path and value to set. Example: --set property1.property2=<value>
.
The sku name of the signalr service. E.g. Standard_S1.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.
The number of signalr service unit count.
Global Parameters
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.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.