From 34050602a5f9d5801e0806dbcd6b8fa09e33b1cd Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Mon, 21 Nov 2022 18:01:56 +0000 Subject: [PATCH 1/2] Can now specify language runtime in CCL CLI --- conclave-cloud-api.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conclave-cloud-api.yml b/conclave-cloud-api.yml index 117097f..49f05ea 100644 --- a/conclave-cloud-api.yml +++ b/conclave-cloud-api.yml @@ -84,6 +84,11 @@ components: main: type: string description: The entry point of the code + language: + type: string + description: The language runtime to use when executing the function. + pattern: "^[a-zA-Z0-9+/=]+$" + default: "javascript" FunctionLimits: description: Limits on a specific function From 97304dbe03bc49bada80bccef00c15a771a6f7fd Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Thu, 22 Dec 2022 13:30:24 +0000 Subject: [PATCH 2/2] Language regex matches regex in API --- conclave-cloud-api.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conclave-cloud-api.yml b/conclave-cloud-api.yml index 49f05ea..39c17de 100644 --- a/conclave-cloud-api.yml +++ b/conclave-cloud-api.yml @@ -87,7 +87,7 @@ components: language: type: string description: The language runtime to use when executing the function. - pattern: "^[a-zA-Z0-9+/=]+$" + pattern: "^[a-zA-Z0-9+/=#+]+$" default: "javascript" FunctionLimits: