Skip to content

Commit 24430f6

Browse files
authored
Merge pull request #238858 from ecfan/designer-preview
Azure Logic Apps: Standard designer updates for GA
2 parents ec16c5b + 55968f0 commit 24430f6

File tree

81 files changed

+118
-335
lines changed

Some content is hidden

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

81 files changed

+118
-335
lines changed

articles/logic-apps/create-single-tenant-workflows-azure-portal.md

Lines changed: 8 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Create example Standard logic app workflow in the Azure portal
2+
title: Create example Standard logic app workflow in Azure portal
33
description: Create your first example Standard logic app workflow that runs in single-tenant Azure Logic Apps using the Azure portal.
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 04/04/2023
8+
ms.date: 05/23/2023
99
ms.custom: ignite-fall-2021
1010

1111
# Customer intent: As a developer, I want to create my first example Standard logic app workflow that runs in single-tenant Azure Logic Apps using the Azure portal.
@@ -15,7 +15,7 @@ ms.custom: ignite-fall-2021
1515

1616
[!INCLUDE [logic-apps-sku-standard](../../includes/logic-apps-sku-standard.md)]
1717

18-
This guide shows how to create an example automated workflow that waits for an inbound web request and then sends a message to an email account. More specifically, you'll create a [Standard logic app resource](logic-apps-overview.md#resource-environment-differences), which can include multiple [stateful and stateless workflows](single-tenant-overview-compare.md#stateful-stateless) that run in single-tenant Azure Logic Apps.
18+
This how-to guide shows how to create an example automated workflow that waits for an inbound web request and then sends a message to an email account. More specifically, you'll create a [Standard logic app resource](logic-apps-overview.md#resource-environment-differences), which can include multiple [stateful and stateless workflows](single-tenant-overview-compare.md#stateful-stateless) that run in single-tenant Azure Logic Apps.
1919

2020
> [!NOTE]
2121
>
@@ -193,35 +193,13 @@ So now you'll add a trigger that starts your workflow.
193193

194194
This example workflow starts with the [built-in Request trigger](../connectors/connectors-native-reqres.md) named **When an HTTP request is received**. This trigger creates an endpoint that other services or logic app workflows can call and waits for those inbound calls or requests to arrive. Built-in operations run natively and directly within the Azure Logic Apps runtime.
195195

196-
### [Standard](#tab/standard)
197-
198-
1. On the workflow designer, make sure that your blank workflow is open and that the **Choose an operation** prompt is selected on the designer surface.
199-
200-
1. By using **request** as the search term, [follow these steps to add the built-in Request trigger named **When an HTTP request is received**](create-workflow-with-trigger-or-action.md?tabs=standard#add-trigger) to your workflow.
201-
202-
![Screenshot showing pane named Add a trigger with selected trigger named When a HTTP request is received.](./media/create-single-tenant-workflows-azure-portal/find-request-trigger.png)
203-
204-
When the trigger appears on the designer, the trigger's information pane opens to show the trigger's properties, settings, and other actions.
205-
206-
![Screenshot showing the trigger information pane.](./media/create-single-tenant-workflows-azure-portal/request-trigger-added-to-designer.png)
207-
208-
> [!NOTE]
209-
>
210-
> If the information pane doesn't appear, makes sure that the trigger is selected on the designer.
211-
212-
1. Save your workflow. On the designer toolbar, select **Save**.
213-
214-
### [Standard (Preview)](#tab/standard-preview)
215-
216196
1. On the workflow designer, make sure that your blank workflow is open and that the **Add a trigger** prompt is selected on the designer surface.
217197

218-
1. By using **request** as the search term, [follow these steps to add the built-in Request trigger named **When an HTTP request is received**](create-workflow-with-trigger-or-action.md?tabs=standard-preview#add-trigger) to your workflow.
219-
220-
![Screenshot showing preview picker with selected trigger named When a HTTP request is received.](./media/create-single-tenant-workflows-azure-portal/find-request-trigger-preview.png)
198+
1. By using **request** as the search term, [follow these steps to add the built-in Request trigger named **When an HTTP request is received**](create-workflow-with-trigger-or-action.md?tabs=standard#add-trigger) to your workflow.
221199

222200
When the trigger appears on the designer, the trigger's information pane opens to show the trigger's properties, settings, and other actions.
223201

224-
![Screenshot showing the preview workflow designer and trigger information pane.](./media/create-single-tenant-workflows-azure-portal/request-trigger-added-to-designer-preview.png)
202+
![Screenshot showing the workflow designer and trigger information pane.](./media/create-single-tenant-workflows-azure-portal/request-trigger-added-to-designer.png)
225203

226204
1. Save your workflow. On the designer toolbar, select **Save**.
227205

@@ -233,15 +211,13 @@ When you save a workflow for the first time, and that workflow starts with a Req
233211

234212
This example workflow continues with the [Office 365 Outlook managed connector action](../connectors/connectors-create-api-office365-outlook.md) named **Send an email**. Managed connector operations run in Azure versus natively and directly on the Azure Logic Apps runtime.
235213

236-
### [Standard](#tab/standard)
237-
238214
1. On the designer, under the trigger that you added, select the plus sign (**+**) > **Add an action**.
239215

240-
The **Choose an operation** prompt appears on the designer, and the **Add an action** pane opens so that you can select the next action.
216+
The **Browse operations** pane opens so that you can select the next action.
241217

242-
1. By using **office 365 send email** as the search term, [follow these steps to add the Office 365 Outlook action that's named **Send an email (V2)**](create-workflow-with-trigger-or-action.md?tabs=standard#add-action) to your workflow.
218+
1. By using **office send an email** as the search term, [follow these steps to add the Office 365 Outlook action that's named **Send an email (V2)**](create-workflow-with-trigger-or-action.md?tabs=standard#add-action) to your workflow.
243219

244-
![Screenshot showing the designer, the pane named Add an action, and the selected Office 365 Outlook named Send an email.](./media/create-single-tenant-workflows-azure-portal/find-send-email-action.png)
220+
![Screenshot showing the designer, the picker pane, and the selected Office 365 Outlook named Send an email.](./media/create-single-tenant-workflows-azure-portal/find-send-email-action.png)
245221

246222
1. In the action's information pane, on the **Create Connection** tab, select **Sign in** so that you can create a connection to your email account.
247223

@@ -276,53 +252,6 @@ This example workflow continues with the [Office 365 Outlook managed connector a
276252
277253
1. Save your work. On the designer toolbar, select **Save**.
278254

279-
1. If your environment has strict network requirements or firewalls that limit traffic, you have to set up permissions for any trigger or action connections that exist in your workflow. To find the fully qualified domain names, review [Find domain names for firewall access](#firewall-setup).
280-
281-
Otherwise, to test your workflow, [manually trigger a run](#trigger-workflow).
282-
283-
### [Standard (Preview)](#tab/standard-preview)
284-
285-
1. On the designer, under the trigger that you added, select the plus sign (**+**) > **Add an action**.
286-
287-
The **Browse operations** pane opens so that you can select the next action.
288-
289-
1. By using **office send an email** as the search term, [follow these steps to add the Office 365 Outlook action that's named **Send an email (V2)**](create-workflow-with-trigger-or-action.md?tabs=standard-preview#add-action) to your workflow.
290-
291-
![Screenshot showing the preview designer, the picker pane, and the selected Office 365 Outlook named Send an email.](./media/create-single-tenant-workflows-azure-portal/find-send-email-action-preview.png)
292-
293-
1. In the action's information pane, on the **Create Connection** tab, select **Sign in** so that you can create a connection to your email account.
294-
295-
![Screenshot showing the preview designer, the pane named Send an email (V2) with Sign in button.](./media/create-single-tenant-workflows-azure-portal/send-email-action-sign-in-preview.png)
296-
297-
1. When you're prompted for access to your email account, sign in with your account credentials.
298-
299-
> [!NOTE]
300-
> If you get the error message, **"Failed with error: 'The browser is closed.'. Please sign in again"**,
301-
> check whether your browser blocks third-party cookies. If these cookies are blocked,
302-
> try adding **https://portal.azure.com** to the list of sites that can use cookies.
303-
> If you're using incognito mode, make sure that third-party cookies aren't blocked while working in that mode.
304-
>
305-
> If necessary, reload the page, open your workflow, add the email action again, and try creating the connection.
306-
307-
After Azure creates the connection, the **Send an email** action appears on the designer and is selected by default. If the action isn't selected, select the action so that its information pane is also open.
308-
309-
1. In the action information pane, on the **Parameters** tab, provide the required information for the action, for example:
310-
311-
![Screenshot that shows the designer and the "Send an email" information pane with the "Parameters" tab selected.](./media/create-single-tenant-workflows-azure-portal/send-email-action-details-preview.png)
312-
313-
| Property | Required | Value | Description |
314-
|----------|----------|-------|-------------|
315-
| **To** | Yes | <*your-email-address*> | The email recipient, which can be your email address for test purposes. This example uses the fictitious email, **[email protected]**. |
316-
| **Subject** | Yes | **An email from your example workflow** | The email subject |
317-
| **Body** | Yes | **Hello from your example workflow!** | The email body content |
318-
319-
> [!NOTE]
320-
> When making any changes in the information pane on the **Settings**, **Static Result**, or **Run After** tabs,
321-
> make sure that you select **Done** to commit those changes before you switch tabs or change focus to the designer.
322-
> Otherwise, the designer won't keep your changes.
323-
324-
1. Save your work. On the designer toolbar, select **Save**.
325-
326255
1. If your environment has strict network requirements or firewalls that limit traffic, you have to set up permissions for any trigger or action connections that exist in your workflow. To find the fully qualified domain names, review [Find domain names for firewall access](#firewall-setup).
327256

328257
Otherwise, to test your workflow, [manually trigger a run](#trigger-workflow).

0 commit comments

Comments
 (0)