azure-logic-apps

ftp to azure storage blob (triggered processing)

南笙酒味 提交于 2019-12-20 03:27:12
问题 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

Trigger VSTS/TFS build based on blob

我与影子孤独终老i 提交于 2019-12-13 16:35:45
问题 Is it possible to trigger an VSTS/TFS build based on the condition if a blob in a storage account is updated? I tried to create a function app, but with little to no result, I cannot trigger a VSTS/TFS build. 回答1: Easiest solution (from my understanding) will be to use a logic app: Create a logic app that is triggered whenever a blob is added/updated into a specific container. Queue a VSTS build NOTE your VSTS account should have "Third-party application access via OAuth" enabled. (Go to

Email alert Azure table storage

人盡茶涼 提交于 2019-12-13 09:52:06
问题 I am sending sensor data to azure table storage. I want to send an email if a value in a column is less than a particular value. please find the attached images -If a value in GPIOPin column is less than 7 then an email alert has to be sent. Could someone please guide how to proceed? I have tried with Logic apps but I am not understanding how to provide a condition there. 回答1: AFAIK, Logic Apps do not support Triggers for Azure Table Storage for now. You could add your feedback here. Based on

Checking if Virtual Machine is restarting using logic apps

不羁岁月 提交于 2019-12-13 08:38:19
问题 I am trying to use resource event occurs from a Microsoft tutorial. I know how to detect if a subscription is deleted or created. I cant find a way to detect if a virtual machine i am using restarts 回答1: We have a document that explains the different kinds of reboots. In that doc you will find a link to the Activity Logs which you can use to find when a VM reboots among other actions https://docs.microsoft.com/en-us/azure/virtual-machines/troubleshooting/understand-vm-reboot https://docs

Authenticating office365 logic app connector with PS

你。 提交于 2019-12-13 04:12:26
问题 Trying to setup a bunch of logic apps with supporting Azure functions etc. concept is to utilize ML/Azure functions/Logic apps etc. to setup an automated mailing system. Everything is deployed using VSTS/Git with CD/CI pipelines, but we have a problem with the Office365 connector that needs authentication after creation. For now, we have followed this article that creates a windows form for authentication (https://blogs.technet.microsoft.com/ronba/2016/05/09/using-powershell-and-the-office

BizTalk 2016 Functoids Not Displaying in Visual Studio 2015

╄→гoц情女王★ 提交于 2019-12-13 03:41:47
问题 I have a quick question. Currently at my job we are attempting to implement a new project that utilizes Microsoft Logic Apps. Logic Apps implements BizTalk functoids for mapping purposes as anyone that is familiar with Logic Apps already knows. Currently though we are encountering an issue with the BizTalk functoids. The functoids are not displaying in the toolbox. We tried installing any possible missing packages, we have tried repairing the toolbox and the visual studio ide. We have even

How do you Authenticate a Logic app microsoft.web/connections connection with code

跟風遠走 提交于 2019-12-12 09:56:17
问题 I have a logic app with an Office 365 connection. Of course I can authenticate this in the portal manually but I would have to do this every time I deploy from my deployment automation pipeline. I have found a post of this but it is no longer available: Authenticating office365 logic app connector with PS The link that is no longer available Here is what I mean in the portal: Any idea how I automate this with say Powershell or az clie or something else? thanks Russ 回答1: This question was

Azure Logic for getting data from SQL to FTP

别等时光非礼了梦想. 提交于 2019-12-12 04:34:44
问题 I've a task of taking data from SQL and uploading the data as a CSV file up to an FTP server. Now I've done this for a single SQL row just fine. The problem I'm having is looping over all rows (foreach loop) and inserting these rows as the content of the CSV file. I've tried a FTP Create File Task inside a foreach loop, but I can only access a single row at a time to set as the file's content - I need all the rows! Also to keep in mind is that these files will have 200k+ rows. I could of

Logic app and service bus queue not scaling logic app run-instances properly

二次信任 提交于 2019-12-11 19:56:46
问题 Hi i have a performance issue regarding Logic Apps and a Azure Service bus queue. So i have a logic app looking like this: (NOTE: The delay is there to simulate a bunch of connectors/actions that take about 2 seconds to run, also i'm using lock tokens and also session IDs to complete messages and Close sessions) Its polling the service bus every second for high throughput with a peak-lock because my service bus queue uses sessions to enable FIFO Ordering in my flow. So what i'm doing is,

Azure logic app with Condition

最后都变了- 提交于 2019-12-11 18:36:48
问题 I am creating the logic app when I want to send an email when there are duplicate entries created in my database, and until those are not removed email should be triggered after some interval As per Logic App, we can create a trigger on SQL when data is inserted or modified as bellow So I selected the first option then I am adding another action which will run my SQL script to check the logic of duplicate entries and last I have added another action to send an email. Now I want my last action