Google Provider Update - August 2026
We've released an update to the StackQL Google provider, regenerated from the latest Google API discovery documents. The google provider now covers 187 services, 2,183 resources and over 9,100 operations - up from 179 services, 1,966 resources and 8,423 operations in the previous release. The companion providers in the google family (googleworkspace, googleadmin and firebase) were regenerated in the same pass.
New Services
Eleven services are new in this release:
| Service | Description |
|---|---|
agentregistry | Centralized catalog to store, discover and govern MCP servers, tools and AI agents within Google Cloud |
agentidentity | Identities and authorization for AI agents - auth providers, authorizations and access summaries |
agentidentitycredentials | Short-lived credential issuance for agent identities |
ces | Gemini Enterprise for Customer Experience - agents, apps, deployments, conversations, guardrails and tool schemas |
hypercomputecluster | Cluster Director - deploy, manage and monitor AI/ML and HPC clusters |
databasecenter | Organization-wide database fleet health monitoring across projects and folders |
metastore | Dataproc Metastore - services, backups, federations, metadata imports and migrations |
threatintelligence | Google Threat Intelligence - alerts, findings, documents and configurations |
cloudnumberregistry | IP address management - realms, registry books, custom and discovered ranges |
developerknowledge | Programmatic access to Google developer documentation |
health | Google Health API (v4) - health and fitness metrics, data points, devices and subscriptions |
Expanded Coverage in Existing Services
compute- the largest expansion in this release, 73 new resources: capacity planning (future_reservations,reservation_slots,reservation_blocksandreservation_sub_blocksversions),instant_snapshot_groupsand regional snapshot resources,cross_site_networksandwire_groups,organization_security_policies,network_firewall_policies,rolloutsandrollout_plans, plus per-resource IAM policy resources across addresses, firewalls, health checks, routes, target proxies and moreaiplatform(Vertex AI) - agent engine build-out:agents,memory_banks,sandbox_environments(with templates and snapshots),online_evaluators,evaluation_metrics,responsesand semantic governance policy resourcesoracledatabase- GoldenGate integration: deployments, deployment environments/types/versions, connections and connection assignments, plus autonomous database refreshable clonesdataplex- universal catalog governance:data_domains,data_products,data_assets,metadata_feedsandchange_requestsredis- token-based auth:token_auth_users,auth_tokensandacl_policiesnetworksecurity-dns_threat_detectorsand Secure Access Connect realms and attachmentscloudkms-single_tenant_hsm_instances, key deletionproposalsandretired_resourcesobservability- log analyticsbuckets,datasets,links,viewsand scope settings
Another 50+ services picked up incremental resources and operations, including discoveryengine, contactcenterinsights, netapp, artifactregistry, assuredworkloads and dataproc.
Removed Services
Google has retired several APIs since the last release, and they are removed from the provider accordingly:
datalabeling- AI Platform Data Labeling was shut downintegrations- Application Integration no longer publishes a discovery documentlifesciences- Cloud Life Sciences was shut downdataplexExplore resources (content,environments,sessions) were removed upstream
The duplicate *_aggregated helper resources in compute were also consolidated - cross-zone queries are served by the primary resources, so a zone-less SELECT fans out across all zones:
SELECT name, status, machineType, zone
FROM google.compute.instances
WHERE project = 'my-project';
Example: Open Firewall Audit
Ingress rules open to the entire internet, and what they allow:
SELECT
name,
direction,
sourceRanges,
allowed
FROM google.compute.firewalls
WHERE project = 'my-project'
AND sourceRanges LIKE '%0.0.0.0/0%';
Get Started
Pull the latest provider from the public registry:
stackql registry pull google;
Authenticate with a service account key in the GOOGLE_CREDENTIALS environment variable (or interactively via gcloud auth login), then explore:
SELECT
json_extract(config, '$.name') AS api,
state
FROM google.serviceusage.services
WHERE parent = 'my-project'
AND parentType = 'projects'
AND filter = 'state:ENABLED';
Provider docs, including getting-started queries for each provider in the family, are at google-provider.stackql.io, googleworkspace-provider.stackql.io, googleadmin-provider.stackql.io and firebase-provider.stackql.io. Visit us on GitHub and let us know how you're using it.