다음을 통해 공유


Azure Batch 계정을 사용하여 프라이빗 엔드포인트 연결 관리

Batch 계정에 대한 모든 기존 프라이빗 엔드포인트 연결을 쿼리하고 관리할 수 있습니다. 지원되는 관리 작업은 다음과 같습니다.

  • 보류 중인 연결을 승인합니다.
  • 연결(보류 중 또는 승인된 상태)을 거부합니다.
  • 연결을 제거하면 Batch 계정에서 연결이 제거되고 연결된 프라이빗 엔드포인트 리소스가 연결 끊김 상태로 표시됩니다.

Azure Portal

  1. Azure Portal에서 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