Skip to content

Commit 12bca1b

Browse files
authored
Merge pull request #208625 from ecfan/freshness-review
Azure Logic Apps Freshness review pass
2 parents 52c119d + 9c8fef2 commit 12bca1b

9 files changed

+77
-81
lines changed

articles/logic-apps/add-artifacts-integration-service-environment-ise.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/28/2021
8+
ms.date: 08/20/2022
99
---
1010

1111
# Add resources to your integration service environment (ISE) in Azure Logic Apps

articles/logic-apps/create-integration-service-environment-rest-api.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: rarayudu, azla
77
ms.topic: how-to
8-
ms.date: 02/03/2021
8+
ms.date: 08/20/2022
99
---
1010

1111
# Create an integration service environment (ISE) by using the Logic Apps REST API

articles/logic-apps/customer-managed-keys-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: mijos, rarayudu, azla
77
ms.topic: how-to
8-
ms.date: 01/20/2021
8+
ms.date: 08/20/2022
99
---
1010

1111
# Set up customer-managed keys to encrypt data at rest for integration service environments (ISEs) in Azure Logic Apps

articles/logic-apps/logic-apps-author-definitions.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,40 +5,40 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 01/01/2018
8+
ms.date: 08/21/2022
99
---
1010

1111
# Create, edit, or extend JSON for logic app workflow definitions in Azure Logic Apps
1212

1313
When you create enterprise integration
1414
solutions with automated workflows in
1515
[Azure Logic Apps](../logic-apps/logic-apps-overview.md),
16-
the underlying logic app definitions use simple
16+
the underlying workflow definitions use simple
1717
and declarative JavaScript Object Notation (JSON)
1818
along with the [Workflow Definition Language (WDL) schema](../logic-apps/logic-apps-workflow-definition-language.md)
1919
for their description and validation. These formats
20-
make logic app definitions easier to read and
20+
make workflow definitions easier to read and
2121
understand without knowing much about code.
22-
When you want to automate creating and deploying logic apps,
23-
you can include logic app definitions as
22+
When you want to automate creating and deploying logic app resources,
23+
you can include workflow definitions as
2424
[Azure resources](../azure-resource-manager/management/overview.md)
2525
inside [Azure Resource Manager templates](../azure-resource-manager/templates/overview.md).
2626
To create, manage, and deploy logic apps, you can then use
2727
[Azure PowerShell](/powershell/module/az.logicapp),
2828
[Azure CLI](../azure-resource-manager/templates/deploy-cli.md),
2929
or the [Azure Logic Apps REST APIs](/rest/api/logic/).
3030

31-
To work with logic app definitions in JSON,
31+
To work with workflow definitions in JSON,
3232
open the Code View editor when working
3333
in the Azure portal or in Visual Studio,
3434
or copy the definition into any editor that you want.
35-
If you're new to logic apps, review
36-
[how to create your first logic app](../logic-apps/quickstart-create-first-logic-app-workflow.md).
35+
If you're new to Azure Logic Apps, review
36+
[how to create your first logic app workflow](../logic-apps/quickstart-create-first-logic-app-workflow.md).
3737

3838
> [!NOTE]
3939
> Some Azure Logic Apps capabilities, such as defining
40-
> parameters and multiple triggers in logic app definitions,
41-
> are available only in JSON, not the Logic Apps Designer.
40+
> parameters and multiple triggers in workflow definitions,
41+
> are available only in JSON, not the workflow designer.
4242
> So for these tasks, you must work in Code View or another editor.
4343
4444
## Edit JSON - Azure portal
@@ -54,11 +54,11 @@ and then from the results, select your logic app.
5454
select **Logic App Code View**.
5555

5656
The Code View editor opens and shows
57-
your logic app definition in JSON format.
57+
your workflow definition in JSON format.
5858

5959
## Edit JSON - Visual Studio
6060

61-
Before you can work on your logic app definition
61+
Before you can work on your workflow definition
6262
in Visual Studio, make sure that you've
6363
[installed the required tools](../logic-apps/quickstart-create-logic-apps-with-visual-studio.md#prerequisites).
6464
To create a logic app with Visual Studio, review
@@ -72,26 +72,26 @@ or as Azure Resource Manager projects from Visual Studio.
7272
or [Azure Resource Group](../azure-resource-manager/management/overview.md)
7373
project, that contains your logic app.
7474

75-
2. Find and open your logic app's definition,
75+
2. Find and open your workflow definition,
7676
which by default, appears in an
7777
[Resource Manager template](../azure-resource-manager/templates/overview.md),
7878
named **LogicApp.json**.
7979
You can use and customize this template for
8080
deployment to different environments.
8181

8282
3. Open the shortcut menu for your
83-
logic app definition and template.
83+
workflow definition and template.
8484
Select **Open With Logic App Designer**.
8585

8686
![Open logic app in a Visual Studio solution](./media/logic-apps-author-definitions/open-logic-app-designer.png)
8787

8888
> [!TIP]
8989
> If you don't have this command in Visual Studio 2019, check that you have the latest updates for Visual Studio.
9090
91-
4. At the bottom of the designer, choose **Code View**.
91+
4. At the bottom of the workflow designer, choose **Code View**.
9292

9393
The Code View editor opens and shows
94-
your logic app definition in JSON format.
94+
your workflow definition in JSON format.
9595

9696
5. To return to designer view,
9797
at the bottom of the Code View editor,
@@ -117,12 +117,12 @@ Follow these general steps to *parameterize*, or define and use parameters for,
117117

118118
## Process strings with functions
119119

120-
Logic Apps has various functions for working with strings.
120+
Azure Logic Apps has various functions for working with strings.
121121
For example, suppose you want to pass a company name from an order to another system.
122122
However, you're not sure about proper handling for character encoding.
123123
You could perform base64 encoding on this string, but to avoid escapes in the URL,
124124
you can replace several characters instead. Also, you only need a substring for
125-
the company name because the first five characters are not used.
125+
the company name because the first five characters aren't used.
126126

127127
``` json
128128
{

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ title: Batch process messages as a group
33
description: Send and receive messages in groups between your workflows by using batch processing in Azure Logic Apps.
44
services: logic-apps
55
ms.suite: integration
6-
author: divyaswarnkar
7-
ms.author: divswa
86
ms.reviewer: estfan, azla
97
ms.topic: how-to
10-
ms.date: 08/20/2022
8+
ms.date: 08/21/2022
119
---
1210

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

0 commit comments

Comments
 (0)