Skip to content

Commit d082aca

Browse files
committed
Add SAMI
1 parent 56462e2 commit d082aca

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

articles/data-factory/connector-rest.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: data-factory
77
ms.subservice: data-movement
88
ms.custom: synapse
99
ms.topic: conceptual
10-
ms.date: 08/30/2022
10+
ms.date: 09/14/2022
1111
ms.author: makromer
1212
---
1313

@@ -132,6 +132,34 @@ Set the **authenticationType** property to **Basic**. In addition to the generic
132132
}
133133
```
134134

135+
### <a name="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+
135163
### Use Service Principal authentication
136164

137165
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

Comments
 (0)