Step 3: Enable APIs Stay organized with collections Save and categorize content based on your preferences.
To use Apigee hybrid, you must enable the following APIs for the project in the Google Cloud console:
- Apigee API: Provides communication between your project and other hybrid services and Google Cloud APIs.
- Apigee Connect API: Provides communication between the Apigee management plane and the MART service in the runtime plane.
- Cloud Pub/Sub API: Required for quota to operate.
- Cloud Resource Manager API: Used by hybrid to validate service accounts.
- Compute Engine API: Used for cluster management (GKE-based clusters only).
- Kubernetes Engine API: Enable if you plan to use Google Kubernetes Engine (GKE), or GKE on-prem (Anthos) on-prem for your hybrid runtime installation.
Enable the required APIs for your Google Cloud project:
You can use the CLI or the Google Cloud console UI to enable the APIs.
Google Cloud UI
To enable the APIs using the UI, perform the following steps:
- Open theGoogle Cloud console and log in with the account you created inStep 1: Create a Google Cloud account.
- Select the project that you created inStep 2: Create a Google Cloud project.
- Enable theApigee API as follows:
- From theNavigation menu, selectAPIs & Services > Library.


- In theAPI Library view search for "Apigee".

Google Cloud displays a list of APIs matching "Apigee"
- Locate theApigee API service and click it.
- In the Apigee API view clickEnable.
Google Cloud enables theApigee API for your Google Cloud project.

- From theNavigation menu, selectAPIs & Services > Library.
- Enable theApigee Connect API:
- In theAPI Library view, search for "Apigee Connect".
- Locate theApigee Connect API and enable it.
Google Cloud enables theApigee Connect API for your Google Cloud project.
- Enable theCloud Pub/Sub API:
- In theAPI Library view, search for "Cloud Pub/Sub API".
- Locate theCloud Pub/Sub API and enable it.
Google Cloud enables theCloud Pub/Sub API for your Google Cloud project.
- Enable theCloud Resource Manager API:
- In theAPI Library view, search for "Cloud Resource Manager".
- Locate theCloud Resource Manager and enable it.
Google Cloud enables theCloud Resource Manager API for your Google Cloud project.
- (GKE-based clusters only) Enable theCompute Engine API:
- In theAPI Library view, search for "Compute Engine".
- Locate theCompute Engine API and enable it.
Google Cloud enables theCompute Engine API for your Google Cloud project.
- (GKE-based clusters only) Enable theGoogle Kubernetes Engine API:
- In theAPI Library view, search for "Google Kubernetes Engine".
- Locate theGoogle Kubernetes API and enable it.
Google Cloud enables theGoogle Kubernetes API for your Google Cloud project.
- To confirm that you have enabled the APIs, selectAPIs & Services > Dashboard.
The APIs you just added are displayed in the list of enabled APIs:
- Apigee API
- Apigee Connect API
- Cloud Pub/Sub API
- Cloud Resource Manager API
- Compute Engine API
- Kubernetes Engine API
gcloud CLI
To enable the APIs using the CLI, perform the following steps:
- Open a terminal window on the device you are using to manage Apigee.
- Be sure you have
gcloudinstalled in your local shell by running the following command. Thegcloudtool provides the primary command-line interface for Cloud.gcloud -hIf you do not have
gcloudinstalled,install the Cloud SDK. - Make sure you have the
PROJECT_IDvariable defined with the ID of the project you created inStep 2: Create a Google Cloud project:echo $PROJECT_ID
If it is not, define the
PROJECT_IDenvironment variable with the following command: Note: Do not include the period after the project ID.export PROJECT_ID=your_project_id

- Select the tab for your intended installation to see the command to enable the APIs:
GKE
If you will be running your clusters in Google Cloud (GKE), enable the APIs with the following command:
gcloud services enable \ apigee.googleapis.com \ apigeeconnect.googleapis.com \ pubsub.googleapis.com \ cloudresourcemanager.googleapis.com \ compute.googleapis.com \ container.googleapis.com --project $PROJECT_ID
GKE on-prem
If you will be running your clusters in GKE on-prem (Anthos), enable the APIs with the following command:
gcloud services enable \ apigee.googleapis.com \ apigeeconnect.googleapis.com \ cloudresourcemanager.googleapis.com \ pubsub.googleapis.com --project $PROJECT_ID
AKS
If you will be running your clusters in Azure Kubernetes Service (AKS), enable the APIs with the following command:
gcloud services enable \ apigee.googleapis.com \ apigeeconnect.googleapis.com \ pubsub.googleapis.com \ cloudresourcemanager.googleapis.com --project $PROJECT_ID
GKE on AWS
If you will be running your clusters in GKE on AWS, enable the APIs with the following command:
gcloud services enable \ apigee.googleapis.com \ apigeeconnect.googleapis.com \ pubsub.googleapis.com \ cloudresourcemanager.googleapis.com --project $PROJECT_ID
EKS
If you will be running your clusters in Amazon EKS, enable the APIs with the following command:
gcloud services enable \ apigee.googleapis.com \ apigeeconnect.googleapis.com \ pubsub.googleapis.com \ cloudresourcemanager.googleapis.com --project $PROJECT_ID
- Verify that all APIs are enabled using the following command:
gcloud services list
The following is returned:
NAMETITLEapigee.googleapis.comApigeeAPIapigeeconnect.googleapis.comApigeeConnectAPIbigquery.googleapis.comBigQueryAPIbigquery.googleapis.comBigQueryAPIbigquerystorage.googleapis.comBigQueryStorageAPIcloudapis.googleapis.comGoogleCloudAPIsclouddebugger.googleapis.comCloudDebuggerAPIcloudresourcemanager.googleapis.comCloudResourceManagerAPIcloudtrace.googleapis.comCloudTraceAPIcompute.googleapis.comComputeEngineAPIcontainer.googleapis.comKubernetesEngineAPIcontaineranalysis.googleapis.comContainerAnalysisAPIcontainerregistry.googleapis.comContainerRegistryAPIdatastore.googleapis.comCloudDatastoreAPIiam.googleapis.comIdentityandAccessManagement(IAM)APIiamcredentials.googleapis.comIAMServiceAccountCredentialsAPIlogging.googleapis.comCloudLoggingAPImonitoring.googleapis.comCloudMonitoringAPIoslogin.googleapis.comCloudOSLoginAPIpubsub.googleapis.comCloudPub/SubAPIservicemanagement.googleapis.comServiceManagementAPIserviceusage.googleapis.comServiceUsageAPIsql-component.googleapis.comCloudSQLstorage-api.googleapis.comGoogleCloudStorageJSONAPIstorage-component.googleapis.comCloudStorage
For more information about enabling APIs in the Google Cloud console, seeEnabling anAPI in your Google Cloud project in the Cloud documentation.
123(NEXT) Step 4: Create an organization5Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-02-19 UTC.