Langkah-langkah selanjutnya akan muncul di konsol Google Cloud .
Pada daftar drop-down Pilih organisasi di bagian atas halaman, pilih resource organisasi tempat Anda ingin membuat project. Jika Anda adalah pengguna uji coba gratis, lewati
langkah ini karena daftar ini tidak muncul.
Klik Buat Project.
Di jendela Project Baru yang muncul, masukkan nama project dan pilih akun penagihan yang berlaku. Nama project hanya boleh berisi huruf, angka, tanda kutip tunggal, tanda hubung, spasi, atau tanda seru, serta harus memiliki 4 hingga 30 karakter.
Masukkan resource folder atau organisasi induk di kotak Location. Resource tersebut
akan menjadi induk hierarkis dari project baru. Jika opsi No organization tersedia,
Anda dapat memilihnya untuk membuat project baru sebagai tingkat teratas dari hierarki resource-nya sendiri.
Setelah selesai memasukkan detail project baru, klik Buat.
API
Anda dapat membuat project baru di resource organisasi dengan
membuatproject
dan menyetel kolom parent ke organizationId resource organisasi.
Cuplikan kode berikut menunjukkan cara membuat project dalam resource organisasi:
Dari pemilih project di bagian atas halaman, pilih resource organisasi Anda.
Tab Terbaru akan menampilkan project dan folder yang baru saja diakses.
Klik tab Semua untuk melihat semua project dan folder.
Opsi Tidak ada organisasi di drop-down Organisasi mencantumkan project berikut:
Project yang belum menjadi milik resource organisasi.
Project yang aksesnya dimiliki pengguna, tetapi berada di bawah resource organisasi yang aksesnya tidak dimiliki pengguna.
gcloud
Untuk melihat semua project langsung di bawah resource organisasi, jalankan
perintah berikut:
gcloudprojectslist--filter 'parent.id=[ORGANIZATION_ID] AND \parent.type=organization'
Perintah ini tidak menampilkan setiap project dalam hierarki Anda, hanya project yang berada langsung di bawah resource organisasi Anda. Untuk mencantumkan setiap
resource dalam hierarki Anda, lihat
Mencantumkan semua Resource dalam Hierarki Anda.
API
Gunakan metode
projects.list()
untuk mencantumkan semua project yang berada langsung di bawah resource organisasi, seperti
yang ditunjukkan dalam cuplikan kode berikut:
Metode ini tidak menampilkan setiap project dalam hierarki Anda, hanya project
yang berada langsung di bawah resource organisasi Anda. Untuk mencantumkan setiap resource
dalam hierarki Anda, lihat
Mencantumkan semua Resource dalam Hierarki Anda.
Menghapus project dalam resource organisasi
Anda dapat menghapus project dari resource organisasi.
Konsol
Untuk menghapus project menggunakan konsol Google Cloud :
Pilih resource organisasi Anda. Semua project di resource organisasi tercantum di halaman.
Dalam daftar project, pilih project yang ingin Anda hapus, lalu klik
Hapus Project.
Masukkan project ID, lalu klik Shut down.
Menghapus resource organisasi
Resource organisasi terikat ke akun Google Workspace (sebelumnya G Suite) Anda.
Jika Anda lebih memilih untuk tidak menggunakan resource organisasi, sebaiknya
pulihkan kebijakan izin Identity and Access Management (IAM) resource organisasi ke
status semula menggunakan langkah-langkah berikut:
Tambahkan domain Anda ke peran Project Creator dan Billing Account Creator.
Hapus semua entri lain dalam kebijakan izin resource organisasi.
Tindakan ini akan memungkinkan pengguna Anda terus membuat project dan akun penagihan, sekaligus memungkinkan Admin Super Google Workspace memulihkan administrasi pusat di lain waktu, jika diinginkan.
Jika Anda benar-benar ingin menghapus resource organisasi dan semua resource yang terkait dengannya,hapus akun Google Workspace Anda.
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Sulit dipahami","hardToUnderstand","thumb-down"],["Informasi atau kode contoh salah","incorrectInformationOrSampleCode","thumb-down"],["Informasi/contoh yang saya butuhkan tidak ada","missingTheInformationSamplesINeed","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 2025-08-18 UTC."],[],[],null,["# Viewing and managing organization resources\n\nThis page explains how to view and manage billing accounts and projects under an\norganization resource.\n\nViewing billing accounts under the organization resource\n--------------------------------------------------------\n\nYou can view the existing billing accounts under an organization resource using\nthe Google Cloud console. \n\n### Console\n\n1. Open the Google Cloud console:\n\n [Open the Billing page](https://console.cloud.google.com/billing)\n\n \u003cbr /\u003e\n\n2. Click on the **Organization** drop-down on top of the page, and select your\n organization resource.\n\nAll billing accounts for the organization resource are listed on the page.\n\nCreating a new project in the organization resource\n---------------------------------------------------\n\n### Console\n\nYou can create a project in the organization resource using the\nGoogle Cloud console after the organization resource is enabled for your\ndomain.\n\nTo create a new project in the organization resource:\n\nTo create a new project, do the following:\n\n1. Go to the **Manage resources** page in the Google Cloud console.\n\n [Go to Manage Resources](https://console.cloud.google.com/cloud-resource-manager?walkthrough_id=resource-manager--create-project&start_index=1#step_index=1)\n\n The remaining steps appear in the Google Cloud console.\n2. On the **Select organization** drop-down list at the top of the page, select the organization resource in which you want to create a project. If you are a free trial user, skip this step, as this list does not appear.\n3. Click **Create Project**.\n4. In the **New Project** window that appears, enter a project name and select a billing account as applicable. A project name can contain only letters, numbers, single quotes, hyphens, spaces, or exclamation points, and must be between 4 and 30 characters.\n5. Enter the parent organization or folder resource in the **Location** box. That resource will be the hierarchical parent of the new project. If **No organization** is an option, you can select it to create your new project as the top level of its own resource hierarchy.\n6. When you're finished entering new project details, click **Create**.\n\n### API\n\nYou can create a new project in the organization resource by\n[creating](/resource-manager/reference/rest/v3/projects/create) a `project`\nand setting its `parent` field to the `organizationId` of the organization resource.\n\nThe following code snippet demonstrates how to create a project in an\norganization resource: \n\n project = crm.projects().create(\n body={\n 'project_id': flags.projectId,\n 'name': 'My New Project',\n 'parent': {\n 'type': 'organization',\n 'id': flags.organizationId\n }\n }).execute()\n\nViewing all projects in an organization resource\n------------------------------------------------\n\n### Console\n\nTo view all projects under an organization resource using the Google Cloud console:\n\n1. Go to the Google Cloud console:\n\n [Go to Google Cloud console](https://console.cloud.google.com/)\n\n \u003cbr /\u003e\n\n2. From the project picker at the top of the page, select your organization\n resource.\n\n3. The **Recent** tab will show recently accessed projects and folders.\n Click the **All** tab to view all projects and folders.\n\n| **Note:** Up to 4000 resources can be displayed in the project picker. If you do not see a resource that should appear, go to the **Manage resources** page and filter the list using the name of that resource.\n\nThe **No organization** option in the **Organization** drop-down lists the\nfollowing projects:\n\n- Projects that do not belong to the organization resource yet.\n- Projects for which the user has access to, but are under an organization resource to which the user does not have access.\n\n### gcloud\n\nTo view all projects directly under the organization resource, run the\nfollowing command: \n\n gcloud projects list --filter 'parent.id=[ORGANIZATION_ID] AND \\\n parent.type=organization'\n\nThis command does not show every project in your hierarchy, only the\nprojects that are directly under your organization resource. To list every\nresource in your hierarchy, see\n[Listing all Resources in your Hierarchy](/resource-manager/docs/listing-all-resources).\n\n### API\n\nUse the\n[`projects.list()`](/resource-manager/reference/rest/v3/projects/list)\nmethod to list all the projects directly under the organization resource, as\nshown in the following code snippet: \n\n filter = 'parent.type:organization parent.id:%s' % flags.organizationId\n projects = crm.projects().list(filter=filter).execute()\n\nThis method does not show every project in your hierarchy, only the projects\nthat are directly under your organization resource. To list every resource\nin your hierarchy, see\n[Listing all Resources in your Hierarchy](/resource-manager/docs/listing-all-resources).\n\nDeleting projects in an organization resource\n---------------------------------------------\n\nYou can delete a project from an organization resource. \n\n### Console\n\nTo delete a project using the Google Cloud console:\n\n1. Go to the **Projects** page in the **IAM \\& Admin** section:\n\n [Open the Projects page](https://console.cloud.google.com/iam-admin/projects)\n2. Click on the **Organization** drop-down on top of the page.\n3. Select your organization resource. All projects in the organization resource are listed on the page.\n4. In the list of projects, select the project you wish to delete, and click **Delete Project**.\n5. Enter the project ID and click **Shut down**.\n\nDeleting an organization resource\n---------------------------------\n\nThe organization resource is bound to your Google Workspace (formerly G Suite)\naccount.\n\nIf you would simply prefer not to use the organization resource, we recommend\nrestoring the organization resource's Identity and Access Management (IAM) allow policy to\nthe original state using the following steps:\n\n1. Add your domain to the `Project Creator` and `Billing Account Creator` roles.\n2. Remove all other entries in the organization resource's allow policy.\n\nThis will allow your users to continue to create projects and billing accounts\nwhile allowing the Google Workspace Super Admin to recover central\nadministration later, if desired.\n\nIf in fact you wish to delete your organization resource and **all the resources\nassociated with it,**\n[delete](https://support.google.com/domains/answer/6313602?hl=en) your\nGoogle Workspace account."]]