This page shows you how to turn off Gemini Cloud Assist.
For information about changing the settings that control sharing Gemini Cloud Assist prompts and responses with Google, see Configure prompt and response sharing for Gemini Cloud Assist.
Turn off Gemini Cloud Assist
To turn off Gemini Cloud Assist, do the following:
Console
To limit access for specific users in your organization, remove Identity and Access Management permissions for Gemini Cloud Assist:
Go to the IAM & Admin page.
In the Principal column, find a principal for which you want to remove access to Gemini Cloud Assist, and then click
Edit principal in that row.In the Edit access pane, do the following:
Locate the Gemini for Google Cloud User role, and then click
Delete role.Locate the Gemini Cloud Assist User role, and then click
Delete role.Locate the Service Usage Consumer role, and then click
Delete role.
Click Save.
Turn off the Gemini Cloud Assist API (
geminicloudassist.googleapis.com
):Go to the Enabled APIs & services page.
To select the Google Cloud project where you want to disable the Gemini Cloud Assist API, do one of the following:
In the Select a recent project section, click a Google Cloud project.
Use the Select a resource dialog:
- Click Select project.
- In the Select a project dialog, click the name of the Google Cloud project for which you want to disable the API.
Click the Gemini Cloud Assist API entry. If you need help finding the API, use the Search field in the Google Cloud console toolbar.
Click stop Disable API.
Optional: If you are disabling all Gemini for Google Cloud products, then repeat the previous step to turn off the Gemini for Google Cloud API.
gcloud
-
In the Google Cloud console, activate Cloud Shell.
To limit access for specific users in your organization, remove Identity and Access Management permissions for Gemini Cloud Assist:
Remove the role
roles/cloudaicompanion.user
using the commandgcloud projects remove-iam-policy-binding
:gcloud projects remove-iam-policy-binding PROJECT_ID \ --member=PRINCIPAL --role=roles/cloudaicompanion.user
Replace the following:
PROJECT_ID
: the ID of your Google Cloud project—for example,1234567890
.PRINCIPAL
: the identifier for the principal—for example,user:cloudysanfrancisco@gmail.com
.
The output is a list of policy bindings.
Repeat the previous step for the following roles:
roles/geminicloudassist.user
roles/serviceusage.serviceUsageConsumer
Turn off the Gemini Cloud Assist API (
geminicloudassist.googleapis.com
) using the commandgcloud services disable
:gcloud services disable geminicloudassist.googleapis.com
If successful, the command produces output similar to the following:
Waiting for async operation operations/acf.e9d0943b-55d9-4ac0-8af4-745e1b8983f8 to complete... Operation finished successfully.
Optional: If you are disabling all Gemini for Google Cloud products, then repeat the previous step to turn off the
cloudaicompanion.googleapis.com
API.