Remove-AzApplicationGatewayFrontendIPConfig

Entfernt eine Front-End-IP-Konfiguration aus einem Anwendungsgateway.

Syntax

Remove-AzApplicationGatewayFrontendIPConfig
      -Name <String>
      -ApplicationGateway <PSApplicationGateway>
      [-DefaultProfile <IAzureContextContainer>]
      [<CommonParameters>]

Beschreibung

Das Cmdlet Remove-AzApplicationGatewayFrontendIPConfig entfernt frontend IP aus einem Azure-Anwendungsgateway.

Beispiele

Beispiel 1: Entfernen einer Front-End-IP-Konfiguration

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
Remove-AzApplicationGatewayFrontendIPConfig -ApplicationGateway $AppGw -Name "FrontEndIP02"
Set-AzApplicationGateway -ApplicationGateway $AppGW

Der erste Befehl ruft ein Anwendungsgateway mit dem Namen ApplicationGateway01 ab und speichert es in der variablen $AppGw. Mit dem zweiten Befehl wird die Front-End-IP-Konfiguration "FrontEndIP02" aus dem anwendungsgateway entfernt, das in $AppGw gespeichert ist. Der letzte Befehl aktualisiert das Anwendungsgateway.

Parameter

-ApplicationGateway

Gibt ein Anwendungsgateway an, aus dem eine Front-End-IP-Konfiguration entfernt werden soll.

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

-DefaultProfile

Die Anmeldeinformationen, Konten, Mandanten und Abonnements, die für die Kommunikation mit Azure verwendet werden.

Type:IAzureContextContainer
Aliases:AzContext, AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

Gibt den Namen einer zu entfernenden Front-End-IP-Konfiguration an.

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

Eingaben

PSApplicationGateway

Ausgaben

PSApplicationGateway