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
4 changes: 4 additions & 0 deletions Commands/network/application-gateway/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ Create the specified application gateway.
### [2025-01-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-01-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-01-01 -->

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 -->
11 changes: 11 additions & 0 deletions Commands/network/application-gateway/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,14 @@ Delete an application gateway.
```bash
network application-gateway delete -g MyResourceGroup -n MyAppGateway
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 -->

#### examples

- Delete an application gateway.
```bash
network application-gateway delete -g MyResourceGroup -n MyAppGateway
```
11 changes: 11 additions & 0 deletions Commands/network/application-gateway/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,14 @@ Get the details of an application gateway.
```bash
network application-gateway show -g MyResourceGroup -n MyAppGateway
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 -->

#### examples

- Get the details of an application gateway.
```bash
network application-gateway show -g MyResourceGroup -n MyAppGateway
```
16 changes: 16 additions & 0 deletions Commands/network/application-gateway/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,19 @@ Update an application gateway.
```bash
network application-gateway update -n MyApplicationGateway --ssl-profiles [0].client-auth-configuration.verify-client-revocation=OCSP
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 -->

#### examples

- Update an application gateway.
```bash
network application-gateway update --name MyApplicationGateway --resource-group MyResourceGroup --set sku.tier=WAF_v2
```

- Enable client cert revocation via OCSP.
```bash
network application-gateway update -n MyApplicationGateway --ssl-profiles [0].client-auth-configuration.verify-client-revocation=OCSP
```
17 changes: 17 additions & 0 deletions Commands/network/application-gateway/ssl-cert/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,20 @@ Upload an SSL certificate.
keyvault certificate create --vault-name MyKeyVault --name MyCertificate --policy "$(az keyvault certificate get-default-policy)"
network application-gateway ssl-cert create --resource-group MyResourceGroup --gateway-name MyAppGateway -n MySSLCert --key-vault-secret-id MyCertificateSecretID
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 properties.sslCertificates[] -->

#### examples

- Upload an SSL certificate via --cert-file and --cert-password.
```bash
network application-gateway ssl-cert create -g MyResourceGroup --gateway-name MyAppGateway -n MySSLCert --cert-file FilePath --cert-password Abc123
```

- Upload an SSL certificate via --key-vault-secret-id of a KeyVault Certificate.
```bash
keyvault certificate create --vault-name MyKeyVault --name MyCertificate --policy "$(az keyvault certificate get-default-policy)"
network application-gateway ssl-cert create --resource-group MyResourceGroup --gateway-name MyAppGateway -n MySSLCert --key-vault-secret-id MyCertificateSecretID
```
11 changes: 11 additions & 0 deletions Commands/network/application-gateway/ssl-cert/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ Delete an SSL certificate.
```bash
network application-gateway ssl-cert delete -g MyResourceGroup --gateway-name MyAppGateway -n MySslCert
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 properties.sslCertificates[] -->

#### examples

- Delete an SSL certificate.
```bash
network application-gateway ssl-cert delete -g MyResourceGroup --gateway-name MyAppGateway -n MySslCert
```
11 changes: 11 additions & 0 deletions Commands/network/application-gateway/ssl-cert/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ List SSL certificates.
```bash
network application-gateway ssl-cert list -g MyResourceGroup --gateway-name MyAppGateway
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 properties.sslCertificates -->

#### examples

- List SSL certificates.
```bash
network application-gateway ssl-cert list -g MyResourceGroup --gateway-name MyAppGateway
```
11 changes: 11 additions & 0 deletions Commands/network/application-gateway/ssl-cert/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ Get the details of an SSL certificate.
```bash
network application-gateway ssl-cert show -g MyResourceGroup --gateway-name MyAppGateway -n MySslCert
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 properties.sslCertificates[] -->

#### examples

- Get the details of an SSL certificate.
```bash
network application-gateway ssl-cert show -g MyResourceGroup --gateway-name MyAppGateway -n MySslCert
```
11 changes: 11 additions & 0 deletions Commands/network/application-gateway/ssl-cert/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ Update an SSL certificate.
```bash
network application-gateway ssl-cert update -g MyResourceGroup --gateway-name MyAppGateway -n MySslCert --cert-file FilePath --cert-password Abc123Abc123
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL2FwcGxpY2F0aW9uZ2F0ZXdheXMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/applicationgateways/{} 2025-05-01 properties.sslCertificates[] -->

#### examples

- Change a gateway SSL certificate and password.
```bash
network application-gateway ssl-cert update -g MyResourceGroup --gateway-name MyAppGateway -n MySslCert --cert-file FilePath --cert-password Abc123Abc123
```

Large diffs are not rendered by default.

Loading