Mengelola akses ke template runtime
Halaman ini menjelaskan cara memberikan dan mencabut akses ke template runtime di Colab Enterprise.
Sebelum memulai
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Vertex AI, Dataform, and Compute Engine APIs.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Vertex AI, Dataform, and Compute Engine APIs.
Peran yang diperlukan
Untuk memastikan bahwa akun pengguna Anda memiliki izin yang diperlukan untuk mengelola akses ke template runtime, minta administrator untuk memberi akun pengguna Anda peran IAM Colab Enterprise (roles/aiplatform.colabEnterpriseAdmin
) di project itu.
Untuk mengetahui informasi selengkapnya tentang cara memberikan peran, lihat Mengelola akses ke project, folder, dan organisasi.
Administrator Anda mungkin juga dapat memberikan izin yang diperlukan kepada akun pengguna Anda melalui peran khusus atau peran bawaan lainnya.
Memberikan akses ke template runtime
Untuk memberikan akses akun utama ke template runtime, Anda dapat menggunakan konsol Google Cloud atau Google Cloud CLI.
Konsol
-
Di konsol Google Cloud, buka halaman Runtime Templates Colab Enterprise.
-
Di menu Region, pilih region yang berisi template runtime Anda.
-
Di menu Runtime template, pilih template runtime. Jika tidak ada template runtime yang tercantum, buat template runtime terlebih dahulu.
-
Klik Izin.
-
Di jendela Permissions, klik Add principal.
-
Di dialog Berikan akses, di kolom New principals, masukkan satu atau daftar akun utama yang dipisahkan koma.
-
Di menu Select a role, selesaikan dialog untuk menetapkan peran.
-
Opsional: Klik
Tambahkan peran lain, lalu ulangi langkah terakhir. -
Klik Simpan.
gcloud
Sebelum menggunakan salah satu data perintah di bawah, lakukan penggantian berikut:
RUNTIME_TEMPLATE_ID
: ID template runtime Anda.PRINCIPAL
: akun utama tempat binding akan ditambahkan.ROLE
: nama peran yang akan ditetapkan ke akun utama.PROJECT_ID
: project ID Anda.REGION
: region tempat template runtime Anda berada.
Jalankan perintah berikut:
Linux, macOS, atau Cloud Shell
gcloud colab runtime-templates add-iam-policy-binding RUNTIME_TEMPLATE_ID \ --member=PRINCIPAL \ --role=ROLE \ --project=PROJECT_ID \ --region=REGION
Windows (PowerShell)
gcloud colab runtime-templates add-iam-policy-binding RUNTIME_TEMPLATE_ID ` --member=PRINCIPAL ` --role=ROLE ` --project=PROJECT_ID ` --region=REGION
Windows (cmd.exe)
gcloud colab runtime-templates add-iam-policy-binding RUNTIME_TEMPLATE_ID ^ --member=PRINCIPAL ^ --role=ROLE ^ --project=PROJECT_ID ^ --region=REGION
Untuk mengetahui informasi selengkapnya tentang cara mengelola kebijakan IAM untuk template runtime dari command line, lihat dokumentasi gcloud CLI.
Akun utama Colab Enterprise adalah pengguna, grup, atau domain
Anda dapat memberikan akses ke pengguna, grup, atau domain. Lihat tabel berikut:
Akun utama | Contoh akun pengguna |
---|---|
Satu pengguna | user@gmail.com |
Grup Google | admins@googlegroups.com |
Domain Google Workspace | example.com |
Mencabut akses ke template runtime
Untuk mencabut akses ke template runtime, Anda dapat menggunakan konsol Google Cloud atau gcloud CLI.
Konsol
Di Konsol Google Cloud, buka halaman IAM.
Pilih project, folder, atau organisasi.
Cari baris yang berisi akun utama yang aksesnya ingin Anda cabut. Kemudian klik
Edit akun utama di baris tersebut.Klik tombol Hapus
untuk peran yang ingin Anda cabut, lalu klik Simpan.
gcloud
Sebelum menggunakan salah satu data perintah di bawah, lakukan penggantian berikut:
RUNTIME_TEMPLATE_ID
: ID template runtime Anda.PRINCIPAL
: akun utama yang aksesnya ingin Anda cabut.ROLE
: peran yang akan dihapus dari akun utama.PROJECT_ID
: project ID Anda.REGION
: region tempat template runtime Anda berada.
Jalankan perintah berikut:
Linux, macOS, atau Cloud Shell
gcloud colab runtime-templates remove-iam-policy-binding RUNTIME_TEMPLATE_ID \ --member=PRINCIPAL \ --role=ROLE \ --project=PROJECT_ID \ --region=REGION
Windows (PowerShell)
gcloud colab runtime-templates remove-iam-policy-binding RUNTIME_TEMPLATE_ID ` --member=PRINCIPAL ` --role=ROLE ` --project=PROJECT_ID ` --region=REGION
Windows (cmd.exe)
gcloud colab runtime-templates remove-iam-policy-binding RUNTIME_TEMPLATE_ID ^ --member=PRINCIPAL ^ --role=ROLE ^ --project=PROJECT_ID ^ --region=REGION
Untuk mengetahui informasi selengkapnya tentang cara mengelola kebijakan IAM untuk template runtime dari command line, lihat dokumentasi gcloud CLI.
Langkah selanjutnya
- Untuk mempelajari cara memberikan akses ke notebook, lihat Mengelola akses ke notebook.