az network application-gateway client-cert

Manage trusted client certificate of application gateway.

Commands

az network application-gateway client-cert add

Add trusted client certificate of the application gateway.

az network application-gateway client-cert list

List the existing trusted client certificate of the application gateway.

az network application-gateway client-cert remove

Remove an existing trusted client certificate of the application gateway.

az network application-gateway client-cert show

Show an existing trusted client certificate of the application gateway.

az network application-gateway client-cert update

Update trusted client certificate of the application gateway.

az network application-gateway client-cert add

Add trusted client certificate of the application gateway.

az network application-gateway client-cert add --data
                                               --gateway-name
                                               --name
                                               --resource-group

Examples

Add trusted client certificate for an existing application gateway.

az network application-gateway client-cert add --gateway-name MyAppGateway -g MyResourceGroup --name MyCert --data Cert.cer

Required Parameters

--data

Certificate public data.

--gateway-name

Name of the application gateway.

--name

Name of the trusted client certificate that is unique within an Application Gateway.

--resource-group -g

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

az network application-gateway client-cert list

List the existing trusted client certificate of the application gateway.

az network application-gateway client-cert list --gateway-name
                                                --resource-group

Examples

list all the trusted client certificate for an existing application gateway.

az network application-gateway client-cert list --gateway-name MyAppGateway -g MyResourceGroup

Required Parameters

--gateway-name

Name of the application gateway.

--resource-group -g

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

az network application-gateway client-cert remove

Remove an existing trusted client certificate of the application gateway.

az network application-gateway client-cert remove --gateway-name
                                                  --name
                                                  --resource-group

Examples

Remove a trusted client certificate for an existing application gateway.

az network application-gateway client-cert remove --gateway-name MyAppGateway -g MyResourceGroup --name MyCert

Required Parameters

--gateway-name

Name of the application gateway.

--name

Name of the trusted client certificate that is unique within an Application Gateway.

--resource-group -g

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

az network application-gateway client-cert show

Show an existing trusted client certificate of the application gateway.

az network application-gateway client-cert show --gateway-name
                                                --name
                                                --resource-group

Examples

Show a trusted client certificate for an existing application gateway.

az network application-gateway client-cert show --gateway-name MyAppGateway -g MyResourceGroup --name MyCert

Required Parameters

--gateway-name

Name of the application gateway.

--name

Name of the trusted client certificate that is unique within an Application Gateway.

--resource-group -g

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

az network application-gateway client-cert update

Update trusted client certificate of the application gateway.

az network application-gateway client-cert update --data
                                                  --gateway-name
                                                  --name
                                                  --resource-group

Examples

Update trusted client certificate for an existing application gateway.

az network application-gateway client-cert update --gateway-name MyAppGateway -g MyResourceGroup --name MyCert --data Cert.cer

Required Parameters

--data

Certificate public data.

--gateway-name

Name of the application gateway.

--name

Name of the trusted client certificate that is unique within an Application Gateway.

--resource-group -g

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