Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -6708,18 +6708,42 @@
"description": "Vertica linked service properties.",
"type": "object",
"properties": {
"version": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The version of the Vertica driver. Type: string."
},
"connectionString": {
"description": "An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"server": {
"type": "object",
"x-ms-format": "dfe-string"
"x-ms-format": "dfe-string",
"description": "Server name for connection. Type: string."
},
"pwd": {
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"username": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"password": {
"$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
},
"encryptedCredential": {
"type": "string",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).",
"type": "object"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6161,11 +6161,36 @@
"description": "Vertica linked service properties.",
"type": "object",
"properties": {
"version": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The version of the Vertica driver. Type: string."
},
"connectionString": {
"description": "An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"pwd": {
"server": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Server name for connection. Type: string."
},
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"username": {
"type": "object",
"x-ms-format": "dfe-string",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove the x-ms-format for the synapse swagger.

"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"password": {
"$ref": "../artifacts.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
},
Expand Down