使用 Azure Batch 帳戶管理私人端點連線
您可以查詢和管理 Batch 帳戶的所有現有私人端點連線。 支援的管理作業包括:
- 核准擱置中的連線。
- 拒絕連線 (處於擱置中或已核准狀態)。
- 移除連線,這會從 Batch 帳戶移除連線,並將相關聯的私人端點資源標示為已中斷連線狀態。
Azure 入口網站
在 Azure 入口網站中前往您的 Batch 帳戶。
在 [設定] 中,選取 [網路],然後前往 [私人存取] 索引標籤。
選取私人連線,然後執行核准/拒絕/移除作業。
Az PowerShell 模組
使用 Az PowerShell 模組的範例 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
使用 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