Bagikan melalui


Mengelola koneksi titik akhir privat dengan akun Azure Batch

Anda dapat meminta dan mengelola semua koneksi titik akhir privat yang ada untuk akun Batch Anda. Operasi manajemen yang didukung meliputi:

  • Setujui koneksi yang tertunda.
  • Tolak koneksi (baik dalam status tertunda atau disetujui).
  • Hapus koneksi, yang akan menghapus koneksi dari akun Batch dan menandai sumber daya titik akhir privat terkait sebagai status Terputus.

portal Microsoft Azure

  1. Buka akun Batch Anda di portal Azure.

  2. Di Pengaturan, pilih Jaringan dan buka tab Akses Privat.

  3. Pilih koneksi privat, lalu lakukan operasi Setujui/Tolak/Hapus.

    Cuplikan layar mengelola koneksi titik akhir privat.

Modul Az PowerShell

Contoh menggunakan modul 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

Contoh menggunakan 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