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 @@ -6746,8 +6746,28 @@
"properties": {
"connectionString": {
"description": "An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"x-ms-format": "dfe-string",
"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."
},
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"uid": {
"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."
},
"pwd": {
"$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6197,6 +6197,22 @@
"description": "An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"server": {
"type": "object",
"description": "Server name for connection. Type: string."
},
"port": {
"type": "object",
"description": "The port for the connection. Type: integer."
},
"uid": {
"type": "object",
"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"description": "Database name for connection. Type: string."
},
"pwd": {
"$ref": "../artifacts.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
Expand Down