skip to Main Content

Azure – Data Factory – pass json to foreach activity

In DataFactory, I'm creating a ForEach activity and in Items I'm using this expression: @createArray(json('{ "daily": { "raw": [ { "entity_name": "ent1", "fetchXML_file": "raw/ent1.xml", "destination_path_base": "/master/raw/ent1" }, { "entity_name": "ent2", "fetchXML_file": "raw/ent2.xml", "destination_path_base": "/master/raw/ent2" }, { "entity_name": "ent3", "fetchXML_file": "raw/ent3.xml",…

VIEW QUESTION

Azure function Application settings is not consistent to values in local.settings.json

local.settings.json: { "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "", "FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_RUN_FROM_PACKAGE": 1, "SCM_DO_BUILD_DURING_DEPLOYMENT": true } } However, after successfully executing: $ npm run-script build && zip -r azure_function.zip . && az functionapp deployment source config-zip -g acmeapp -n acmefunction2 --src…

VIEW QUESTION
Back To Top
Search