You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/azure/logic-apps-and-custom-connectors/6-make-your-custom-connector-available-to-the-entire-organization.yml
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.
7
7
ms.date: 06/03/2025
8
8
author: ecfan
9
9
ms.author: estfan
@@ -19,22 +19,22 @@ quiz:
19
19
choices:
20
20
- content: "Yes, you can apply for certification immediately."
21
21
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."
23
23
- content: "Yes, you can apply for certification after a single modification."
24
24
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."
27
27
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."
29
29
- 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?"
30
30
choices:
31
31
- content: "Yes, you can apply for certification immediately."
32
32
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."
34
34
- content: "Yes, you can apply for certification after a single modification."
35
35
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."
38
38
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."
Copy file name to clipboardExpand all lines: learn-pr/azure/logic-apps-and-custom-connectors/includes/2-connectors-for-azure-logic-apps.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Azure Logic Apps offers hundreds of connectors, which fall into the following ma
29
29
| Connector group | Description |
30
30
|-----------------|-------------|
31
31
|**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. |
Copy file name to clipboardExpand all lines: learn-pr/azure/logic-apps-and-custom-connectors/includes/4-access-an-api-with-a-logic-apps-custom-connector.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ The Postman app requires you to provide the request URL and any necessary authen
16
16
17
17
### OpenAPI definition
18
18
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:
20
20
21
21
1. In the **Startup.cs** file, add a `using` statement for Swashbuckle:
0 commit comments