azure-logic-apps

Is there any way to delete logic app run history / logs?

你。 提交于 2021-01-28 18:01:41
问题 Is there any way to delete all the Run history logs from a logic app. I know there is a preview on "Log Retention Time" right now being tested but the most frequent time to delete all logs is once every week. I need to be able to do it more frequent, in this case every 3rd day. Is there any other way to delete logic app logs/history? EDIT: Looking at the PowerShell commands in Azure resource manager for a specific run there are only two actions that the Azure resource manager API supports.

Blocked: In Azure Logic app, how can you add group of checkboxes for each of the languages for a user to choose for caption translation option?

妖精的绣舞 提交于 2021-01-28 12:46:29
问题 I have created a logic app, to pull the Video Transcript(VTT) caption file, once the videos have been indexed. I want the user to have the ability to choose which language they would like the captions to be translated in ( For e.g English, Spanish, French, Portuguese etc). Is there a way to add group of check boxes for each of the languages for the user to choose? I was looking at this :https://api-portal.videoindexer.ai/docs/services/Operations/operations/Get-Video-Index but it looks like

Blocked: In Azure Logic app, how can you add group of checkboxes for each of the languages for a user to choose for caption translation option?

一个人想着一个人 提交于 2021-01-28 12:43:19
问题 I have created a logic app, to pull the Video Transcript(VTT) caption file, once the videos have been indexed. I want the user to have the ability to choose which language they would like the captions to be translated in ( For e.g English, Spanish, French, Portuguese etc). Is there a way to add group of check boxes for each of the languages for the user to choose? I was looking at this :https://api-portal.videoindexer.ai/docs/services/Operations/operations/Get-Video-Index but it looks like

Azure CosmosDB Query Explorer vs Data Explorer

久未见 提交于 2021-01-28 12:26:01
问题 I'm running the same query against my CosmosDB instance (using SQL API): SELECT c.partition, COUNT(1) AS total FROM c WHERE c.system = "SF" GROUP BY c.partition I'm a bit surprised that I'm getting expected results from Data Explorer while under Query Explorer tab I'm getting 400 Bad Request with below message: {"code":400,"body":"{\"code\":\"BadRequest\",\"message\":\"Message: {\\"Errors\\":[\\"Cross partition query only supports 'VALUE ' for aggregates.\\"]}\r\nActivityId: d8523615-c2ff

Pick up records from SharePoint List based on Max value of Created field using Azure Logic App

柔情痞子 提交于 2021-01-28 09:06:15
问题 I've a SharePoint List with 652 rows. Created (Record Created Timestamp) and Modified (Record Updated Timestamp) are two inbuilt fields of the SharePoint List. Staging all these 652 records along with the Created and Modified columns in an on-premise SQL Server Table using Azure Logic App. I've created the Created and Modified columns in SQL Serveras VARCHAR(100). Example of a Created column value in SQL Server table - 2021-01-15T06:43:00Z Now, my aim is to select Max(Created) and Max

Azure Logic App with SharePoint Connection

我只是一个虾纸丫 提交于 2020-12-13 03:07:57
问题 I am creating my first logic app which connects to SharePoint and adds entries into some sharepoint list. Whenever I create a SharePoint Connection it adds below resource to my logic app. { "type": "MICROSOFT.WEB/CONNECTIONS", "apiVersion": "2018-07-01-preview", "name": "[parameters('sharepointonline_1_Connection_Name')]", "location": "[parameters('logicAppLocation')]", "properties": { "api": { "id": "[concat(subscription().id, '/providers/Microsoft.Web/locations/', parameters(

Azure Logic App with SharePoint Connection

两盒软妹~` 提交于 2020-12-13 03:05:34
问题 I am creating my first logic app which connects to SharePoint and adds entries into some sharepoint list. Whenever I create a SharePoint Connection it adds below resource to my logic app. { "type": "MICROSOFT.WEB/CONNECTIONS", "apiVersion": "2018-07-01-preview", "name": "[parameters('sharepointonline_1_Connection_Name')]", "location": "[parameters('logicAppLocation')]", "properties": { "api": { "id": "[concat(subscription().id, '/providers/Microsoft.Web/locations/', parameters(

Azure Logic App with SharePoint Connection

自古美人都是妖i 提交于 2020-12-13 03:05:20
问题 I am creating my first logic app which connects to SharePoint and adds entries into some sharepoint list. Whenever I create a SharePoint Connection it adds below resource to my logic app. { "type": "MICROSOFT.WEB/CONNECTIONS", "apiVersion": "2018-07-01-preview", "name": "[parameters('sharepointonline_1_Connection_Name')]", "location": "[parameters('logicAppLocation')]", "properties": { "api": { "id": "[concat(subscription().id, '/providers/Microsoft.Web/locations/', parameters(

How to loop through an array in a logic app?

只谈情不闲聊 提交于 2020-12-12 10:09:09
问题 I have managed to get all my userdata in an array (see here) but now I cannot loop through the data. After building the array I have converted it to JSON, but I can no longer address the fields as defined in my JSON schema. The only thing I can address in my loop (I use the JSON body as input for the For Each loop) is the body itself, not the individual fields like username, mail address etc. Should I change something in my JSON schema to overcome this or is something else wrong? Edit: Please

How to loop through an array in a logic app?

别说谁变了你拦得住时间么 提交于 2020-12-12 10:07:33
问题 I have managed to get all my userdata in an array (see here) but now I cannot loop through the data. After building the array I have converted it to JSON, but I can no longer address the fields as defined in my JSON schema. The only thing I can address in my loop (I use the JSON body as input for the For Each loop) is the body itself, not the individual fields like username, mail address etc. Should I change something in my JSON schema to overcome this or is something else wrong? Edit: Please