Skip to content

Commit 621e1b5

Browse files
authored
Merge pull request #210714 from ecfan/sb
Azure Logic Apps: Service Bus - Managed identity support at messaging entity level
2 parents bc82ec8 + 3099fc4 commit 621e1b5

File tree

37 files changed

+476
-136
lines changed

37 files changed

+476
-136
lines changed

articles/connectors/connectors-create-api-ftp.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The FTP connector has different versions, based on [logic app type and host envi
3333
|------------------------|-------------|-------------------|
3434
| **Consumption** | Multi-tenant Azure Logic Apps | Managed connector (Standard class). For more information, review the following documentation: <br><br>- [FTP managed connector reference](/connectors/ftp) <br>- [Managed connectors in Azure Logic Apps](managed.md) |
3535
| **Consumption** | Integration service environment (ISE) | Managed connector (Standard class) and ISE version, which has different message limits than the Standard class. For more information, review the following documentation: <br><br>- [FTP managed connector reference](/connectors/ftp) <br>- [ISE message limits](../logic-apps/logic-apps-limits-and-config.md#message-size-limits) <br>- [Managed connectors in Azure Logic Apps](managed.md) |
36-
| **Standard** | Single-tenant Azure Logic Apps and App Service Environment v3 (Windows plans only) | Managed connector (Standard class) and built-in connector, which is [service provider based](../logic-apps/custom-connector-overview.md#service-provider-interface-implementation). The built-in connector can directly access Azure virtual networks with a connection string. For more information, review the following documentation: <br><br>- [FTP managed connector reference](/connectors/ftp) <br>- [FTP built-in connector operations](#built-in-operations) section later in this article <br>- [Managed connectors in Azure Logic Apps](managed.md) <br>- [Built-in connectors in Azure Logic Apps](built-in.md) |
36+
| **Standard** | Single-tenant Azure Logic Apps and App Service Environment v3 (Windows plans only) | Managed connector (Azure-hosted) and built-in connector, which is [service provider based](../logic-apps/custom-connector-overview.md#service-provider-interface-implementation). The built-in connector can directly access Azure virtual networks with a connection string. For more information, review the following documentation: <br><br>- [FTP managed connector reference](/connectors/ftp) <br>- [FTP built-in connector operations](#built-in-operations) section later in this article <br>- [Managed connectors in Azure Logic Apps](managed.md) <br>- [Built-in connectors in Azure Logic Apps](built-in.md) |
3737
||||
3838

3939
## Limitations
@@ -90,9 +90,9 @@ The following steps use the Azure portal, but with the appropriate Azure Logic A
9090

9191
1. In the [Azure portal](https://portal.azure.com), and open your blank logic app workflow in the designer.
9292

93-
1. On the designer, under the search box, select **All**.
93+
1. On the designer, under the search box, select **Standard**. In the search box, enter **ftp**.
9494

95-
1. In the search box, enter **ftp**. From the triggers list, select the trigger named **When a filed is added or modified (properties only)**.
95+
1. From the triggers list, select the trigger named **When a filed is added or modified (properties only)**.
9696

9797
![Screenshot shows Azure portal, Consumption workflow designer, and FTP trigger selected.](./media/connectors-create-api-ftp/ftp-select-trigger-consumption.png)
9898

@@ -229,7 +229,7 @@ Before you can use an FTP action, your workflow must already start with a trigge
229229

230230
1. On the designer, under the trigger or any other actions, select **New step**.
231231

232-
1. Under the **Choose an operation** search box, select **All**.
232+
1. Under the **Choose an operation** search box, select **Standard**.
233233

234234
1. In the search box, enter **ftp get file metadata**.
235235

@@ -247,7 +247,7 @@ Before you can use an FTP action, your workflow must already start with a trigge
247247
![Screenshot shows Consumption workflow designer and FTP connection profile for an action.](./media/connectors-create-api-ftp/ftp-action-connection-consumption.png)
248248

249249
1. After the **Get file metadata** action information box appears, click inside the **File** box so that the dynamic content list opens.
250-
250+
251251
You can now select outputs from the preceding trigger.
252252

253253
1. In the dynamic content list, under **When a file is added or modified**, select **List of Files Id**.
@@ -258,7 +258,7 @@ Before you can use an FTP action, your workflow must already start with a trigge
258258

259259
1. On the designer, under the **Get file metadata** action, select **New step**.
260260

261-
1. Under the **Choose an operation** search box, select **All**.
261+
1. Under the **Choose an operation** search box, select **Standard**.
262262

263263
1. In the search box, enter **ftp get file content**.
264264

@@ -278,17 +278,17 @@ Before you can use an FTP action, your workflow must already start with a trigge
278278

279279
![Screenshot shows Consumption workflow designer, "Get file content" action, and "File" property with "Id" entered.](./media/connectors-create-api-ftp/ftp-get-file-content-id-entered-consumption.png)
280280

281-
1. When you're done, save your logic app workflow.
281+
1. When you're done, save your workflow. On the designer toolbar, select **Save**.
282282

283283
### [Standard](#tab/standard)
284284

285-
The steps to add and use an FTP action differ based on whether your workflow uses an "Azure" managed connector trigger or a built-in connector trigger.
285+
The steps to add and use an FTP action differ based on whether your workflow uses the built-in connector or the managed, Azure-hosted connector.
286286

287-
* [**Workflows with a built-in trigger**](#built-in-trigger-workflows): Describes the steps for workflows that start with a built-in trigger.
287+
* [**Built-in trigger**](#built-in-trigger-workflows): Describes the steps to add a built-in action.
288288

289289
If you used the FTP built-in trigger, and you want the content from a newly added or updated file, you can use a **For each** loop to iterate through the array that's returned by the trigger. You can then use just the **Get file content** action without any other intermediary actions. For more information about FTP built-in connector operations, review [FTP built-in connector operations](#ftp-built-in-connector-operations) later in this article.
290290

291-
* [**Workflows with a managed trigger**](#managed-trigger-workflows): Describes the steps for workflows that start with a managed trigger.
291+
* [**Managed trigger**](#managed-trigger-workflows): Describes the steps to add a managed action.
292292

293293
If you used the FTP managed connector trigger, and want the content from a newly added or modified file, you can use a **For each** loop to iterate through the array that's returned by the trigger. You then have to use intermediary actions such as the FTP action named **Get file metadata** before you use the **Get file content** action.
294294

@@ -327,7 +327,9 @@ The steps to add and use an FTP action differ based on whether your workflow use
327327

328328
![Screenshot shows Standard workflow designer and "Get file content" action complete.](./media/connectors-create-api-ftp/ftp-action-get-file-content-complete-built-in-standard.png)
329329

330-
1. Add any other actions that your workflow needs. When you're done, save your logic app workflow.
330+
1. Add any other actions that your workflow needs.
331+
332+
1. When you're done, save your workflow. On the designer toolbar, select **Save**.
331333

332334
<a name="managed-trigger-workflows"></a>
333335

@@ -384,7 +386,9 @@ The steps to add and use an FTP action differ based on whether your workflow use
384386

385387
![Screenshot shows Standard workflow designer, "Get file content" action, and "File" property set to "Id" action output.](./media/connectors-create-api-ftp/ftp-get-file-content-complete-azure-standard.png)
386388

387-
1. Add any other actions that your workflow needs. When you're done, save your logic app workflow.
389+
1. Add any other actions that your workflow needs.
390+
391+
1. When you're done, save your workflow. On the designer toolbar, select **Save**.
388392

389393
---
390394

@@ -398,7 +402,7 @@ To check that your workflow returns the content that you expect, add another act
398402

399403
1. On the designer, under the **Get file content** action, select **New step**.
400404

401-
1. Under the **Choose an operation** search box, select **All**.
405+
1. Under the **Choose an operation** search box, select **Standard**.
402406

403407
1. In the search box, enter **office 365 outlook send an email**. From the actions list, select the Office 365 Outlook action named **Send an email**.
404408

0 commit comments

Comments
 (0)