Skip to content

Commit ae70b1f

Browse files
committed
Update ADD
1 parent 6f15179 commit ae70b1f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/data-factory/connector-rest.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For a list of data stores that are supported as sources/sinks, see [Supported da
3838
Specifically, this generic REST connector supports:
3939

4040
- Copying data from a REST endpoint by using the **GET** or **POST** methods and copying data to a REST endpoint by using the **POST**, **PUT** or **PATCH** methods.
41-
- Copying data by using one of the following authentications: **Anonymous**, **Basic**, **AAD service principal**, and **user-assigned managed identity**.
41+
- Copying data by using one of the following authentications: **Anonymous**, **Basic**, **Service principal**, and **user-assigned managed identity**.
4242
- **[Pagination](#pagination-support)** in the REST APIs.
4343
- For REST as source, copying the REST JSON response [as-is](#export-json-response-as-is) or parse it by using [schema mapping](copy-activity-schema-and-type-mapping.md#schema-mapping). Only response payload in **JSON** is supported.
4444

@@ -94,7 +94,7 @@ The following properties are supported for the REST linked service:
9494

9595
For different authentication types, see the corresponding sections for details.
9696
- [Basic authentication](#use-basic-authentication)
97-
- [AAD service principal authentication](#use-aad-service-principal-authentication)
97+
- [Service principal authentication](#use-aad-service-principal-authentication)
9898
- [OAuth2 Client Credential authentication](#use-oauth2-client-credential-authentication)
9999
- [User-assigned managed identity authentication](#use-user-assigned-managed-identity-authentication)
100100
- [Anonymous authentication](#using-authentication-headers)
@@ -132,7 +132,7 @@ Set the **authenticationType** property to **Basic**. In addition to the generic
132132
}
133133
```
134134

135-
### Use AAD service principal authentication
135+
### Use service principal authentication
136136

137137
Set the **authenticationType** property to **AadServicePrincipal**. In addition to the generic properties that are described in the preceding section, specify the following properties:
138138

@@ -141,8 +141,8 @@ Set the **authenticationType** property to **AadServicePrincipal**. In addition
141141
| servicePrincipalId | Specify the Azure Active Directory application's client ID. | Yes |
142142
| servicePrincipalKey | Specify the Azure Active Directory application's key. Mark this field as a **SecureString** to store it securely in Data Factory, or [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). | Yes |
143143
| tenant | Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. | Yes |
144-
| aadResourceId | Specify the AAD resource you are requesting for authorization, for example, `https://management.core.windows.net`.| Yes |
145-
| azureCloudType | For service principal authentication, specify the type of Azure cloud environment to which your AAD application is registered. <br/> Allowed values are **AzurePublic**, **AzureChina**, **AzureUsGovernment**, and **AzureGermany**. By default, the data factory's cloud environment is used. | No |
144+
| aadResourceId | Specify the Microsoft Azure Active Directory (Azure AD) resource you are requesting for authorization, for example, `https://management.core.windows.net`.| Yes |
145+
| azureCloudType | For service principal authentication, specify the type of Azure cloud environment to which your Azure AD application is registered. <br/> Allowed values are **AzurePublic**, **AzureChina**, **AzureUsGovernment**, and **AzureGermany**. By default, the data factory's cloud environment is used. | No |
146146

147147
**Example**
148148

@@ -160,7 +160,7 @@ Set the **authenticationType** property to **AadServicePrincipal**. In addition
160160
"type": "SecureString"
161161
},
162162
"tenant": "<tenant info, e.g. microsoft.onmicrosoft.com>",
163-
"aadResourceId": "<AAD resource URL e.g. https://management.core.windows.net>"
163+
"aadResourceId": "<Azure AD resource URL e.g. https://management.core.windows.net>"
164164
},
165165
"connectVia": {
166166
"referenceName": "<name of Integration Runtime>",
@@ -210,7 +210,7 @@ Set the **authenticationType** property to **ManagedServiceIdentity**. In additi
210210

211211
| Property | Description | Required |
212212
|:--- |:--- |:--- |
213-
| aadResourceId | Specify the AAD resource you are requesting for authorization, for example, `https://management.core.windows.net`.| Yes |
213+
| aadResourceId | Specify the Azure AD resource you are requesting for authorization, for example, `https://management.core.windows.net`.| Yes |
214214
| credentials | Specify the user-assigned managed identity as the credential object. | Yes |
215215

216216

@@ -224,7 +224,7 @@ Set the **authenticationType** property to **ManagedServiceIdentity**. In additi
224224
"typeProperties": {
225225
"url": "<REST endpoint e.g. https://www.example.com/>",
226226
"authenticationType": "ManagedServiceIdentity",
227-
"aadResourceId": "<AAD resource URL e.g. https://management.core.windows.net>",
227+
"aadResourceId": "<Azure AD resource URL e.g. https://management.core.windows.net>",
228228
"credential": {
229229
"referenceName": "credential1",
230230
"type": "CredentialReference"

0 commit comments

Comments
 (0)