Get-AzApplicationGatewayPrivateLinkConfiguration
Hiermee haalt u de private link-configuratie van een toepassingsgateway op.
Syntaxis
Get-AzApplicationGatewayPrivateLinkConfiguration
-ApplicationGateway <PSApplicationGateway>
[-Name <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
De cmdlet Get-AzApplicationGatewayPrivateLinkConfiguration haalt de private link-configuratie van een toepassingsgateway op.
Voorbeelden
Voorbeeld 1: Een opgegeven private link-configuratie ophalen
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$PrivateLinkConfiguration = Get-AzApplicationGatewayPrivateLinkConfiguration -Name "privateLinkConfig01" -ApplicationGateway $AppGw
Met de eerste opdracht wordt een toepassingsgateway met de naam ApplicationGateway01 opgehaald uit de resourcegroep met de naam ResourceGroup01 en wordt deze opgeslagen in de $AppGw variabele. Met de tweede opdracht wordt de private link-configuratie met de naam privateLinkConfig01 opgehaald uit $AppGw en opgeslagen in de $PrivateLinkConfiguration variabele.
Voorbeeld 2: Een lijst met private link-configuratie ophalen
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$PrivateLinkConfigurations = Get-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw
Met de eerste opdracht wordt een toepassingsgateway met de naam ApplicationGateway01 opgehaald uit de resourcegroep met de naam ResourceGroup01 en wordt deze opgeslagen in de $AppGw variabele. Met de tweede opdracht worden alle private link-configuraties opgehaald uit $AppGw en opgeslagen in de $PrivateLinkConfigurations variabele.
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: | False |
Pijplijninvoer accepteren: | False |
Jokertekens accepteren: | False |
Invoerwaarden
Uitvoerwaarden
PSApplicationGatewayPrivateLinkConfiguration