Skip to content

Commit 2932cff

Browse files
Merge pull request #310754 from Lucky-Wang16/0122-Fix_Xero_json
[Doc update] Update version location for Xero V2 Json and Greenplum pwd property name
2 parents b46011e + 731fd6b commit 2932cff

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

articles/data-factory/connector-greenplum.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ titleSuffix: Azure Data Factory & Azure Synapse
55
author: jianleishen
66
ms.subservice: data-movement
77
ms.topic: conceptual
8-
ms.date: 06/06/2025
8+
ms.date: 01/23/2026
99
ms.author: jianleishen
1010
ms.custom:
1111
- synapse
@@ -89,7 +89,7 @@ The Greenplum linked service supports the following properties when apply versio
8989
| port | The TCP port of the database server. The default value is `5432`.| No |
9090
| database | The database to connect to. | Yes |
9191
| username | The username to connect with. Not required if using IntegratedSecurity. |Yes |
92-
| password| The password to connect with. Not required if using IntegratedSecurity. 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 |
92+
| pwd| The password to connect with. Not required if using IntegratedSecurity. 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 |
9393
| sslMode | Controls whether SSL is used, depending on server support. <br/>- **Disable**: SSL is disabled. If the server requires SSL, the connection will fail. <br/>- **Allow**: Prefer non-SSL connections if the server allows them, but allow SSL connections. <br/>- **Prefer**: Prefer SSL connections if the server allows them, but allow connections without SSL. <br/>- **Require**: Fail the connection if the server doesn't support SSL. <br/>- **Verify-ca**: Fail the connection if the server doesn't support SSL. Also verifies server certificate. <br/>- **Verify-full**: Fail the connection if the server doesn't support SSL. Also verifies server certificate with host's name. <br/> Options: Disable (0) / Allow (1) / Prefer (2) / Require (3) **(Default)** / Verify-ca (4) / Verify-full (5) | Yes |
9494
| authenticationType | Authentication type for connecting to the database. Only supports **Basic**. | Yes |
9595
| connectVia | The [Integration Runtime](concepts-integration-runtime.md) to be used to connect to the data store. Learn more from [Prerequisites](#prerequisites) section. If not specified, it uses the default Azure Integration Runtime. |No |
@@ -110,7 +110,7 @@ The Greenplum linked service supports the following properties when apply versio
110110
"port": 5432,
111111
"database": "<database>",
112112
"username": "<username>",
113-
"password": {
113+
"pwd": {
114114
"type": "SecureString",
115115
"value": "<password>"
116116
},
@@ -124,7 +124,7 @@ The Greenplum linked service supports the following properties when apply versio
124124
}
125125
}
126126
```
127-
**Example: store password in Azure Key Vault**
127+
**Example: store pwd in Azure Key Vault**
128128
```json
129129
{
130130
"name": "GreenplumLinkedService",
@@ -136,7 +136,7 @@ The Greenplum linked service supports the following properties when apply versio
136136
"port": 5432,
137137
"database": "<database>",
138138
"username": "<username>",
139-
"password": {
139+
"pwd": {
140140
"type": "AzureKeyVaultSecret",
141141
"store": {
142142
"referenceName": "<Azure Key Vault linked service name>",

articles/data-factory/connector-xero.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: jianleishen
66
ms.subservice: data-movement
77
ms.custom: synapse
88
ms.topic: conceptual
9-
ms.date: 01/04/2026
9+
ms.date: 01/22/2026
1010
ms.author: jianleishen
1111
---
1212
# Copy data from Xero using Azure Data Factory or Synapse Analytics
@@ -103,6 +103,7 @@ The Xero linked service supports the following properties when applying version
103103
"name": "XeroLinkedService",
104104
"properties": {
105105
"type": "Xero",
106+
"version": "2.0",
106107
"typeProperties": {
107108
"host": "api.xero.com",
108109
"clientId": "<client ID>",
@@ -112,8 +113,7 @@ The Xero linked service supports the following properties when applying version
112113
"type": "SecureString",
113114
"value": "<refresh token>"
114115
},
115-
"authenticationType":"OAuth_2.0",
116-
"version": "2.0"         
116+
"authenticationType":"OAuth_2.0"       
117117
}
118118
}
119119
}

0 commit comments

Comments
 (0)