Privé-eindpuntverbindingen met Azure Batch-accounts beheren
U kunt alle bestaande privé-eindpuntverbindingen voor uw Batch-account opvragen en beheren. Ondersteunde beheerbewerkingen zijn onder andere:
- Een verbinding in behandeling goedkeuren.
- Een verbinding weigeren (in behandeling of goedgekeurde status).
- Verwijder een verbinding, waardoor de verbinding uit het Batch-account wordt verwijderd en de bijbehorende privé-eindpuntresource wordt gemarkeerd als De status Verbroken.
Azure Portal
Ga naar uw Batch-account in Azure Portal.
Selecteer in Instellingende optie Netwerken en ga naar het tabblad Persoonlijke toegang.
Selecteer de privéverbinding en voer vervolgens de bewerking Goedkeuren/Afwijzen/Verwijderen uit.
Az-module PowerShell
Voorbeelden van az PowerShell-module Az.Network
:
$accountResourceId = "/subscriptions/<subscription>/resourceGroups/<rg>/providers/Microsoft.Batch/batchAccounts/<account>"
$pecResourceId = "$accountResourceId/privateEndpointConnections/<pe-connection-name>"
# List all private endpoint connections for Batch account
Get-AzPrivateEndpointConnection -PrivateLinkResourceId $accountResourceId
# Show the specified private endpoint connection
Get-AzPrivateEndpointConnection -ResourceId $pecResourceId
# Approve connection
Approve-AzPrivateEndpointConnection -Description "Approved!" -ResourceId $pecResourceId
# Reject connection
Deny-AzPrivateEndpointConnection -Description "Rejected!" -ResourceId $pecResourceId
# Remove connection
Remove-AzPrivateEndpointConnection -ResourceId $pecResourceId
Azure CLI
Voorbeelden van het gebruik van Azure CLI (az network private-endpoint
):
accountResourceId="/subscriptions/<subscription>/resourceGroups/<rg>/providers/Microsoft.Batch/batchAccounts/<account>"
pecResourceId="$accountResourceId/privateEndpointConnections/<pe-connection-name>"
# List all private endpoint connections for Batch account
az network private-endpoint-connection list --id $accountResourceId
# Show the specified private endpoint connection
az network private-endpoint-connection show --id $pecResourceId
# Approve connection
az network private-endpoint-connection approve --description "Approved!" --id $pecResourceId
# Reject connection
az network private-endpoint-connection reject --description "Rejected!" --id $pecResourceId
# Remove connection
az network private-endpoint-connection delete --id $pecResourceId