Apigee hybrid requires certain Google
Cloud service APIs. In this step, you will enable the APIs that are required for your installation platform.
Use gcloud to enable the required APIs as explained in the following steps. If you prefer,
you can use the Google Cloud console to enable the APIs.
Complete the Prerequisites,
and be sure you have the gcloud CLI installed in your local shell:
gcloud --help
Create a PROJECT_ID environment variable where the
value is the ID of the Google Cloud project you plan to use for Apigee hybrid.
A project ID is a unique string used to differentiate your project from all others in Google Cloud.
If needed, see Locate the project ID:
export PROJECT_ID=YOUR_PROJECT_ID
Select the tab for your intended installation to see the command to enable the APIs:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[],[],null,["# Step 1: Enable APIs\n\nApigee hybrid requires certain [Google\nCloud service APIs](/service-usage/docs/enable-disable). In this step, you will enable the APIs that are required for your installation platform.\n\n\nUse `gcloud` to enable the required APIs as explained in the following steps. If you prefer,\nyou can use the [Google Cloud console](/endpoints/docs/openapi/enable-api) to enable the APIs.\n| **Note:**The Apigee hybrid installation steps are written for the Linux/UNIX/Mac command shell. If you are using Windows, substitute the equivalent Windows command line syntax.\n\n1. Complete the [Prerequisites](/apigee/docs/hybrid/v1.15/prerequisites), and be sure you have the [gcloud CLI](/sdk/docs/install) installed in your local shell: \n\n gcloud --help\n\n2. Create a `PROJECT_ID` environment variable where the value is the ID of the Google Cloud project you plan to use for Apigee hybrid. A project ID is a unique string used to differentiate your project from all others in Google Cloud. If needed, see [Locate the project ID](https://support.google.com/googleapi/answer/7014113): \n\n ```\n export PROJECT_ID=YOUR_PROJECT_ID\n ```\n | **Note:** Be sure the project ID is correct. This variable is used throughout the hybrid installation instructions. Do not include a period after the project ID.\n3. Select the tab for your intended installation to see the command to enable the APIs:\n\n ### GKE on Google Cloud\n\n\n If you will be running your clusters on Google Kubernetes Engine (GKE), run this\n command to enable the required APIs:\n\n #### *Click to see details on the APIs*\n\n ### Google Cloud console\n\n\n Enable the Apigee, Apigee Connect, Cloud Pub/Sub, Cloud Resource Manager, Kubernetes Engine, Compute Engine APIs.\n\n\n [Enable the APIs](https://console.cloud.google.com/flows/enableapi?apiid=apigee.googleapis.com,apigeeconnect.googleapis.com,cloudresourcemanager.googleapis.com,compute.googleapis.com,container.googleapis.com,pubsub.googleapis.com&redirect=https://console.cloud.google.com)\n\n ### `gcloud`\n\n ```\n gcloud services enable \\\n apigee.googleapis.com \\\n apigeeconnect.googleapis.com \\\n cloudresourcemanager.googleapis.com \\\n compute.googleapis.com \\\n container.googleapis.com \\\n pubsub.googleapis.com --project $PROJECT_ID\n ```\n\n ### Other Platforms\n\n If you will be running your clusters on one of the following platforms\n run the command below to enable the required APIs:\n - AKS\n - EKS\n - GKE on AWS\n - OpenShift\n - Software-only Google Distributed Cloud on VMware or bare metal\n\n #### *Click to see details on the APIs*\n\n ### Google Cloud console\n\n\n Enable the Apigee, Apigee Connect, Cloud Monitoring, Cloud Pub/Sub, Cloud Resource Manager APIs.\n\n\n [Enable the APIs](https://console.cloud.google.com/flows/enableapi?apiid=apigee.googleapis.com,apigeeconnect.googleapis.com,cloudresourcemanager.googleapis.com,monitoring.googleapis.com,pubsub.googleapis.com&redirect=https://console.cloud.google.com)\n\n ### `gcloud`\n\n ```\n gcloud services enable \\\n apigee.googleapis.com \\\n apigeeconnect.googleapis.com \\\n cloudresourcemanager.googleapis.com \\\n monitoring.googleapis.com \\\n pubsub.googleapis.com --project $PROJECT_ID\n ```\n4. (Optional) To verify that the required APIs are enabled, execute this command. If the required APIs are in the returned list, then they are enabled. \n\n ```\n gcloud services list --project $PROJECT_ID\n ```\n\nNext step\n---------\n\n\nGo to Step 2: [Create an organization](/apigee/docs/hybrid/v1.15/precog-provision)."]]