基因容器 GCS
基因容器 GCS
- 最新动态
- 产品介绍
- 快速入门
- 用户指南
- Cromwell引擎使用指南
- 最佳实践
- 流程语法参考
- Python SDK参考
- API参考
-
CLI参考
- 命令总览
- 安装命令行工具
- 示例:使用命令行执行简单脚本
-
gcs 命令详情
- gcs version
- gcs config add
- gcs config list
- gcs get kubectl
- gcs get enviroment
- gcs set env
- gcs get sfs
- gcs set sfs
- gcs get obscli
- gcs obs upload
- gcs get workflow
- gcs create workflow
- gcs del workflow
- gcs update workflow
- gcs sub workflow
- gcs get execution
- gcs create execution
- gcs del execution
- gcs set execution
- gcs sub job
- gcs sub repjob
- gcs get tool
- gcs sub wdl
- gcs get wdl
- gcs set wdl
- get get fr
- config.ini配置说明
- 常见问题
- 视频帮助
- 文档下载
- 通用参考
链接复制成功!
查询execution输入
功能介绍
查询执行结果的输入。
URI
GET /v1/executions/{execution_id}/inputs
请求消息
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
execution_id |
是 |
String |
执行结果ID,即创建execution接口返回值。 |
请求示例
GET /v1/executions/e19d3faf-9f04-9685-e5c0-fbe8d40b96cd/inputs HTTP/1.1 Host:Host Server Content-Type:application/json
响应消息
响应参数
响应中结构如表2所示
响应示例
{ "inputs": { "data_pvc_name": { "description": "pvc name for data bucket", "label": "internal", "type": "string", "value": "gene-pvc-gene-container-test" }, "ref_pvc_name": { "description": "pvc name for reffrence bucket", "label": "internal", "type": "string", "value": "gene-pvc-gcs-ref-southchina" }, "sfs_pvc_name": { "description": "pvc name for sfs volume", "label": "internal", "type": "string", "value": "gene-sfs-1111" }, "cpu": { "default": "4c", "description": "cpu request", "label": "advanced", "type": "string", "value": "4c" }, "memory": { "default": "32G", "description": "memory request", "label": "advanced", "type": "string", "value": "32G" }, } }
父主题: Execution