获取采集机升级参数
功能介绍
在采集机升级的时候,需要先获取采集机升级的参数信息。
请求
- 请求样例
GET https://ip:port/softcomai/datalake/collection/v1.0/collector/upgrade/parameters?collectorId=Collector-b8d7839a
- 参数说明
参数名
是否必选
参数类型
备注
collectorId
是
String
采集机ID。
响应
- 响应样例
{ "success": true, "returnData": { "params": [ { "chinese": "参数一", "english": "param1", "isNeed": "true", "consoleType": "input", "value": "" }, { "chinese": "参数二", "english": "param2", "isNeed": "false", "consoleType": "input", "value": "" }, { "chinese": "参数三", "english": "param1", "isNeed": "true", "consoleType": "input", "value": "" } ] } }
- 要素说明
参数名
参数类型
备注
success
Boolean
请求是否成功。
returnData
Object
返回值。
params
List
参数列表。
chinese
String
中文名。
english
String
英文名。
isNeed
String
该字段是否为必填字段。
consoleType
String
console输入框类型。
value
String
默认值。
状态码
具体请参考状态码。