add comments to describe endpoint in function

This commit is contained in:
Asim Aslam
2021-10-26 17:09:22 +01:00
parent c53b6c28c0
commit d16feae02b

View File

@@ -115,7 +115,10 @@ message DescribeRequest {
} }
message DescribeResponse { message DescribeResponse {
// The time at which the function was updated
string updateTime = 1; string updateTime = 1;
// The last known status of the function
string status = 2; string status = 2;
// The timeout for requests to the function
string timeout = 3; string timeout = 3;
} }