你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

使用 Azure Batch 帐户管理专用终结点连接

可以查询和管理 Batch 帐户的所有现有专用终结点连接。 支持的管理操作包括:

  • 批准挂起的连接。
  • 拒绝连接(处于挂起状态或已批准状态)。
  • 删除连接,这将从 Batch 帐户中删除连接,并将关联的专用终结点资源标记为“断开连接”状态。

Azure 门户

  1. 转到 Azure 门户中的 Batch 帐户。

  2. 在“设置”中,选择“网络”并转到“专用访问”选项卡。

  3. 选择专用连接,然后执行“批准”/“拒绝”/“删除”操作。

    管理专用终结点连接的屏幕截图。

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