currently if you query the API host (GET /openwhisk) you get a response
which includes the deployment manifest and action invocation limits. I've
added in this PR [1] additional limits to include the min/max action
duration, memory size and log size so the response looks like:
"limits": {
"min_action_logs": 134217728,
"max_action_memory": 536870912,
"actions_per_minute": 60,
"min_action_memory": 134217728,
"concurrent_actions": 30,
"triggers_per_minute": 60,
"sequence_length": 50,
"max_action_logs": 536870912,
"min_action_duration": 100,
"max_action_duration": 300000
}
Thoughts?
[1] https://github.com/apache/incubator-openwhisk/pull/3859