You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -89,7 +89,7 @@ The Greenplum linked service supports the following properties when apply versio
89
89
| port | The TCP port of the database server. The default value is `5432`.| No |
90
90
| database | The database to connect to. | Yes |
91
91
| 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 |
93
93
| 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 |
94
94
| authenticationType | Authentication type for connecting to the database. Only supports **Basic**. | Yes |
95
95
| 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
110
110
"port": 5432,
111
111
"database": "<database>",
112
112
"username": "<username>",
113
-
"password": {
113
+
"pwd": {
114
114
"type": "SecureString",
115
115
"value": "<password>"
116
116
},
@@ -124,7 +124,7 @@ The Greenplum linked service supports the following properties when apply versio
124
124
}
125
125
}
126
126
```
127
-
**Example: store password in Azure Key Vault**
127
+
**Example: store pwd in Azure Key Vault**
128
128
```json
129
129
{
130
130
"name": "GreenplumLinkedService",
@@ -136,7 +136,7 @@ The Greenplum linked service supports the following properties when apply versio
136
136
"port": 5432,
137
137
"database": "<database>",
138
138
"username": "<username>",
139
-
"password": {
139
+
"pwd": {
140
140
"type": "AzureKeyVaultSecret",
141
141
"store": {
142
142
"referenceName": "<Azure Key Vault linked service name>",
0 commit comments