From 44413f15f14b3c7bdc3bee7abe5d8abab0cf3eb6 Mon Sep 17 00:00:00 2001 From: daihw <928874202@qq.com> Date: Sat, 9 Oct 2021 12:37:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8F=96=E6=B6=88=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E8=8A=82=E7=82=B9=E5=8F=98=E9=87=8F=E5=90=8D=E7=9A=84?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=93=BE=E6=8E=A5=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guide/custom-node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/custom-node.md b/guide/custom-node.md index 0a9f01d..dd98a03 100644 --- a/guide/custom-node.md +++ b/guide/custom-node.md @@ -45,7 +45,7 @@ | resultFile | 输出参数的文件路径,若定义了输出参数outputParameters,则必填 | | inputParameters | 输入参数列表 | | inputParameters.ref | 参数唯一标识,会在容器内转译成'JIANMU_'开头并大写的环境变量。如:hub_url在容器内可通过JIANMU_HUB_URL环境变量调用,必填 | -| inputParameters.name | 参数名称,必填 | +|inputParameters.name| 参数名称,必填 | | inputParameters.type | 参数类型,支持STRING、SECRET、NUMBER、BOOLEAN等类型,必填。STRING/NUMBER/BOOLEAN: 若参数类型为STRING/NUMBER/BOOLEAN,可直接填写值或引用其他变量(事件、全局、其他任务的输出等参数)。SECRET: 若参数类型为SECRET,需要调用平台密钥,具体用法详见密钥管理章节 | | inputParameters.value | 参数默认值,若执行该节点定义时,没有指定参数值,将会使用此默认值,必填 | | inputParameters.description | 参数描述,选填 | -- Gitee