Files
spring-cloud-function/spring-cloud-function-samples/function-sample-azure/src/main/azure/uppercase/function.json
2018-03-16 11:28:53 -04:00

22 lines
366 B
JSON

{
"scriptFile": "../function-sample-azure-1.0.0.M5-azure.jar",
"entryPoint": "example.FooHandler.execute",
"bindings": [
{
"type": "httpTrigger",
"name": "foo",
"direction": "in",
"authLevel": "anonymous",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"name": "$return",
"direction": "out"
}
],
"disabled": false
}