CreateDataset functie toegevoegd
This commit is contained in:
36
functions/CreateDataset/function.json
Normal file
36
functions/CreateDataset/function.json
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"scriptFile": "__init__.py",
|
||||
"bindings": [
|
||||
{
|
||||
"authLevel": "function",
|
||||
"type": "httpTrigger",
|
||||
"direction": "in",
|
||||
"name": "req",
|
||||
"methods": [
|
||||
"get",
|
||||
"post"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "http",
|
||||
"direction": "out",
|
||||
"name": "$return"
|
||||
},
|
||||
{
|
||||
"name": "msg",
|
||||
"type": "serviceBus",
|
||||
"direction": "out",
|
||||
"queueName": "tst",
|
||||
"connection": "AzureWebJobsServiceBus"
|
||||
},
|
||||
{
|
||||
"type": "cosmosDB",
|
||||
"direction": "out",
|
||||
"name": "doc",
|
||||
"databaseName": "aikompas",
|
||||
"collectionName": "dataset",
|
||||
"createIfNotExists": "true",
|
||||
"connectionStringSetting": "AzureCosmosDBConnectionString"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user