
# 查询execution输入
#### 功能介绍
查询执行结果的输入。
#### URI
GET /v1/executions/{execution_id}/inputs
#### 请求消息
表1参数说明 
| 参数           | 是否必选 | 参数类型   | 描述                                                                                         |
|:---|:---|:---|:---|
| execution_id | 是    | String | 执行结果ID，即[创建execution](https://support.huaweicloud.com/api-gcs/gcs_api_005_0020.html)接口返回值。 |
   
**请求示例**
```
GET /v1/executions/e19d3faf-9f04-9685-e5c0-fbe8d40b96cd/inputs HTTP/1.1 
Host:Host Server   
Content-Type:application/json
```
#### 响应消息
**响应参数**
响应中结构如[表2]所示
 表2execution输入结构 
| 参数     | 参数类型                                                                               | 描述        |
|:---|:---|:---|
| inputs | JSONObject，请参见[inputs](https://support.huaweicloud.com/tr-gcs/gcs_tr_01_0004.html) | 执行结果输入信息。 |
   
**响应示例**
```
{
  "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"
    },
  }
}
```
#### 状态码
- 正常 状态码如[表3]所示。
  
 表3状态码 
| 状态码 | 描述         |
|:---|:---|
| 200 | 执行结果输入查询成功 |
   
- 异常 状态码如[6.3-状态码](https://support.huaweicloud.com/api-gcs/gcs_api_006_001.html)所示。
  
 
