Remove-AzApplicationGatewayPrivateLinkConfiguration
Hiermee verwijdert u een privateLink-configuratie uit een toepassingsgateway.
Syntaxis
Remove-AzApplicationGatewayPrivateLinkConfiguration
-Name <String>
-ApplicationGateway <PSApplicationGateway>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
De cmdlet Remove-AzApplicationGatewayPrivateLinkConfiguration verwijdert een privateLink-configuratie uit een Azure-toepassingsgateway.
Voorbeelden
Voorbeeld 1: Een PrivateLink-configuratie van een toepassingsgateway verwijderen
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
Remove-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw -Name "privateLinkConfig01"
Set-AzApplicationGateway -ApplicationGateway $AppGW
De eerste opdracht haalt een toepassingsgateway op en slaat deze op in de $AppGw variabele. Met de tweede opdracht wordt de privateLink-configuratie met de naam privateLinkConfig01 verwijderd uit de toepassingsgateway die is opgeslagen in $AppGw. Met de laatste opdracht wordt de toepassingsgateway bijgewerkt.
Parameters
-ApplicationGateway
De applicationGateway
Type: | PSApplicationGateway |
Position: | Named |
Default value: | None |
Vereist: | True |
Pijplijninvoer accepteren: | True |
Jokertekens accepteren: | False |
-DefaultProfile
De referenties, accounts, tenants en abonnementen die worden gebruikt voor communicatie met Azure.
Type: | IAzureContextContainer |
Aliassen: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Vereist: | False |
Pijplijninvoer accepteren: | False |
Jokertekens accepteren: | False |
-Name
De naam van de privateLink-configuratie van de toepassingsgateway
Type: | String |
Position: | Named |
Default value: | None |
Vereist: | True |
Pijplijninvoer accepteren: | False |
Jokertekens accepteren: | False |