Skip to content

Commit 0e27293

Browse files
authored
Merge pull request #91369 from ecfan/system-assigned
Updates and refactoring for managed identities with Azure Functions, API Management, and App Services
2 parents 34eef9e + 92a085a commit 0e27293

35 files changed

+724
-531
lines changed

articles/connectors/connectors-native-http-swagger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This built-in trigger sends an HTTP request to a URL for a Swagger file that des
6666

6767
1. To add other available parameters, open the **Add new parameter** list, and select the parameters that you want.
6868

69-
For more information about authentication types available for HTTP + Swagger, see [Authenticate HTTP triggers and actions](../logic-apps/logic-apps-workflow-actions-triggers.md#connector-authentication).
69+
For more information about authentication types available for HTTP + Swagger, see [Add authentication to outbound calls](../logic-apps/logic-apps-securing-a-logic-app.md#add-authentication-outbound).
7070

7171
1. Continue building your logic app's workflow with actions that run when the trigger fires.
7272

@@ -106,7 +106,7 @@ This built-in action makes an HTTP request to the URL for the Swagger file that
106106

107107
1. To add other available parameters, open the **Add new parameter** list, and select the parameters that you want.
108108

109-
For more information about authentication types available for HTTP + Swagger, see [Authenticate HTTP triggers and actions](../logic-apps/logic-apps-workflow-actions-triggers.md#connector-authentication).
109+
For more information about authentication types available for HTTP + Swagger, see [Add authentication to outbound calls](../logic-apps/logic-apps-securing-a-logic-app.md#add-authentication-outbound).
110110

111111
1. When you're finished, remember to save your logic app. On the designer toolbar, select **Save**.
112112

articles/connectors/connectors-native-http.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Based the target endpoint's capability, the HTTP connector supports Transport La
3030

3131
* The URL for the target endpoint that you want to call
3232

33-
* Basic knowledge about [how to create logic apps](../logic-apps/quickstart-create-first-logic-app-workflow.md). If you're new to logic apps, review [What is Azure Logic Apps?](../logic-apps/logic-apps-overview.md)
33+
* Basic knowledge about [how to create logic apps](../logic-apps/quickstart-create-first-logic-app-workflow.md). If you're new to logic apps, review [What is Azure Logic Apps](../logic-apps/logic-apps-overview.md)?
3434

3535
* The logic app from where you want to call the target endpoint. To start with the HTTP trigger, [create a blank logic app](../logic-apps/quickstart-create-first-logic-app-workflow.md). To use the HTTP action, start your logic app with any trigger that you want. This example uses the HTTP trigger as the first step.
3636

@@ -40,23 +40,23 @@ This built-in trigger makes an HTTP call to the specified URL for an endpoint an
4040

4141
1. Sign in to the [Azure portal](https://portal.azure.com). Open your blank logic app in Logic App Designer.
4242

43-
1. On the designer, in the search box, enter "http" as your filter. From the **Triggers** list, select the **HTTP** trigger.
43+
1. Under **Choose an action**, in the search box, enter "http" as your filter. From the **Triggers** list, select the **HTTP** trigger.
4444

4545
![Select HTTP trigger](./media/connectors-native-http/select-http-trigger.png)
4646

4747
This example renames the trigger to "HTTP trigger" so that the step has a more descriptive name. Also, the example later adds an HTTP action, and both names must be unique.
4848

4949
1. Provide the values for the [HTTP trigger parameters](../logic-apps/logic-apps-workflow-actions-triggers.md##http-trigger) that you want to include in the call to the target endpoint. Set up the recurrence for how often you want the trigger to check the target endpoint.
5050

51-
![Enter HTTP trigger parameters](./media/connectors-native-http/http-trigger-parameters.png)
51+
If you select an authentication type other than **None**, the authentication settings differ based on your selection. For more information, see [Add authentication to outbound calls](../logic-apps/logic-apps-securing-a-logic-app.md#add-authentication-outbound).
5252

53-
For more information about authentication types available for HTTP, see [Authenticate HTTP triggers and actions](../logic-apps/logic-apps-workflow-actions-triggers.md#connector-authentication).
53+
![Enter HTTP trigger parameters](./media/connectors-native-http/http-trigger-parameters.png)
5454

5555
1. To add other available parameters, open the **Add new parameter** list, and select the parameters that you want.
5656

5757
1. Continue building your logic app's workflow with actions that run when the trigger fires.
5858

59-
1. When you're finished, done, remember to save your logic app. On the designer toolbar, select **Save**.
59+
1. When you're done, remember to save your logic app. On the designer toolbar, select **Save**.
6060

6161
## Add an HTTP action
6262

@@ -70,21 +70,21 @@ This built-in action makes an HTTP call to the specified URL for an endpoint and
7070

7171
To add an action between steps, move your pointer over the arrow between steps. Select the plus sign (**+**) that appears, and then select **Add an action**.
7272

73-
1. On the designer, in the search box, enter "http" as your filter. From the **Actions** list, select the **HTTP** action.
73+
1. Under **Choose an action**, in the search box, enter "http" as your filter. From the **Actions** list, select the **HTTP** action.
7474

7575
![Select HTTP action](./media/connectors-native-http/select-http-action.png)
7676

7777
This example renames the action to "HTTP action" so that the step has a more descriptive name.
7878

7979
1. Provide the values for the [HTTP action parameters](../logic-apps/logic-apps-workflow-actions-triggers.md##http-action) that you want to include in the call to the target endpoint.
8080

81-
![Enter HTTP action parameters](./media/connectors-native-http/http-action-parameters.png)
81+
If you select an authentication type other than **None**, the authentication settings differ based on your selection. For more information, see [Add authentication to outbound calls](../logic-apps/logic-apps-securing-a-logic-app.md#add-authentication-outbound).
8282

83-
For more information about authentication types available for HTTP, see [Authenticate HTTP triggers and actions](../logic-apps/logic-apps-workflow-actions-triggers.md#connector-authentication).
83+
![Enter HTTP action parameters](./media/connectors-native-http/http-action-parameters.png)
8484

8585
1. To add other available parameters, open the **Add new parameter** list, and select the parameters that you want.
8686

87-
1. When you're finished, remember to save your logic app. On the designer toolbar, select **Save**.
87+
1. When you're done, remember to save your logic app. On the designer toolbar, select **Save**.
8888

8989
## Content with multipart/form-data type
9090

articles/connectors/connectors-native-webhook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This built-in trigger registers a callback URL with the specified service and wa
7272

7373
1. To add other available parameters, open the **Add new parameter** list, and select the parameters that you want.
7474

75-
For more information about authentication types available for HTTP Webhook, see [Authenticate HTTP triggers and actions](../logic-apps/logic-apps-workflow-actions-triggers.md#connector-authentication).
75+
For more information about authentication types available for HTTP Webhook, see [Add authentication to outbound calls](../logic-apps/logic-apps-securing-a-logic-app.md#add-authentication-outbound).
7676

7777
1. Continue building your logic app's workflow with actions that run when the trigger fires.
7878

@@ -108,7 +108,7 @@ This built-in action registers a callback URL with the specified service, pauses
108108

109109
1. To add other available parameters, open the **Add new parameter** list, and select the parameters that you want.
110110

111-
For more information about authentication types available for HTTP Webhook, see [Authenticate HTTP triggers and actions](../logic-apps/logic-apps-workflow-actions-triggers.md#connector-authentication).
111+
For more information about authentication types available for HTTP Webhook, see [Add authentication to outbound calls](../logic-apps/logic-apps-securing-a-logic-app.md#add-authentication-outbound).
112112

113113
1. When you're finished, remember to save your logic app. On the designer toolbar, select **Save**.
114114

0 commit comments

Comments
 (0)