Skip to content

Instantly share code, notes, and snippets.

@JeremyLikness
Created September 2, 2017 14:17
Show Gist options
  • Select an option

  • Save JeremyLikness/39bc2550934da90d013d1f9917604826 to your computer and use it in GitHub Desktop.

Select an option

Save JeremyLikness/39bc2550934da90d013d1f9917604826 to your computer and use it in GitHub Desktop.
Binding for short link generator
{
"bindings": [
{
"type": "table",
"name": "keyTable",
"tableName": "urls",
"partitionKey": "1",
"rowKey": "KEY",
"take": 1,
"connection": "AzureWebJobsStorage",
"direction": "in"
},
{
"type": "table",
"name": "tableOut",
"tableName": "urls",
"connection": "AzureWebJobsStorage",
"direction": "out"
},
{
"type": "httpTrigger",
"name": "req",
"authLevel": "function",
"direction": "in"
},
{
"type": "http",
"name": "$return",
"direction": "out"
}
],
"disabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment