Skip to content

Commit 53f326e

Browse files
authored
Merge pull request #188909 from Clare-Zheng82/0216-Add_TeamDesk_connector_doc
Add TeamDesk connector document
2 parents 0d94cb1 + 6283fc2 commit 53f326e

File tree

4 files changed

+146
-0
lines changed

4 files changed

+146
-0
lines changed

articles/data-factory/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,8 @@ items:
531531
href: connector-square.md
532532
- name: Sybase
533533
href: connector-sybase.md
534+
- name: TeamDesk
535+
href: connector-teamdesk.md
534536
- name: Teradata
535537
href: connector-teradata.md
536538
- name: Vertica
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
---
2+
title: Transform data in TeamDesk (Preview)
3+
titleSuffix: Azure Data Factory & Azure Synapse
4+
description: Learn how to transform data in TeamDesk (Preview) by using Data Factory or Azure Synapse Analytics.
5+
ms.author: jianleishen
6+
author: jianleishen
7+
ms.service: data-factory
8+
ms.subservice: data-movement
9+
ms.topic: conceptual
10+
ms.custom: synapse
11+
ms.date: 02/17/2022
12+
---
13+
14+
# Transform data in TeamDesk (Preview) using Azure Data Factory or Synapse Analytics
15+
16+
[!INCLUDE[appliesto-adf-asa-md](includes/appliesto-adf-asa-md.md)]
17+
18+
This article outlines how to use Data Flow to transform data in TeamDesk (Preview). To learn more, read the introductory article for [Azure Data Factory](introduction.md) or [Azure Synapse Analytics](../synapse-analytics/overview-what-is.md).
19+
20+
## Supported capabilities
21+
22+
This TeamDesk connector is supported for the following activities:
23+
24+
- [Mapping data flow](concepts-data-flow-overview.md)
25+
26+
## Create a TeamDesk linked service using UI
27+
28+
Use the following steps to create a TeamDesk linked service in the Azure portal UI.
29+
30+
1. Browse to the Manage tab in your Azure Data Factory or Synapse workspace and select Linked Services, then select New:
31+
32+
# [Azure Data Factory](#tab/data-factory)
33+
34+
:::image type="content" source="media/doc-common-process/new-linked-service.png" alt-text="Screenshot of creating a new linked service with Azure Data Factory UI.":::
35+
36+
# [Azure Synapse](#tab/synapse-analytics)
37+
38+
:::image type="content" source="media/doc-common-process/new-linked-service-synapse.png" alt-text="Screenshot of creating a new linked service with Azure Synapse UI.":::
39+
40+
2. Search for TeamDesk (Preview) and select the TeamDesk (Preview) connector.
41+
42+
:::image type="content" source="media/connector-teamdesk/teamdesk-connector.png" alt-text="Screenshot showing selecting TeamDesk connector.":::
43+
44+
1. Configure the service details, test the connection, and create the new linked service.
45+
46+
:::image type="content" source="media/connector-teamdesk/configure-teamdesk-linked-service.png" alt-text="Screenshot of configuration for TeamDesk linked service.":::
47+
48+
## Connector configuration details
49+
50+
The following sections provide information about properties that are used to define Data Factory and Synapse pipeline entities specific to TeamDesk.
51+
52+
## Linked service properties
53+
54+
The following properties are supported for the TeamDesk linked service:
55+
56+
| Property | Description | Required |
57+
|:--- |:--- |:--- |
58+
| type | The type property must be set to **TeamDesk**. |Yes |
59+
| url | The URL of your TeamDesk database. An example is `https://www.teamdesk.net/secure/db/xxxxx`. | Yes |
60+
| authenticationType | Type of authentication used to connect to the TeamDesk service. Allowed values are **Basic** and **Token**. Refer to corresponding sections below on more properties and examples respectively.|Yes |
61+
62+
### Basic authentication
63+
64+
Set the **authenticationType** property to **basic**. In addition to the generic properties that are described in the preceding section, specify the following properties:
65+
66+
| Property | Description | Required |
67+
|:--- |:--- |:--- |
68+
| userName | The user name used to log in to TeamDesk. |Yes |
69+
| password | Specify a password for the user account you specified for the user name. Mark this field as **SecureString** to store it securely. Or, you can [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). |Yes |
70+
71+
**Example:**
72+
73+
```json
74+
{
75+
"name": "TeamDeskLinkedService",
76+
"properties": {
77+
"type": "TeamDesk",
78+
"typeProperties": {
79+
"url": "https://www.teamdesk.net/secure/db/xxxxx",
80+
"authenticationType": "basic",
81+
"userName": "<user name>",
82+
"password": {
83+
"type": "SecureString",
84+
"value": "<password>"
85+
}
86+
}
87+
}
88+
}
89+
```
90+
91+
### Token authentication
92+
93+
Set the **authenticationType** property to **token**. In addition to the generic properties that are described in the preceding section, specify the following properties:
94+
95+
| Property | Description | Required |
96+
|:--- |:--- |:--- |
97+
| apiToken | Specify an API token for the TeamDesk. Mark this field as **SecureString** to store it securely. Or, you can [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). |Yes |
98+
99+
**Example:**
100+
101+
```json
102+
{
103+
"name": "TeamDeskLinkedService",
104+
"properties": {
105+
"type": "TeamDesk",
106+
"typeProperties": {
107+
"url": "https://www.teamdesk.net/secure/db/xxxxx",
108+
"authenticationType": "token",
109+
"apiToken": {
110+
"type": "SecureString",
111+
"value": "<API token>"
112+
}
113+
}
114+
}
115+
}
116+
```
117+
118+
## Mapping data flow properties
119+
120+
When transforming data in mapping data flow, you can read tables from TeamDesk. For more information, see the [source transformation](data-flow-source.md) in mapping data flows. You can only use an [inline dataset](data-flow-source.md#inline-datasets) as source type.
121+
122+
### Source transformation
123+
124+
The below table lists the properties supported by TeamDesk source. You can edit these properties in the **Source options** tab.
125+
126+
| Name | Description | Required | Allowed values | Data flow script property |
127+
| ---- | ----------- | -------- | -------------- | ---------------- |
128+
| Table | Data flow will fetch all the data from the table specified in the source options. | Yes when use inline mode| - | table |
129+
| View | Data flow will fetch the specified view in the table specified in the source options.| No | - | view |
130+
131+
#### TeamDesk source script examples
132+
133+
```
134+
source(allowSchemaDrift: true,
135+
validateSchema: false,
136+
store: 'teamdesk',
137+
format: 'rest',
138+
table: 'Table',
139+
view: 'View') ~> TeamDesksource
140+
```
141+
142+
## Next steps
143+
144+
For a list of data stores supported as sources and sinks by the copy activity, see [Supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).
36 KB
Loading
16.3 KB
Loading

0 commit comments

Comments
 (0)