Remove-AzApplicationGatewayPrivateLinkConfiguration
Entfernt eine privateLink-Konfiguration aus einem Anwendungsgateway.
Syntax
Remove-AzApplicationGatewayPrivateLinkConfiguration
-Name <String>
-ApplicationGateway <PSApplicationGateway>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Beschreibung
Das Cmdlet Remove-AzApplicationGatewayPrivateLinkConfiguration entfernt eine privateLink-Konfiguration aus einem Azure-Anwendungsgateway.
Beispiele
Beispiel 1: Entfernen einer PrivateLink-Konfiguration für ein Anwendungsgateway
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
Remove-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw -Name "privateLinkConfig01"
Set-AzApplicationGateway -ApplicationGateway $AppGW
Der erste Befehl ruft ein Anwendungsgateway ab und speichert es in der variablen $AppGw. Mit dem zweiten Befehl wird die privateLink-Konfiguration mit dem Namen "privateLinkConfig01" aus dem anwendungsgateway entfernt, das in $AppGw gespeichert ist. Der letzte Befehl aktualisiert das Anwendungsgateway.
Parameter
-ApplicationGateway
ApplicationGateway
Typ: | PSApplicationGateway |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | True |
Platzhalterzeichen akzeptieren: | False |
-DefaultProfile
Anmeldeinformationen, Konto, Mandant und Abonnement für die Kommunikation mit Azure
Typ: | IAzureContextContainer |
Aliase: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-Name
Der Name der PrivateLink-Konfiguration des Anwendungsgateways
Typ: | String |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |