From d16feae02b73c7830fb9e5104f5a500c2d6fb359 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Tue, 26 Oct 2021 17:09:22 +0100 Subject: [PATCH] add comments to describe endpoint in function --- function/proto/function.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/function/proto/function.proto b/function/proto/function.proto index a3c35af..aa78679 100644 --- a/function/proto/function.proto +++ b/function/proto/function.proto @@ -115,7 +115,10 @@ message DescribeRequest { } message DescribeResponse { + // The time at which the function was updated string updateTime = 1; + // The last known status of the function string status = 2; + // The timeout for requests to the function string timeout = 3; }