Skip to content

Commit 731fd6b

Browse files
committed
Update Greenplum pwd property name
1 parent 497d91f commit 731fd6b

1 file changed

Lines changed: 5 additions & 5 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>",

0 commit comments

Comments
 (0)