From fab62fdbc847a985be139c3ea05035a8601275de Mon Sep 17 00:00:00 2001 From: rsonghuster Date: Thu, 27 Oct 2022 15:05:39 +0800 Subject: [PATCH] make serviceName and functionName with constraints --- publish.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/publish.yaml b/publish.yaml index 2d86c48..cee8dd8 100644 --- a/publish.yaml +++ b/publish.yaml @@ -1,6 +1,6 @@ Type: Application Name: start-unzip-oss -Version: 0.0.10 +Version: 0.0.11 Provider: - 阿里云 Description: 使用函数计算自动解压上传到OSS指定前缀目录的zip文件 @@ -58,12 +58,14 @@ Parameters: title: 服务名 type: string default: unzip-oss - description: 应用所属的函数计算服务 + pattern: "^[a-zA-Z_][a-zA-Z0-9-_]{0,127}$" + description: 应用所属的函数计算服务,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-128 之间 functionName: title: 函数名 type: string default: oss-invoke-fc - description: 应用的函数名称 + pattern: "^[a-zA-Z_][a-zA-Z0-9-_]{0,63}$" + description: 应用的函数名称, 只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-64 之间 roleArn: title: RAM角色ARN type: string