az signalr network-rule

Manage network rules.

Commands

Name Description Type Status
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 network-rule list

Get the Network access control of SignalR Service.

az signalr network-rule list --name
                             --resource-group

Required Parameters

--name -n

Name of signalr service.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

az signalr network-rule update

Update the Network access control of SignalR Service.

az signalr network-rule update [--allow]
                               [--connection-name]
                               [--deny]
                               [--ids]
                               [--name]
                               [--public-network {false, true}]
                               [--resource-group]
                               [--subscription]

Examples

Set allowing RESTAPI only for public network.

az signalr network-rule update --public-network -n MySignalR -g MyResourceGroup --allow RESTAPI

Set allowing client connection and server connection for a private endpoint connection

az signalr network-rule update --connection-name MyPrivateEndpointConnection -n MySignalR -g MyResourceGroup --allow ClientConnection ServerConnection

Set denying client connection for both public network and private endpoint connections

az signalr network-rule update --public-network --connection-name MyPrivateEndpointConnection1 MyPrivateEndpointConnection2 -n MySignalR -g MyResourceGroup --deny ClientConnection

Optional Parameters

--allow

The allowed virtual network rule. Space-separeted list of scope to assign. Allowed values: ClientConnection, ServerConnection, RESTAPI.

default value: []
--connection-name

Space-separeted list of private endpoint connection name.

default value: []
--deny

The denied virtual network rule. Space-separeted list of scope to assign. Allowed values: ClientConnection, ServerConnection, RESTAPI.

default value: []
--ids

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 -n

Name of signalr service.

--public-network

Set rules for public network.

accepted values: false, true
--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.