Talk Session 1: Enterprise AI

Enterprise AI - Agent Governance

Rao Surapaneni — VP/GM, AI Search & Specialized AI, Google Cloud

Sunday, August 2 · Plenary Stage · 00:26:42–00:41:39 · morning stream

Enterprise agent adoption is stuck between two bookends — personal-productivity agents and high-code agents built by the CTO org — and the vast middle stays locked not because models are too weak but because governance is missing; the three pillars are visibility, control and security, and the way to deliver them is to give every agent a real identity and move permission checks from static configuration to task- and context-aware runtime enforcement.

TL;DR

  • Two bookends of enterprise adoption: individual-productivity agents on one end, high-code agents built and vetted by the CIO/CTO org on the other. Both work today; the wide middle is what's still locked.
  • Why the middle is stuck: both bookends work because the agent acts under the user's identity, so existing enterprise IAM already covers it. The moment you share an agent, or orchestrate agents across departments, that breaks — what happens when I share a salary-updating agent with a colleague who has higher access than me?
  • Three governance questions: visibility (this is the new shadow IT — an employee downloads a skill off the internet and runs it internally; can you see it, and what is it touching?), control (least agency: checking my vacation balance is fine, writing to the salary database is not — and the distinction has to be made at task granularity), and security (can you proactively reduce risk and detect malicious activity? and who is accountable — can you fire an agent?).
  • Google Cloud's approach is to fit agents into existing enterprise process rather than build a parallel one: mint a distinct agent identity for every agent so IAM, access control and kill switches all carry over; register each agent the way every employee has an ID in LDAP; observe both statically and at runtime.
  • The key shift is from static permissions to runtime permission checking. A user's permissions are set once at onboarding; an agent's cannot be. Agent Gateway plus IAM evaluates authorization as the task happens, Model Armor runs non-deterministic policy analysis at runtime (prompt injection, PII leakage, exfiltration), and offline audits look for anomalies.
  • Conclusion: governance is the accelerator, not the brake — "better governance unlocks more agent autonomy."

Key Points

The gap between technology speed and organizational speed (~00:27–00:29)

He opens with an analogy: remember when mobile devices weren't allowed into the enterprise and couldn't connect to internal systems? AI is a bigger question mark than that — but implementations that make autonomous production agents possible are already arriving.

With any new technology, a lot of air time goes to what is this and what will it disrupt, then to what can I build with it. Almost nobody thinks about day two — once it's deployed, how do I operate and manage it? The sweet spot across technology, product and operations is what actually drives adoption.

Customer questions have turned over three times in a few years: "prove to me AI works" → "help me understand how to use it and build a product" → today, from senior leaders, "I know I'm deploying at scale; help me manage it in operations."

Two bookends, and the unlocked middle (~00:29–00:30)

On one end, products that help individual productivity — find information fast, take actions on it. On the other, high-code agents built by the CIO/CTO org, put through proper testing, security scans and approval cycles, then deployed organization-wide. Employee productivity drives one end; new organizational investment drives the other. Between them sits a wide swath still waiting to be unlocked.

The framing: treat an agent like an intern (~00:30–00:31)

An intern joins; you trust them with some things but not full access, and you still expect delivery. A great intern tells you three things at the end of the day: what they delivered, what they needed help with (that's your human in the loop), and what they couldn't solve (that's your error analysis).

The manager's side of the loop matters too: feedback that helps the intern — or the agent — improve on exactly the cases that needed intervention. Every human-in-the-loop interaction is an opportunity to capture residual knowledge and improve automation for the next cycle, and the same goes for error analysis. Build those loops into the organization and agents gain expertise very rapidly.

Where this goes: every task and every employee backed by an army of agents — a personal agent, an agent doing work you'd otherwise do, or an agent standing in for the specialist coworker you'd have asked.

Governance gap #1: agency mismatch when agents are shared (~00:31–00:32)

The two working bookends work because the agent inherits the user's identity: what the user can reach, the agent can reach, and the enterprise's existing access wiring just applies.

Sharing breaks it in both directions. If I have higher access than my colleague, denying access is easy but hands them a broken agent. Trickier still is the reverse: I build an agent that updates salary information and hand it to a colleague whose access is higher than mine — now it actually works.

Governance gap #2: multi-agent orchestration across silos (~00:32–00:33)

A contract-generation agent knows pricing schemes and which discounts a customer qualifies for; a sales agent is working the account with the end customer. If those two orchestrate, you get the right contract with far fewer human handoffs. But crossing the silo boundary raises the real questions: what data gets exposed, what functionality gets exposed, and what are you allowing each side to do?

The distilled requirements: visibility, control, security (~00:33–00:35)

Enterprises already run multiple LLMs, different agents doing different things on different models, over a mix of MCP servers, API endpoints and CLIs. Handling all of it uniformly comes down to three questions CIOs and CSOs are asking:

  • Visibility — "I spent a lot of time solving for shadow IT. Now this is essentially shadow AI. How do I know an employee isn't simply downloading a skill they like off the internet and using it internally? And what is it accessing?"
  • Control — how do I restrict to least agency? An agent can check my vacation balance; I might accept the risk of it updating the balance; I do not want an autonomous agent updating salary information. That requires understanding the task, the data restrictions, and fine-grained control over both.
  • Security — how do I proactively reduce risk and detect malicious activity? And note it need not be a rogue agent: "it used to be that when something went wrong people blamed the intern; now people blame an agent." Organizational norms rest on the idea that doing bad things gets you fired — can you fire an agent?

Unlocking full autonomy means solving the technology, the process, and the people mindset together.

Google Cloud's governance stack (~00:35–00:41)

The base is the Gemini Enterprise agent platform (low-code / no-code agent building), with governance as a set of composable building blocks:

  1. Everything starts with identity. The user identity used to be the control point; now they mint an identity for every agent operating in the enterprise. That means existing identity and access management processes work seamlessly: you can identify an agent, pull a kill switch on it, and manage its access controls through the IAM solution you already have.
  2. Registration — like every employee having an ID in the LDAP directory, every agent is registered so you know its controls, accesses and permissions.
  3. Observability — not just statically at minting time, but at runtime.
  4. Surfaces and back ends — expose the agent through whatever front end (chat, Slack, and so on) and connect it to any data source, with identity again gating what it can reach.
  5. From static permissions to runtime permission checking — the genuinely new part. A user's permissions are generally set once at onboarding; here you need context-aware, task-aware permissions. Checking a vacation balance and writing to the salary database are different acts, so the check has to happen while the task is being performed. That's what their Agent Gateway does, coupled with IAM authorization.
  6. Model Armor — on top of IAM policies that are set once, a layer doing non-deterministic analysis of enterprise policies: checking for prompt injection, verifying PII isn't leaking, watching what's being exfiltrated out of the model or the data. Alongside runtime checks, offline analysis looks for anomalous activity.
  7. Reuse API-layer security — almost every company already solved "tie identity to what data this user can see" at the API layer when they went from internal databases to mobile and consumer-facing apps. Those primitives carry straight over.

Closing: use the infrastructure you already have, add the special sauce on top — and investing in governance will accelerate the agentic journey, not slow it.

Quotes

"You could not bring your own device into the enterprise and connect it to your enterprise systems. Think of what it took to get over that hump — and we are in an even bigger question mark at this point in AI." (~00:27)

The BYOD analogy: enterprises have crossed this kind of chasm before, but this one is wider.

"It used to be the case when something went wrong people would blame it on the intern. Now people blame it on an agent. But ultimately who's actually accountable for it? … With an agent, can you fire an agent?" (~00:34)

The sharpest question in the talk — organizational accountability rests on consequences that don't apply to agents.

"The best context is the smallest context that gets the job done." (~01:28, during the panel)

His answer on sovereign AI, and a useful footnote to this talk: data doesn't have to enter the model — you can do a great deal inside a sovereign environment using a frontier model.

"Investing in governance will actually help you accelerate as you go through this agentic journey." (~00:41)

The closing line, and another phrasing of his mantra: better governance unlocks more agent autonomy.

提到的專案與資源 / Projects & Resources

名稱 Name 說明 Description 備註 Notes
Gemini Enterprise Google Cloud 的企業 agent 平台,支援低代碼 / 無代碼建構 Google Cloud's enterprise agent platform with low-code / no-code building 治理堆疊的底座 / the base of the governance stack
Agent Gateway 在任務執行當下做 runtime 權限檢查,搭配 IAM 授權 Runtime permission checking at task execution time, coupled with IAM authorization
Model Armor 對企業政策做非確定性分析:prompt injection、PII 洩漏、資料外流 Non-deterministic analysis of enterprise policies: prompt injection, PII leakage, exfiltration Google Cloud 產品 / Google Cloud product
Agent identity 為每個 agent 鑄造專屬身分,讓既有 IAM / kill switch 直接適用 Minting a distinct identity per agent so existing IAM and kill switches apply 講者被介紹為 agent identity 領域的先行者 / he was introduced as a pioneer in agent identity
A2A (Agent2Agent) agent 之間溝通協作的開放協定,Google 發起、Linux Foundation 維護 Open protocol for agent-to-agent communication; initiated by Google, maintained by the Linux Foundation 講者為共同創建者 / he is a co-creator
AP2 (Agent Payments Protocol) 以加密簽章 mandate 做可驗證的代理付款授權 Verifiable agent payment authorization via cryptographically signed mandates 講者為共同創建者 / co-creator
UCP (Universal Commerce Protocol) 開源的 agentic commerce 標準,Google 與 Shopify、Etsy、Target 等合作 Open standard for agentic commerce, built by Google with Shopify, Etsy, Target and others 講者為貢獻者 / he is a contributor
MCP agent 連接工具與資料源的協定,演講中作為既有生態的一部分帶過 Protocol for connecting agents to tools and data sources; referenced as part of the existing stack

逐字稿勘誤 / Transcript Corrections

字幕原文 Heard as 應為 Should be
Ralph / Ral Sur Panini Rao Surapaneni
octa Okta
AAL cycles approval cycles
least agency(語意正確,保留) least agency(least privilege 的 agent 版說法)
xfilled exfiltrated
MCPS MCP servers
AM process / IM policies IAM process / IAM policies
ghat chat
perto chart Pareto chart
sacrosang sacrosanct

待確認 / To Verify

  • 主持人介紹中提到他是 "co-creator of A2A, AP2, contributor to UCP, ARD" ——「ARD」對應的協定名稱查不到,待確認。/ The protocol heard as "ARD" in the introduction could not be identified.
  • 主持人稱他 "recognized as a pioneer in agent identity in Okta 2026 Identity 25" ——該榜單的正式名稱待確認。/ Formal name of the Okta "Identity 25" 2026 list.
  • Agent Gateway 是否為 Google Cloud 的正式產品名(或僅為架構層描述),待確認。/ Whether "Agent Gateway" is a formal Google Cloud product name or an architectural layer description.

Markdown source on GitHub ↗