This page explains how to view and manage projects and billing accounts within your Google Cloud organization.
View billing accounts
You can view the existing billing accounts under an organization using the Google Cloud console.
Console
-
Open the Google Cloud console:
-
In the organization picker at the top of the page, select your organization. All billing accounts associated with that organization are listed.
Create projects in your organization
Console
You can create a project in the organization using the Google Cloud console once the organization resource is provisioned for your domain.
To create a new project, do the following:
- Go to the Manage resourcespage in the Google Cloud console.
The remaining steps appear in the Google Cloud console.
- On the Select organizationdrop-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.
- Click Create Project.
- In the New Projectwindow 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.
- Enter the parent organization or folder resource in the Locationbox. That resource will be the hierarchical parent of the new project. If No organizationis an option, you can select it to create your new project as the top level of its own resource hierarchy.
- When you're finished entering new project details, click Create.
REST
To create a new project in your organization, use the projects.create()
method and set the project's parent
field to the organizationId
of the organization.
The following code snippet demonstrates how to create a project in an organization:
project = crm.projects().create(
body={
'project_id': flags.projectId,
'name': 'My New Project',
'parent': {
'type': 'organization',
'id': flags.organizationId
}
}).execute()
View all projects in an organization
Console
To view all projects under an organization, follow these steps:
-
Go to the Google Cloud console:
-
From the project picker at the top of the page, select your organization.
-
The Recenttab will show recently accessed projects and folders. Click the Alltab to view all projects and folders.
The No organizationoption in the organization picker displays two types of projects:
- Unassociated projects: Projects that have not yet been migrated into your organization.
- Inaccessible parent: Projects where you have access to the project itself, but don't have permissions to view the parent organization.
gcloud
To view all projects directly under the organization, run the following command:
gcloud
projects
list
--filter 'parent.id=[ORGANIZATION_ID] AND \
parent
.
type
=
organization
'
This command does not show every project in your hierarchy, only the projects that are directly under your organization resource. To list every resource in your hierarchy, see Listing all Resources in your Hierarchy .
REST
Use the projects.list()
method to list all the projects directly under the organization resource, as
shown in the following code snippet:
filter = 'parent.type:organization parent.id:%s' % flags.organizationId
projects = crm.projects().list(filter=filter).execute()
This method does not show every project in your hierarchy, only the projects that are directly under your organization resource. To list every resource in your hierarchy, see Listing all Resources in your Hierarchy .
Delete projects in an organization
To delete a project in an organization, follow these steps:
Console
To delete a project using the Google Cloud console:
- Go to the Projectspage in the IAM & Adminsection:
- Click the Organizationdrop-down on top of the page.
- Select your organization. All projects in the organization are listed on the page.
- In the list of projects, select the project you want to delete, and click Delete Project.
- Enter the project ID and click Shut down.

