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: articles/data-factory/connector-rest.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.service: data-factory
7
7
ms.subservice: data-movement
8
8
ms.custom: synapse
9
9
ms.topic: conceptual
10
-
ms.date: 08/30/2022
10
+
ms.date: 09/14/2022
11
11
ms.author: makromer
12
12
---
13
13
@@ -132,6 +132,34 @@ Set the **authenticationType** property to **Basic**. In addition to the generic
132
132
}
133
133
```
134
134
135
+
### <aname="managed-identity"></a> Use system-assigned managed identity authentication
136
+
137
+
Set the **authenticationType** property to **ManagedServiceIdentity**. In addition to the generic properties that are described in the preceding section, specify the following properties:
138
+
139
+
| Property | Description | Required |
140
+
|:--- |:--- |:--- |
141
+
| aadResourceId | Specify the AAD resource you are requesting for authorization, for example, `https://management.core.windows.net`.| Yes |
142
+
143
+
**Example**
144
+
145
+
```json
146
+
{
147
+
"name": "RESTLinkedService",
148
+
"properties": {
149
+
"type": "RestService",
150
+
"typeProperties": {
151
+
"url": "<REST endpoint e.g. https://www.example.com/>",
152
+
"authenticationType": "ManagedServiceIdentity",
153
+
"aadResourceId": "<AAD resource URL e.g. https://management.core.windows.net>"
154
+
},
155
+
"connectVia": {
156
+
"referenceName": "<name of Integration Runtime>",
157
+
"type": "IntegrationRuntimeReference"
158
+
}
159
+
}
160
+
}
161
+
```
162
+
135
163
### Use Service Principal authentication
136
164
137
165
Set the **authenticationType** property to **AadServicePrincipal**. In addition to the generic properties that are described in the preceding section, specify the following properties:
0 commit comments