Skip to content

Commit a4cb8d0

Browse files
authored
Merge pull request #233095 from wsilveiranz/wsilveiranz-batch-action-changes
Azure Logic Apps: Doc updates for latest export tool version
2 parents ba87f4a + dd45537 commit a4cb8d0

File tree

2 files changed

+35
-24
lines changed

2 files changed

+35
-24
lines changed

articles/logic-apps/export-from-consumption-to-standard-logic-app.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,17 @@ This article provides information about the export process and shows how to expo
3636

3737
## Known issues and limitations
3838

39-
- The following logic apps and scenarios are currently ineligible for export:
40-
41-
- Logic apps that use custom connectors
42-
- Logic apps that use the Azure API Management connector
43-
4439
- The export tool doesn't export any infrastructure information, such as integration account settings.
4540

4641
- The export tool can export logic app workflows with triggers that have concurrency settings. However, single-tenant Azure Logic Apps ignores these settings.
4742

4843
- Logic apps must exist in the same region if you want to export them within the same Standard logic app project.
4944

50-
- For now, connectors deploy as their *managed* versions, which appear in the designer under the **Azure** tab. The export tool will have the capability to export connectors that have a built-in, service provider counterpart, when the latter gain parity with their Azure versions. The export tool automatically makes the conversion when Azure connector is available to export as a built-in, service provider connector.
51-
5245
- By default, connection credentials aren't cloned from source logic app workflows. Before your logic app workflows can run, you'll have to reauthenticate these connections after export.
5346

47+
- By default, if an Azure connector has a built-in connector version, the export tool automatically converts the Azure connector to the built-in connector. No option exists to opt out from this behavior.
48+
49+
5450
## Exportable operation types
5551

5652
| Operation | JSON type |
@@ -62,10 +58,18 @@ This article provides information about the export process and shows how to expo
6258

6359
- One or more logic apps to deploy to the same subscription and Azure region, for example, East US 2.
6460

65-
- Azure contributor subscription-level access to the subscription where the logic apps are currently deployed, not just resource group-level access.
61+
- Azure reader subscription-level access to the subscription where the logic apps are currently deployed.
62+
63+
- Azure contributor resource group-level access, if you select the option for **Deploy managed connectors**.
64+
6665

6766
- Review and meet the requirements for [how to set up Visual Studio Code with the Azure Logic Apps (Standard) extension](create-single-tenant-workflows-visual-studio-code.md#prerequisites).
6867

68+
> [!NOTE]
69+
>
70+
> Make sure to install version 2.0.16 or higher for the Azure Logic Apps (Standard) extension for Visual Studio Code.
71+
> Some conversion scenarios require the latest workflow designer, which is available starting with this version.
72+
6973
## Group logic apps for export
7074

7175
With the Azure Logic Apps (Standard) extension, you can combine multiple Consumption logic app workflows into a single Standard logic app project. In single-tenant Azure Logic Apps, one Standard logic app resource can have multiple workflows. With this approach, you can pre-validate your workflows so that you don't miss any dependencies when you select logic apps for export.
@@ -167,6 +171,11 @@ Some exported logic app workflows require post-export remediation steps to run o
167171

168172
If you export actions that depend on an integration account, you have to manually set up your Standard logic app with a reference link to the integration account that contains the required artifacts. For more information, review [Link integration account to a Standard logic app](logic-apps-enterprise-integration-create-integration-account.md#link-account).
169173

174+
### Batch actions and settings
175+
176+
If you export actions that use Batch actions with multiple configurations stored in an integration account, you have to manually configure your Batch actions with the correct values after export. For more information, review [Send, receive, and batch process messages in Azure Logic Apps](logic-apps-batch-process-send-receive-messages.md#create-batch-receiver).
177+
178+
170179
## Project folder structure
171180

172181
After the export process finishes, your Standard logic app project contains new folders and files alongside most others in a [typical Standard logic app project](create-single-tenant-workflows-visual-studio-code.md).

articles/logic-apps/export-from-ise-to-standard-logic-app.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,15 @@ This article provides information about the export process and shows how to expo
3737

3838
## Known issues and limitations
3939

40-
- To run the export tool, you must be on the same network as your ISE. So, if your ISE is internal, you have to run the export tool from a Visual Studio Code instance that can access your ISE through the internal network. Otherwise, you can't download the exported package or files.
41-
42-
- The following logic apps and scenarios are currently ineligible for export:
43-
44-
- Consumption workflows in multi-tenant Azure Logic Apps
45-
- Logic apps that use custom connectors
46-
- Logic apps that use the Azure API Management connector
47-
- Logic apps that use the Azure Functions connector
48-
49-
- The export tool doesn't export any infrastructure information, such as virtual network dependencies or integration account settings.
40+
- The export tool doesn't export any infrastructure information, such as integration account settings.
5041

5142
- The export tool can export logic app workflows with triggers that have concurrency settings. However, single-tenant Azure Logic Apps ignores these settings.
5243

53-
- For now, connectors with the **ISE** label deploy as their *managed* versions, which appear in the designer under the **Azure** tab. The export tool will have the capability to export **ISE** connectors as built-in, service provider connectors when the latter gain parity with their ISE versions. The export tool automatically makes the conversion when an **ISE** connector is available to export as a built-in, service provider connector.
44+
- Logic apps must exist in the same region if you want to export them within the same Standard logic app project.
45+
46+
- By default, connection credentials aren't cloned from source logic app workflows. Before your logic app workflows can run, you'll have to reauthenticate these connections after export.
5447

55-
- Currently, connection credentials aren't cloned from source logic app workflows. Before your logic app workflows can run, you'll have to reauthenticate these connections after export.
48+
- By default, if an Azure connector has a built-in connector version, the export tool automatically converts the Azure connector to the built-in connector. No option exists to opt out from this behavior.
5649

5750
## Exportable operation types
5851

@@ -63,13 +56,18 @@ This article provides information about the export process and shows how to expo
6356

6457
## Prerequisites
6558

66-
- An existing ISE with the logic app workflows that you want to export.
59+
- One or more logic apps to deploy to the same subscription and Azure region, for example, East US 2.
6760

68-
- Azure contributor subscription-level access to the ISE, not just resource group-level access.
61+
- Azure reader subscription-level access to the subscription where the logic apps are currently deployed.
6962

70-
- To include and deploy managed connections in your workflows, you'll need an existing Azure resource group for deploying these connections. This option is recommended only for non-production environments.
63+
- Azure contributor resource group-level access, if Deploy managed connectors option is selected.
7164

72-
- Review and meet the requirements for [how to set up Visual Studio Code with the Azure Logic Apps (Standard) extension](create-single-tenant-workflows-visual-studio-code.md#prerequisites).
65+
- Review and meet the requirements for [how to set up Visual Studio Code with the Azure Logic Apps (Standard) extension](create-single-tenant-workflows-visual-studio-code.md#prerequisites).
66+
67+
> [!NOTE]
68+
>
69+
> Make sure to install version 2.0.16 or higher for the Azure Logic Apps (Standard) extension for Visual Studio Code.
70+
> Some conversion scenarios require the latest workflow designer, which is available starting with this version.
7371
7472
## Group logic apps for export
7573

@@ -171,6 +169,10 @@ Some exported logic app workflows require post-export remediation steps to run o
171169

172170
If you export actions that depend on an integration account, you have to manually set up your Standard logic app with a reference link to the integration account that contains the required artifacts. For more information, review [Link integration account to a Standard logic app](logic-apps-enterprise-integration-create-integration-account.md#link-account).
173171

172+
### Batch actions and settings
173+
174+
If you export actions that use Batch actions with multiple configurations stored in an integration account, you have to manually configure your Batch actions with the correct values after export. For more information, review [Send, receive, and batch process messages in Azure Logic Apps](logic-apps-batch-process-send-receive-messages.md#create-batch-receiver).
175+
174176
## Project folder structure
175177

176178
After the export process finishes, your Standard logic app project contains new folders and files alongside most others in a [typical Standard logic app project](create-single-tenant-workflows-visual-studio-code.md).

0 commit comments

Comments
 (0)