Google//Cloud Console

Google's web dashboard for managing cloud infrastructure — servers, databases, networking, storage, APIs, billing. The control plane for everything running on Google Cloud Platform (GCP).


Google's web dashboard for managing cloud infrastructure — servers, databases, networking, storage, APIs, billing. The control plane for everything running on Google Cloud Platform (GCP).

Virtual machines (Compute Engine), containers (GKE), serverless (Cloud Run, Cloud Functions)

Managed databases (Cloud SQL, Firestore, BigQuery), object storage (Cloud Storage)

AI/ML services: Vertex AI, TPU clusters, pre-trained APIs (Vision, Speech, Translation)

Networking: load balancers, CDN, VPCs, Cloud DNS

Projects: where you register your app with Google. "I'm Rankmail, I want to read email, here's my callback URL, these are my credentials." Google gives you a Client ID (public, goes in frontend) and a Client Secret (private, goes in backend). Without them, Google rejects any OAuth request. The project is the permission — the SDK knows how to talk to Google, the project is what makes Google listen.

API enablement: each Google API (Gmail, Drive, Calendar) must be enabled per project. You flip a switch, set scopes (e.g. gmail.readonly), and configure consent screens for external users.

Not the same as Google Admin Console (that's for Workspace users) or Google Search Console (that's for SEO)