Skip to content

Commit cd4fc5f

Browse files
committed
Update links to renamed quickstart and fix terminology for Azure Logic Apps
1 parent 5ea5a24 commit cd4fc5f

File tree

58 files changed

+238
-245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+238
-245
lines changed
-43.8 KB
Loading

articles/data-factory/tutorial-control-flow-portal.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ This tutorial uses Azure portal. You can use other mechanisms to interact with A
5353
3. Upload **input.txt** file to the container.
5454
5555
## Create email workflow endpoints
56-
To trigger sending an email from the pipeline, you use [Logic Apps](../logic-apps/logic-apps-overview.md) to define the workflow. For details on creating a Logic App workflow, see [How to create a logic app](../logic-apps/quickstart-create-first-logic-app-workflow.md).
56+
To trigger sending an email from the pipeline, you use [Azure Logic Apps](../logic-apps/logic-apps-overview.md) to define the workflow. For more information about creating a logic app workflow, see [Create an example Consumption logic app workflow](../logic-apps/quickstart-create-example-consumption-workflow.md).
5757
5858
### Success email workflow
59-
Create a Logic App workflow named `CopySuccessEmail`. Define the workflow trigger as `When an HTTP request is received`, and add an action of `Office 365 OutlookSend an email`.
59+
Create a Consumption logic app workflow named `CopySuccessEmail`. Add the Request trigger named **When an HTTP request is received**, and add the **Office 365 Outlook** action named **Send an email**. If prompted, sign in to your Office 365 Outlook account.
6060
6161
:::image type="content" source="media/tutorial-control-flow-portal/success-email-workflow.png" alt-text="Shows a screenshot of the Success email workflow.":::
6262
63-
For your request trigger, fill in the `Request Body JSON Schema` with the following JSON:
63+
For the Request trigger, fill in the **Request Body JSON Schema** box with the following JSON:
6464
6565
```json
6666
{
@@ -82,13 +82,13 @@ For your request trigger, fill in the `Request Body JSON Schema` with the follow
8282
}
8383
```
8484

85-
The Request in the Logic App Designer should look like the following image:
85+
The Request trigger in the workflow designer should look like the following image:
8686

87-
:::image type="content" source="media/tutorial-control-flow-portal/logic-app-designer-request.png" alt-text="Shows a screenshot of the Logic App designer - request.":::
87+
:::image type="content" source="media/tutorial-control-flow-portal/logic-app-designer-request.png" alt-text="Shows a screenshot of the workflow designer with Request trigger.":::
8888

89-
For the **Send Email** action, customize how you wish to format the email, utilizing the properties passed in the request Body JSON schema. Here is an example:
89+
For the **Send an email** action, customize how you wish to format the email, utilizing the properties passed in the request Body JSON schema. Here is an example:
9090

91-
:::image type="content" source="media/tutorial-control-flow-portal/send-email-action-2.png" alt-text="Shows a screenshot of the Logic App designer - send email action.":::
91+
:::image type="content" source="media/tutorial-control-flow-portal/send-email-action-2.png" alt-text="Shows a screenshot of the workflow designer with the action named Send an email.":::
9292

9393
Save the workflow. Make a note of your HTTP Post request URL for your success email workflow:
9494

@@ -98,9 +98,9 @@ https://prodxxx.eastus.logic.azure.com:443/workflows/000000/triggers/manual/path
9898
```
9999

100100
### Fail email workflow
101-
Follow the same steps to create another Logic Apps workflow of **CopyFailEmail**. In the request trigger, the `Request Body JSON schema` is the same. Change the format of your email like the `Subject` to tailor toward a failure email. Here is an example:
101+
Follow the same steps to create another logic app workflow named `CopyFailEmail`. In the Request trigger, the **Request Body JSON schema** value is the same. Change the format of your email like the `Subject` to tailor toward a failure email. Here is an example:
102102

103-
:::image type="content" source="media/tutorial-control-flow-portal/fail-email-workflow-2.png" alt-text="Shows a screenshot of the Logic App designer - fail email workflow.":::
103+
:::image type="content" source="media/tutorial-control-flow-portal/fail-email-workflow-2.png" alt-text="Shows a screenshot of the workflow designer with the fail email workflow.":::
104104

105105
Save the workflow. Make a note of your HTTP Post request URL for your failure email workflow:
106106

articles/data-factory/tutorial-control-flow.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -296,11 +296,11 @@ In your C# project, create a class named `EmailRequest`. This class defines what
296296

297297
## Create email workflow endpoints
298298

299-
To trigger sending an email, you use [Logic Apps](../logic-apps/logic-apps-overview.md) to define the workflow. For details on creating a Logic Apps workflow, see [How to create a Logic App](../logic-apps/quickstart-create-first-logic-app-workflow.md).
299+
To trigger sending an email, you use [Azure Logic Apps](../logic-apps/logic-apps-overview.md) to define the workflow. For more information, see [Create an example Consumption logic app workflow](../logic-apps/quickstart-create-example-consumption-workflow.md).
300300

301301
### Success email workflow
302302

303-
In the [Azure portal](https://portal.azure.com), create a Logic Apps workflow named *CopySuccessEmail*. Define the workflow trigger as `When an HTTP request is received`. For your request trigger, fill in the `Request Body JSON Schema` with the following JSON:
303+
In the [Azure portal](https://portal.azure.com), create a logic app workflow named `CopySuccessEmail`. Add the Request trigger named **When an HTTP request is received**. In the Request trigger, fill in the **Request Body JSON schema** box with the following JSON:
304304

305305
```json
306306
{
@@ -328,17 +328,17 @@ Your workflow looks something like the following example:
328328

329329
This JSON content aligns with the `EmailRequest` class you created in the previous section.
330330

331-
Add an action of `Office 365 Outlook – Send an email`. For the **Send an email** action, customize how you wish to format the email, using the properties passed in the request **Body** JSON schema. Here's an example:
331+
Add the **Office 365 Outlook** action named **Send an email**. For this action, customize how you wish to format the email, using the properties passed in the request **Body** JSON schema. Here's an example:
332332

333-
:::image type="content" source="media/tutorial-control-flow/customize-send-email-action.png" alt-text="Logic app designer - send email action":::
333+
:::image type="content" source="media/tutorial-control-flow/customize-send-email-action.png" alt-text="Workflow designer with the action named Send an email.":::
334334

335335
After you save the workflow, copy and save the **HTTP POST URL** value from the trigger.
336336

337337
## Fail email workflow
338338

339-
Clone **CopySuccessEmail** as another Logic Apps workflow named *CopyFailEmail*. In the request trigger, the `Request Body JSON schema` is the same. Change the format of your email like the `Subject` to tailor toward a failure email. Here is an example:
339+
Clone the `CopySuccessEmail` logic app workflow to a new workflow named `CopyFailEmail`. In the Request trigger, the **Request Body JSON schema** is the same. Change the format of your email like the `Subject` to tailor toward a failure email. Here is an example:
340340

341-
:::image type="content" source="media/tutorial-control-flow/fail-email-workflow.png" alt-text="Logic app designer - fail email workflow":::
341+
:::image type="content" source="media/tutorial-control-flow/fail-email-workflow.png" alt-text="Workflow designer and the fail email workflow.":::
342342

343343
After you save the workflow, copy and save the **HTTP POST URL** value from the trigger.
344344

articles/expressroute/how-to-custom-route-alert.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ For this logic app, you build a workflow that regularly monitors ExpressRoute ga
271271

272272
:::image type="content" source="./media/custom-route-alert-portal/logic-apps-workflow.png" alt-text="Logic Apps workflow":::
273273

274-
### 1. Create a logic app
274+
### 1. Create a logic app resource
275275

276-
In **Logic app designer**, create a logic app using the **Blank Logic App** template. For steps, see [Create your first logic app](../logic-apps/quickstart-create-first-logic-app-workflow.md).
276+
In the Azure portal, create a Consumption logic app resource and then select the **Blank Logic App** template. For more information, see [Create an example Consumption logic app workflow](../logic-apps/quickstart-create-example-consumption-workflow.md).
277277

278278
:::image type="content" source="./media/custom-route-alert-portal/blank-template.png" alt-text="Blank template":::
279279

articles/logic-apps/.openpublishing.redirection.logic-apps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@
412412
},
413413
{
414414
"source_path_from_root": "/articles/app-service-logic/app-service-logic-create-a-logic-app.md",
415-
"redirect_url": "/azure/logic-apps/quickstart-create-first-logic-app-workflow",
415+
"redirect_url": "/azure/logic-apps/quickstart-create-example-consumption-workflow",
416416
"redirect_document_id": false
417417
},
418418
{
@@ -542,7 +542,7 @@
542542
},
543543
{
544544
"source_path_from_root": "/articles/logic-apps/logic-apps-create-a-logic-app.md",
545-
"redirect_url": "/azure/logic-apps/quickstart-create-first-logic-app-workflow",
545+
"redirect_url": "/azure/logic-apps/quickstart-create-example-consumption-workflow",
546546
"redirect_document_id": true
547547
},
548548
{

articles/logic-apps/add-artifacts-integration-service-environment-ise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To develop logic apps that run in your integration service environment (ISE), fo
6666

6767
1. When you're done, select **Create**.
6868

69-
1. Continue [creating your logic app in the usual way](../logic-apps/quickstart-create-first-logic-app-workflow.md).
69+
1. Continue [creating your logic app in the usual way](../logic-apps/quickstart-create-example-consumption-workflow.md).
7070

7171
For differences in how triggers and actions work and how they're labeled when you use an ISE compared to the multi-tenant Logic Apps service, see [Isolated versus multi-tenant in the ISE overview](../logic-apps/connect-virtual-network-vnet-isolated-environment-overview.md#difference).
7272

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ To view a task's history of runs along with their statuses, inputs, outputs, and
176176

177177
![Screenshot that shows an expanded action, inputs, and outputs.](./media/create-automation-tasks-azure-resources/view-action-inputs-outputs.png)
178178

179-
To learn how you can build your own automated workflows so that you can integrate apps, data, services, and systems apart from the context of automation tasks for Azure resources, see [Quickstart: Create your first integration workflow by using Azure Logic Apps - Azure portal](quickstart-create-first-logic-app-workflow.md).
179+
To learn how you can build your own automated workflows so that you can integrate apps, data, services, and systems apart from the context of automation tasks for Azure resources, see [Quickstart: Create an example Consumption logic app workflow - Azure portal](quickstart-create-example-consumption-workflow.md).
180180

181181
<a name="edit-task"></a>
182182

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ For more information about multi-tenant and single-tenant Azure Logic Apps, revi
2424

2525
* A Consumption or Standard logic app workflow
2626

27-
If you don't have a logic app workflow yet, review [Create your first Consumption logic app workflow using the Azure portal](quickstart-create-first-logic-app-workflow.md) or [Create your first Standard logic app workflow using the Azure portal](create-single-tenant-workflows-azure-portal.md).
27+
If you don't have a logic app workflow yet, see [Create an example Consumption logic app workflow using the Azure portal](quickstart-create-example-consumption-workflow.md) or [Create an example Standard logic app workflow using the Azure portal](create-single-tenant-workflows-azure-portal.md).
2828

2929
> [!NOTE]
3030
> Currently, you can create parameters for Consumption logic app workflows only by using the Azure portal.

articles/logic-apps/export-from-microsoft-flow-logic-app-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To extend and expand your flow's capabilities, you can migrate that flow from [P
1818
> Export to Azure Logic Apps is unavailable for Power Automate flows created after August 2020. In October 2020, Power Automate
1919
> standardized new flow creation on the [OpenAPI 2.0 protocol](https://swagger.io/specification/v2/). New flows based on
2020
> this protocol are incompatible with Azure Logic Apps workflows, so exporting these flows to Azure Logic Apps was disabled.
21-
> Instead, you must manually [create a logic app workflow](quickstart-create-first-logic-app-workflow.md) for these flows.
21+
> Instead, you must manually [create a Consumption logic app workflow](quickstart-create-example-consumption-workflow.md) for these flows.
2222
2323
Not all Power Automate connectors are available in Azure Logic Apps. You can migrate only Power Automate flows that have the equivalent connectors in Azure Logic Apps. For example, the Button trigger, the Approval connector, and Notification connector are specific to Power Automate.
2424

articles/logic-apps/index.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ landingContent:
5757
linkLists:
5858
- linkListType: quickstart
5959
links:
60-
- text: Create Consumption logic app - Azure portal
61-
url: quickstart-create-first-logic-app-workflow.md
62-
- text: Create Consumption logic app - Visual Studio
60+
- text: Create Consumption logic app workflow - Azure portal
61+
url: quickstart-create-example-consumption-workflow.md
62+
- text: Create Consumption logic app workflow - Visual Studio
6363
url: quickstart-create-logic-apps-with-visual-studio.md
6464
- linkListType: get-started
6565
links:

0 commit comments

Comments
 (0)