azure-logic-apps

when converting parameters to variables, connections are broken at dev time

夙愿已清 提交于 2019-12-02 09:19:51
How do I get up my connections to show up in the designer ? In my logicapp.json file I am setting the connection names to be functions of parameters like so: "variables": { "servicebus_1_Connection_Name": "[concat('servicebus-',parameters('logicAppName'))]", "azureblob_1_Connection_Name": "[concat('blob-',parameters('logicAppName'))]" }, However the designer doesn't like this: When deploying, the connections show up no problem: Try using parameters instead of variables for this. Variables need to be instantiated while parameters only need to be declared, bear in mind that you will need to

ftp to azure storage blob (triggered processing)

守給你的承諾、 提交于 2019-12-02 02:34:14
I want to transfert encrypted files from an ftp server to `azure blob storage container Here is the workfow in question: CSV encrypted files on Ftp server ----------> Trigger (example: On adding files )----------> call to some local programs or api that process decryption and then create the output csv file in the blob container the files are structured like following: Input CSV file: column1;column2;column3; encryptedvalue1;encryptedvalue2;encryptedvalue3; and Output csv file: column1;column2;column3; value1;value2;value3; There is no file content transformation here but there is one more

Azure function gives “The 'code' query parameter provided in the HTTP request did not match the expected value.”

北城以北 提交于 2019-12-01 22:37:20
问题 I am developing logic app in azure portal with azure function app.Logic app gives randomly code query parameter invalid error for function . When ever error occurred i have to clone the logic app is there any permanent solution for this error. Regards 回答1: I ran into this with a generic web hook function. The workaround I found was: Go to the Function app page in the Azure portal Select your app - You should see the menu with options "Develop", "Integrate", "Manage" and "Monitor" Select

Azure function gives “The 'code' query parameter provided in the HTTP request did not match the expected value.”

為{幸葍}努か 提交于 2019-12-01 22:34:07
I am developing logic app in azure portal with azure function app.Logic app gives randomly code query parameter invalid error for function . When ever error occurred i have to clone the logic app is there any permanent solution for this error. Regards I ran into this with a generic web hook function. The workaround I found was: Go to the Function app page in the Azure portal Select your app - You should see the menu with options "Develop", "Integrate", "Manage" and "Monitor" Select "Manage" There are two groups of keys - Function keys and Admin keys. The default Admin key was being used, so I

String concatenation issue with Azure Logic Apps

萝らか妹 提交于 2019-12-01 17:31:26
I'm creating an ARM template that deploys an Web App (an Mvc Api) and a Logic App. I'm attempting to define an HTTP Action within the Logic App such that it dynamically concatenates the base Uri of the Api as well as a property of the current item using splitOn and @triggerBody() . The base Uri itself is concatenated from a set of parameters in the ARM template into a variable variables('hockeyAppAPISettings').Uri . Here's the relevant snipped of the action definition: "actionName": { "conditions": [ ], "inputs": { "authentication": { "audience": "[variables('apiSettings').Authentication

String concatenation issue with Azure Logic Apps

匆匆过客 提交于 2019-12-01 16:32:39
问题 I'm creating an ARM template that deploys an Web App (an Mvc Api) and a Logic App. I'm attempting to define an HTTP Action within the Logic App such that it dynamically concatenates the base Uri of the Api as well as a property of the current item using splitOn and @triggerBody() . The base Uri itself is concatenated from a set of parameters in the ARM template into a variable variables('hockeyAppAPISettings').Uri . Here's the relevant snipped of the action definition: "actionName": {

How do I add an SMS from Twilio into Azure Table Storage using Logic App

女生的网名这么多〃 提交于 2019-12-01 14:32:18
I am able to receive a text message into a Logic App, via a Twilio Web Hook. as set up by following these instructions Regarding my question here Now I need to add that text into an Azure Table. I have added a Parse JSON action What should I put in the Content and Schema? I found that if I click inside the Content Box I am prompted to pick from a tag. I guess Body is the one. [Update] Now I am trying to insert the Entity Directly but I cant work out how to do this in the designer. How do I expand the Entity text box so as to put the JSON in? [Update2] I found I could expand the Entity text box

ARM template Office 365 connection for logic apps

半城伤御伤魂 提交于 2019-12-01 06:51:49
问题 I have a logic app that I am trying to automate through an ARM Template. The logic app requires a connection to Office 365. Below I have the template for the connection generated from the automation pane of the Azure Portal. When I run the script it fails - there is an authentication issue between the Azure subscription and the Office 365 subscription. LinkedAuthorizationFailed The client has permission to perform action 'Microsoft.Web/locations/managedApis/join/action' on scope ... however

Programmatically Schedule one-time execution of Azure function

你。 提交于 2019-12-01 06:25:38
I have looked through documentation for WebJobs, Functions and Logic Apps in Azure but I cannot find a way to schedule a one-time execution of a process through code. My users need to be able to schedule notifications to go out at a specific time in the future (usually within a few hours or a day from being scheduled). Everything I am reading on those processes is using CRON expressions which is not designed for one-time executions. I realize that I could schedule the job to run on intervals and check the database to see if the rest of the job needs to run, but I would like to avoid running

Can an Azure Logic App have multiple start triggers?

六月ゝ 毕业季﹏ 提交于 2019-12-01 06:03:54
Can an Azure Logic App have multiple start triggers? I've read the triggers docs at MSDN but can't see anything on having multiple triggers In general yes, you can have multiple triggers in a Logic App workflow . Actually, according to the official documentation , you can have up to 10 triggers in a single Logic App. As example, in the following logic app, I used two triggers: the first one is a SFTP connector trigger and, after a sequence of actions I have a second trigger on a Service Bus queue (with the send message action I send a message for a webjob that performs a long running task and