共用方式為


使用 Azure Batch 帳戶管理私人端點連線

您可以查詢和管理 Batch 帳戶的所有現有私人端點連線。 支援的管理作業包括:

  • 核准擱置中的連線。
  • 拒絕連線 (處於擱置中或已核准狀態)。
  • 移除連線,這會從 Batch 帳戶移除連線,並將相關聯的私人端點資源標示為已中斷連線狀態。

Azure 入口網站

  1. 在 Azure 入口網站中前往您的 Batch 帳戶。

  2. 在 [設定] 中,選取 [網路],然後前往 [私人存取] 索引標籤。

  3. 選取私人連線,然後執行核准/拒絕/移除作業。

    Screenshot of managing private endpoint connections.

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