add entire function description on describe (#247)

This commit is contained in:
Asim Aslam
2021-10-26 17:28:42 +01:00
committed by GitHub
parent 7cbd26b388
commit 40112efb61
4 changed files with 104 additions and 51 deletions

View File

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