Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
2 Grattan Court East, Dublin, D02 VX86, Ireland
Switch to light modeSwitch to dark mode
APIs / Cloud Infrastructure / Google / Compute Engine API
Compute Engine API logo

Google Compute Engine API

Browse all Google APIs
31
AI ReadinessNon-Ready (F)31/100
See full scorecard
Official vendor OpenAPI document · agent-readyCloud InfrastructureComputeoauth2802 EndpointsREST

For Agents

Provision VMs, disks, networks, firewalls, and load balancers on Google Cloud across more than 800 endpoints. Lets agents stand up and operate full Compute Engine infrastructure programmatically.

Use for: I need to create a Compute Engine VM, Stop a running VM instance, Resize a managed instance group to handle more load, Create a persistent disk and attach it to an instance

Not supported: Does not run managed Kubernetes, serverless containers, or managed databases - use for IaaS primitives (VMs, disks, networks, load balancers) on Google Cloud only.

The Compute Engine API creates and runs virtual machines on Google Cloud Platform and is one of the largest control surfaces in GCP, covering instances, instance groups, disks, images, networks, subnetworks, firewalls, load balancers, routers, VPNs, and global networking primitives. It is the foundation for IaaS workloads on Google Cloud and is the same API the gcloud CLI and Terraform provider use under the hood. Most platform teams interact with a focused subset around instances, disks, and networking rather than the full surface.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Compute Engine API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Compute Engine API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgoogleapis.com%2Fcompute" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgoogleapis.com%2Fcompute" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Compute Engine API.

Create, start, stop, reset, and delete VM instances per zone

Take incremental snapshots of persistent disks and restore disks from snapshots

Configure VPC networks, subnets, firewall rules, and routes

Resize and roll out updates to managed instance groups

Provision global HTTP load balancers with backend services and URL maps

Manage VM service accounts and access scopes

Use Cases

Patterns agents use Compute Engine API for, with concrete tasks.

★ Programmatic VM Provisioning

Create Compute Engine VMs from automation, CI/CD pipelines, or platform tooling without going through the Cloud Console. The instances.insert endpoint accepts the machine type, image, network, and metadata, and the API returns a long-running operation that resolves once the VM is RUNNING. This is the core building block for self-service developer environments and ephemeral build runners.

Create a VM named build-runner-42 in us-central1-a from image debian-12 with machine type n1-standard-2 and the default VPC

Managed Instance Group Autoscaling

Operate managed instance groups that scale a stateless web service in response to load. The API exposes resize, recreateInstances, and policy update endpoints so platform teams can codify scale events, rolling restarts, and version rollouts without manual clicks. Most teams keep the autoscaler in charge for normal load and use the API only for surgical interventions.

Resize managed instance group projects/acme/regions/us-central1/instanceGroupManagers/web from 4 to 12 and wait for the operation to complete

Network And Firewall Codification

Define VPCs, subnets, firewall rules, and routes through the API so the network topology is codified rather than clicked together. Compute Engine exposes networks, subnetworks, firewalls, and routers under one API, which keeps Terraform-style automation, drift detection, and disaster recovery rebuilds straightforward.

Create a firewall rule allow-https in the default network that permits TCP/443 from 0.0.0.0/0 to instances tagged web-server

Disk Snapshot Backup And Restore

Snapshot persistent disks on a schedule and restore from them to recover from accidental deletions or corruption. The disks.createSnapshot endpoint takes an incremental snapshot stored in Cloud Storage, and disks.insert with sourceSnapshot creates a new disk from any prior snapshot, giving operators a fast point-in-time recovery path.

Take a snapshot of disk projects/acme/zones/us-central1-a/disks/db-data named db-data-2026-06-10 and store it in the default project

Agent-Driven Infrastructure Operations

An AI agent can run controlled infrastructure operations - restart a stuck VM, expand a disk, or open a firewall port for a debug session - by calling Compute Engine through Jentic. Because Jentic returns the operation schema, the agent can target the exact endpoint it needs out of the 800+ surface area without parsing the discovery doc.

Use Jentic to call instances.reset on projects/acme/zones/us-central1-a/instances/api-server-3 and poll the returned operation until DONE

Key Endpoints

802 endpoints — the compute engine api creates and runs virtual machines on google cloud platform and is one of the largest control surfaces in gcp, covering instances, instance groups, disks, images, networks, subnetworks, firewalls, load balancers, routers, vpns, and global networking primitives.

METHOD

PATH

DESCRIPTION

POST

/projects/{project}/zones/{zone}/instances

Create a VM instance in a zone

GET

/projects/{project}/zones/{zone}/instances

List VM instances in a zone

POST

/projects/{project}/zones/{zone}/instances/{instance}/reset

Hard-reset a running VM instance

POST

/projects/{project}/zones/{zone}/disks/{disk}/createSnapshot

Snapshot a persistent disk for backup

POST

/projects/{project}/global/firewalls

Create a firewall rule on a VPC network

POST

/projects/{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/resize

Resize a managed instance group

POST

/projects/{project}/zones/{zone}/instances

Create a VM instance in a zone

GET

/projects/{project}/zones/{zone}/instances

List VM instances in a zone

POST

/projects/{project}/zones/{zone}/instances/{instance}/reset

Hard-reset a running VM instance

POST

/projects/{project}/zones/{zone}/disks/{disk}/createSnapshot

Snapshot a persistent disk for backup

POST

/projects/{project}/global/firewalls

Create a firewall rule on a VPC network

POST

/projects/{project}/regions/{region}/instanceGroupManagers/{instanceGroupManager}/resize

Resize a managed instance group

Jentic AI Readiness Score

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

C

Compute Engine API

- Non-Ready (F)
31/100
27
Foundational Compliance
56
Developer Experience & Jentic Compatibility
16
AI-Readiness & Agent Experience
43
Agent Usability
63
Security
64
AI Discoverability
Powered by JenticScoring Framework 1.0.0 | Scoring Engine 0.4.0
Show dimension breakdown
27

Foundational Compliance

Base layer of spec validity and structural soundness.

Grade: FSignals: 4
8%

Lint Results

Aggregated quality score from linter diagnostics, weighted by severity.

100%

Resolution Completeness

Percentage of `$ref` references that resolve successfully.

0%

Specification Validity

Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).

0%

Structural Integrity

Structural correctness score based on schema issues using logarithmic dampening.

56

Developer Experience & Jentic Compatibility

Clarity, completeness, and ingestion readiness for developers and tooling.

Grade: CSignals: 4
0%

Example Density

How richly the API is illustrated with examples.

100%

Example Validity

Percentage of examples that conform to their schemas.

25%

Response Coverage

Percentage of operations with complete response definitions (success, client error, server error).

100%

Tooling Readiness

Health of API ingestion, bundling, and resolution within Jentic pipelines.

16

AI-Readiness & Agent Experience

Semantic breadth, depth, and agent comprehension for AI systems.

Grade: FSignals: 4
64%

Description Coverage

Coverage of descriptions across API elements.

0%

Error Standardization

Coverage of RFC 9457 Problem Details for error responses.

0%

OperationId Quality

Coverage, uniqueness, and casing consistency of operationIds for AI inference.

0%

Summary Coverage

Coverage of summaries across operations/tags/info.

43

Agent Usability

Functional utility, complexity comfort, and AI orchestration readiness.

Grade: D-Signals: 1
43%

Complexity Comfort

Agent comfort level based on API operational and structural complexity.

63

Security

Trust, risk posture, and security compliance.

Grade: B-Signals: 1
62%

Authentication Strength

Average quality of security schemes based on authentication method strength (weakest link for OAuth2).

64

AI Discoverability

Findability, semantic richness, and reasoning readiness.

Grade: BSignals: 1
64%

Descriptive Richness

Clarity and depth of descriptions across API elements.

View full reportHow the score is calculatedMore about the dimensions

Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

Score your own APIScoring CLI agent skill
npx @jentic/api-scorecard-cli score <openapi-url>

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Wiring the Compute Engine API by hand means setting up Google OAuth 2.0, minting short-lived tokens against the cloud-platform scope, and routing each call across its 800-plus endpoint surface at compute.googleapis.com yourself. Through Jentic you install once, import the Compute Engine API from the API Directory, store the OAuth credential once, and your agent calls it.

Permission scoping

Compute Engine puts the project, zone, and instance ids in the URL path (/projects/{project}/zones/{zone}/instances/{instance}/reset), so a rule can pin your agent to one project: it can create and list instances there and nothing else. You choose the operations it may call, so instance reset or firewall creation are not included unless you add them.

Credential isolation

Your Compute Engine OAuth credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Agents search Jentic by intent such as 'create a GCP VM' or 'add a firewall rule', and Jentic returns the matching Compute Engine operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Kubernetes Engine API

→

Managed Kubernetes instead of raw VMs

Use GKE when workloads are containerised and need orchestration; use Compute Engine when you need raw VMs with full OS control

Alternative

Cloud Run Admin API

→

Serverless containers without managing VMs at all

Use Cloud Run when the workload is a stateless container and you do not want to operate VMs; use Compute Engine when you need persistent OS-level access

Complementary

Identity and Access Management (IAM) API

→

Manages the service accounts and roles attached to Compute Engine VMs

Use IAM API to mint the service account a VM runs as before creating the VM via Compute Engine

FAQs

Specific to using Compute Engine API through Jentic.

What authentication does the Compute Engine API use?

It uses Google OAuth 2.0 with scopes such as https://www.googleapis.com/auth/compute and the broader cloud-platform scope. Through Jentic the OAuth credentials are stored encrypted in your Jentic One instance and the agent receives only short-lived access tokens at execution time.

Can I create and start a VM with a single API call?

Yes. Send a POST to /compute/v1/projects/{project}/zones/{zone}/instances with the machine type, source image, network interface, and metadata. The endpoint returns a long-running operation that resolves once the VM transitions to RUNNING.

What are the rate limits for the Compute Engine API?

Compute Engine enforces per-project read and write quotas per minute, with regional resource quotas (CPUs, IPs, disks) governing actual provisioning. Heavy automation should batch reads, use list pagination, and respect the operation polling backoff so you do not exhaust the per-minute control-plane budget.

How do I provision a VM through Jentic?

Search Jentic for 'create gcp vm', load the instances.insert schema, and execute the call against /compute/v1/projects/{project}/zones/{zone}/instances with the machine type, source image, and network. Jentic returns the schema so the agent fills only the required fields out of Compute Engine's 800+ endpoint surface.

Is the Compute Engine API free?

The API has no per-call charge - you pay only for the underlying resources you create such as VM-hours, persistent disks, and egress. Free-tier credits cover small e2-micro instances in eligible regions.

How do I take a disk snapshot for backup?

Call POST on /compute/v1/projects/{project}/zones/{zone}/disks/{disk}/createSnapshot with a name and labels. Snapshots are incremental and stored in Cloud Storage, and a new disk can be created from any snapshot via disks.insert with sourceSnapshot.

Can I limit what my agent is allowed to do with the Compute Engine API?

Yes. Because you run Jentic One yourself, your own rules decide which Compute Engine operations and credentials the agent may use. Compute Engine puts the project, zone, and instance ids in the URL path, such as /projects/{project}/zones/{zone}/instances/{instance}/reset, so you can pin the agent to a single project where it may only create and list instances and nothing else. Operations like instance reset, firewall creation, or disk snapshots are excluded unless you explicitly add them to the agent's allowed set.

GET STARTED

Start building with Compute Engine API

Explore with Jentic One
View OpenAPI Document