Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swagger changes to support Vertica V2 in ADF #29652

Merged
merged 13 commits into from
Jul 23, 2024
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"
kanikagupta11 marked this conversation as resolved.
Show resolved Hide resolved
"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