Skip to content

Commit 74b4d4f

Browse files
Merge pull request #208632 from ecfan/fresh-pass
Azure Logic Apps: Freshness review - update date
2 parents d8ad0e8 + be198cc commit 74b4d4f

10 files changed

+16
-10
lines changed

articles/logic-apps/create-automation-tasks-azure-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 02/14/2022
8+
ms.date: 08/20/2022
99
ms.custom: ignite-fall-2021
1010
---
1111

articles/logic-apps/create-custom-built-in-connector-standard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, daviburg, apseth, psrivas, azla
77
ms.topic: how-to
8-
ms.date: 05/17/2022
8+
ms.date: 08/20/2022
99
# As a developer, I want learn how to create my own custom built-in connector operations to use and run in my Standard logic app workflows.
1010
---
1111

articles/logic-apps/create-monitoring-tracking-queries.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: divswa, estfan, azla
77
ms.topic: how-to
8-
ms.date: 01/30/2020
8+
ms.date: 08/20/2022
99
---
1010

1111
# View and create queries for monitoring and tracking in Azure Monitor logs for Azure Logic Apps
1212

13+
[!INCLUDE [logic-apps-sku-consumption](../../includes/logic-apps-sku-consumption.md)]
14+
1315
> [!NOTE]
1416
> This article applies only to Consumption logic apps. For information about monitoring Standard logic apps, review
1517
> [Enable or open Application Insights after deployment for Standard logic apps](create-single-tenant-workflows-azure-portal.md#enable-open-application-insights).

articles/logic-apps/create-parameters-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 02/08/2022
8+
ms.date: 08/20/2022
99
---
1010

1111
# Create cross-environment parameters for workflow inputs in Azure Logic Apps

articles/logic-apps/create-replication-tasks-azure-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 02/22/2022
8+
ms.date: 08/20/2022
99
ms.custom: ignite-fall-2021
1010
---
1111

articles/logic-apps/handle-long-running-stored-procedures-sql-connector.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: camerost, azla
77
ms.topic: how-to
8-
ms.date: 10/27/2020
8+
ms.date: 08/20/2022
99
---
1010

1111
# Handle stored procedure timeouts in the SQL connector for Azure Logic Apps
1212

13+
[!INCLUDE [logic-apps-sku-consumption](../../includes/logic-apps-sku-consumption.md)]
14+
1315
When your logic app works with result sets so large that the [SQL connector](../connectors/connectors-create-api-sqlazure.md) doesn't return all the results at the same time, or if you want more control over the size and structure for your result sets, you can create a [stored procedure](/sql/relational-databases/stored-procedures/stored-procedures-database-engine) that organizes the results the way that you want. The SQL connector provides many backend features that you can access by using [Azure Logic Apps](../logic-apps/logic-apps-overview.md) so that you can more easily automate business tasks that work with SQL database tables.
1416

1517
For example, when getting or inserting multiple rows, your logic app can iterate through these rows by using an [**Until** loop](../logic-apps/logic-apps-control-flow-loops.md#until-loop) within these [limits](../logic-apps/logic-apps-limits-and-config.md). However, when your logic app has to work with thousands or millions of rows, you want to minimize the costs resulting from calls to the database. For more information, see [Handle bulk data using the SQL connector](../connectors/connectors-create-api-sqlazure.md#handle-bulk-data).

articles/logic-apps/ise-manage-integration-service-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 10/25/2020
8+
ms.date: 08/20/2022
99
---
1010

1111
# Manage your integration service environment (ISE) in Azure Logic Apps

articles/logic-apps/logic-apps-azure-resource-manager-templates-overview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: conceptual
8-
ms.date: 12/08/2021
8+
ms.date: 08/20/2022
99
---
1010

1111
# Overview: Automate deployment for Azure Logic Apps by using Azure Resource Manager templates
1212

13+
[!INCLUDE [logic-apps-sku-consumption](../../includes/logic-apps-sku-consumption.md)]
14+
1315
When you're ready to automate creating and deploying your logic app, you can expand your logic app's underlying workflow definition into an [Azure Resource Manager template](../azure-resource-manager/management/overview.md). This template defines the infrastructure, resources, parameters, and other information for provisioning and deploying your logic app. By defining parameters for values that vary at deployment, also known as *parameterizing*, you can repeatedly and consistently deploy logic apps based on different deployment needs.
1416

1517
For example, if you deploy to environments for development, test, and production, you likely use different connection strings for each environment. You can declare template parameters that accept different connection strings and then store those strings in a separate [parameters file](../azure-resource-manager/templates/parameter-files.md). That way, you can change those values without having to update and redeploy the template. For scenarios where you have parameter values that are sensitive or must be secured, such as passwords and secrets, you can store those values in [Azure Key Vault](../azure-resource-manager/templates/key-vault-parameter.md) and have your parameters file retrieve those values. However, in these scenarios, you'd redeploy to retrieve the current values.

articles/logic-apps/logic-apps-batch-process-send-receive-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: divyaswarnkar
77
ms.author: divswa
88
ms.reviewer: estfan, azla
99
ms.topic: how-to
10-
ms.date: 07/31/2020
10+
ms.date: 08/20/2022
1111
---
1212

1313
# Send, receive, and batch process messages in Azure Logic Apps

articles/logic-apps/logic-apps-create-azure-resource-manager-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 07/20/2021
8+
ms.date: 08/20/2022
99
---
1010

1111
# Create Azure Resource Manager templates to automate Consumption logic app deployment for Azure Logic Apps

0 commit comments

Comments
 (0)