Skip to content

Commit 57ceac5

Browse files
committed
Line edits3
1 parent 2f547b2 commit 57ceac5

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

learn-pr/azure/logic-apps-and-custom-connectors/6-make-your-custom-connector-available-to-the-entire-organization.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uid: learn.azure.logic-apps-and-custom-connectors.6-make-your-custom-connector-a
33
title: Share a custom connector
44
metadata:
55
title: Share a custom connector
6-
description: In this unit, you will learn how to publish your custom connector, both inside your organization and to the wider community.
6+
description: In this unit, you'll learn how to publish your custom connector, both inside your organization and to the wider community.
77
ms.date: 06/03/2025
88
author: ecfan
99
ms.author: estfan
@@ -19,22 +19,22 @@ quiz:
1919
choices:
2020
- content: "Yes, you can apply for certification immediately."
2121
isCorrect: false
22-
explanation: "This connector is not eligible for certification because you do not own the underlying service."
22+
explanation: "This connector isn't eligible for certification because you don't own the underlying service."
2323
- content: "Yes, you can apply for certification after a single modification."
2424
isCorrect: false
25-
explanation: "This connector is not eligible for certification because you do not own the underlying service."
26-
- content: "No, you cannot apply for certification."
25+
explanation: "This connector isn't eligible for certification because you don't own the underlying service."
26+
- content: "No, you can't apply for certification."
2727
isCorrect: true
28-
explanation: "This connector is not eligible for certification because you do not own the underlying service."
28+
explanation: "This connector isn't eligible for certification because you don't own the underlying service."
2929
- content: "Your company has a connector that uses client certificates for authentication and provides access to your own REST API, which has typical availability of 95%. Is your connector eligible for certification?"
3030
choices:
3131
- content: "Yes, you can apply for certification immediately."
3232
isCorrect: false
33-
explanation: "Modify the API to use OAuth2, an API key, or basic authentication. Client certificate authentication is not supported."
33+
explanation: "Modify the API to use OAuth2, an API key, or basic authentication. Client certificate authentication isn't supported."
3434
- content: "Yes, you can apply for certification after a single modification."
3535
isCorrect: true
36-
explanation: "Modify the API to use OAuth2, an API key, or basic authentication. Client certificate authentication is not supported."
37-
- content: "No, you cannot apply for certification."
36+
explanation: "Modify the API to use OAuth2, an API key, or basic authentication. Client certificate authentication isn't supported."
37+
- content: "No, you can't apply for certification."
3838
isCorrect: false
39-
explanation: "Modify the API to use OAuth2, an API key, or basic authentication. Client certificate authentication is not supported."
39+
explanation: "Modify the API to use OAuth2, an API key, or basic authentication. Client certificate authentication isn't supported."
4040

learn-pr/azure/logic-apps-and-custom-connectors/includes/2-connectors-for-azure-logic-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Azure Logic Apps offers hundreds of connectors, which fall into the following ma
2929
| Connector group | Description |
3030
|-----------------|-------------|
3131
| **Built-in** | Triggers and actions that natively run on the Azure Logic Apps runtime. Some integrate directly with specific Azure services without having to create a connection; for example, Azure Functions. |
32-
| **Managed** | Triggers and actions that call other services and systems. These operations usually require that you create a connection first. These connectors are hosted and run in Azure and are managed by Microsoft. Managed connectors can fall across the following subgroups: <br><br>- **Standard connectors**: Triggers and actions that integrate with Azure Storage, Microsoft 365, Microsoft Dynamics, Microsoft Power BI, and more. <br><br>- **Enterprise connectors**: Triggers and actions that can access enterprise systems such as SAP, IBM Message Queue, and others for an extra cost. <br><br>- **On-premises connectors**: Triggers and actions that integration with on-premises SQL Server, SharePoint Server, Oracle, file shares, and more. <br><br>- **Integration account connectors**: Triggers and actions that transform and validate XML, encode and decode flat files, and process business-to-business (B2B) messages with AS2, EDIFACT, and X12 protocols. |
32+
| **Managed** | Triggers and actions that call other services and systems. These operations usually require that you create a connection first. Microsoft hosts and runs these connectors in Azure. Managed connectors can fall across the following subgroups: <br><br>- **Standard connectors**: Triggers and actions that integrate with Azure Storage, Microsoft 365, Microsoft Dynamics, Microsoft Power BI, and more. <br><br>- **Enterprise connectors**: Triggers and actions that can access enterprise systems such as SAP, IBM Message Queue, and others for an extra cost. <br><br>- **On-premises connectors**: Triggers and actions that integration with on-premises SQL Server, SharePoint Server, Oracle, file shares, and more. <br><br>- **Integration account connectors**: Triggers and actions that transform and validate XML, encode and decode flat files, and process business-to-business (B2B) messages with AS2, EDIFACT, and X12 protocols. |
3333
|||
3434

3535
### Triggers in Azure Logic Apps

learn-pr/azure/logic-apps-and-custom-connectors/includes/4-access-an-api-with-a-logic-apps-custom-connector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The Postman app requires you to provide the request URL and any necessary authen
1616

1717
### OpenAPI definition
1818

19-
An OpenAPI definition file is a JSON file that lists the API's methods, parameters, and outputs. In .NET, you can create an OpenAPI file by adding the **Swashbuckle** NuGet package to your API's project. Then, add the following code below to the Web API's source code:
19+
An OpenAPI definition file is a JSON file that lists the API's methods, parameters, and outputs. In .NET, you can create an OpenAPI file by adding the **Swashbuckle** NuGet package to your API's project. Then, add the following code to the Web API's source code:
2020

2121
1. In the **Startup.cs** file, add a `using` statement for Swashbuckle:
2222

0 commit comments

Comments
 (0)