Agentuity云部署详情查看 agentuity-cli-cloud-deployment-show

Agentuity云部署详情查看技能,用于查询和展示Agentuity云平台上特定部署的详细信息,包括部署状态、资源配置、日志链接和元数据。关键词:Agentuity云平台、部署管理、CLI命令、云部署状态、部署日志、DevOps工具。

CI/CD 0 次安装 0 次浏览 更新于 2/28/2026

name: agentuity-cli-cloud-deployment-show description: 显示特定部署的详细信息。需要身份验证。用于Agentuity云平台操作 version: “0.0.103” license: Apache-2.0 allowed-tools: “Bash(agentuity:*)” argument-hint: “<deployment_id>” metadata: command: “agentuity cloud deployment show” tags: “read-only fast requires-auth requires-deployment”

云部署详情查看

显示特定部署的详细信息

前提条件

  • 已通过 agentuity auth login 完成身份验证
  • 云部署

使用方法

agentuity cloud deployment show <deployment_id> [options]

参数

参数 类型 是否必需 描述
<deployment_id> 字符串 -

选项

选项 类型 是否必需 默认值 描述
--project-id 字符串 - 项目ID

示例

按ID显示部署详情:

bunx @agentuity/cli cloud deployment show dep_abc123xyz

显示特定项目的部署:

bunx @agentuity/cli cloud deployment show deployment-2024-11-20 --project-id=proj_abc123xyz

输出

返回JSON对象:

{
  "id": "string",
  "state": "string",
  "active": "boolean",
  "createdAt": "string",
  "updatedAt": "string",
  "message": "string",
  "tags": "array",
  "customDomains": "array",
  "cloudRegion": "string",
  "resourceDb": "unknown",
  "resourceStorage": "unknown",
  "deploymentLogsURL": "unknown",
  "buildLogsURL": "unknown",
  "metadata": "object"
}
字段 类型 描述
id 字符串 部署ID
state 字符串 部署状态
active 布尔值 部署是否处于活动状态
createdAt 字符串 创建时间戳
updatedAt 字符串 最后更新时间戳
message 字符串 部署消息
tags 数组 部署标签
customDomains 数组 自定义域名
cloudRegion 字符串 云区域
resourceDb 未知 数据库名称
resourceStorage 未知 存储名称
deploymentLogsURL 未知 部署日志URL
buildLogsURL 未知 构建日志URL
metadata 对象 部署元数据