fix(cli): correct console URL path after adk deploy agent_engine

Merge https://github.com/google/adk-python/pull/5338

### Summary

After deploying an agent with `adk deploy agent_engine`, the generated Google Cloud Console URL uses the outdated path `agent-platform/runtimes`, which no longer resolves to the correct page.

### Changes

**`src/google/adk/cli/cli_deploy.py`**

Updated the URL path in `_print_agent_engine_url` from:
```
https://console.cloud.google.com/agent-platform/runtimes/locations/...
```
to:
```
https://console.cloud.google.com/vertex-ai/agents/agent-engines/locations/...
```

Fixes #5336

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/5338 from anmolg1997:fix/deploy-console-url 1fb352e9262e58165eed5eb7b119a655a4860540
PiperOrigin-RevId: 900308294
This commit is contained in:
Anmol Jaiswal
2026-04-15 13:05:45 -07:00
committed by Copybara-Service
parent 7686848551
commit 64ed1a68c9
+1 -1
View File
@@ -817,7 +817,7 @@ def _print_agent_engine_url(resource_name: str) -> None:
engine_id = parts[5]
url = (
'https://console.cloud.google.com/agent-platform/runtimes'
'https://console.cloud.google.com/vertex-ai/agents/agent-engines'
f'/locations/{region}/agent-engines/{engine_id}/playground'
f'?project={project_id}'
)