Skip to content

Latest commit

 

History

History
136 lines (101 loc) · 3.64 KB

Remove-AzApplicationGatewaySslPolicy.md

File metadata and controls

136 lines (101 loc) · 3.64 KB
external help file Module Name ms.assetid online version schema
Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
Az.Network
A308E4DD-49FA-4905-94A7-CEA3AAEC3959
2.0.0

Remove-AzApplicationGatewaySslPolicy

SYNOPSIS

Removes an SSL policy from an Azure application gateway.

SYNTAX

Remove-AzApplicationGatewaySslPolicy -ApplicationGateway <PSApplicationGateway> [-Force]
 [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

The Remove-AzApplicationGatewaySslPolicy cmdlet removes SSL policy from an Azure application gateway.

EXAMPLES

Example 1: Remove an SSL policy from an application gateway

$AppGW = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$AppGW = Remove-AzApplicationGatewaySslPolicy -ApplicationGateway $AppGW
Set-AzApplicationGateway -ApplicationGateway $AppGW

The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01 and stores it in the $AppGW variable. The second command removes the SSL policy from the application gateway. The last command updates the application gateway.

PARAMETERS

-ApplicationGateway

Specifies the application gateway from which this cmdlet removes SSL policy.

Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with azure.

Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Force

Do not ask for confirmation.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGateway

OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSApplicationGateway

NOTES

Keywords: azure, azurerm, arm, resource, management, manager, network, networking

RELATED LINKS

Set-AzApplicationGatewaySslPolicy

New-AzApplicationGatewaySslPolicy

Get-AzApplicationGatewaySslPolicy