Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1939,6 +1939,11 @@
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"authenticationType": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The authentication type to use. Type: string."
},
"sslMode": {
"type": "object",
"x-ms-format": "dfe-int",
Expand Down Expand Up @@ -2017,7 +2022,8 @@
"server",
"username",
"database",
"sslMode"
"sslMode",
"authenticationType"
]
},
"SybaseLinkedService": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ suppressions:
- package: "@azure/arm-datafactory"
breaking-changes:
- Interface HDInsightOnDemandLinkedService has a new required parameter versionTypePropertiesVersion
- Interface PostgreSqlV2LinkedService has a new required parameter authenticationType
Original file line number Diff line number Diff line change
Expand Up @@ -1680,6 +1680,10 @@
"type": "object",
"description": "Database name for connection. Type: string."
},
"authenticationType": {
"type": "object",
"description": "The authentication type to use. Type: string."
},
"sslMode": {
"type": "object",
"description": "SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer."
Expand Down Expand Up @@ -1745,7 +1749,8 @@
"server",
"username",
"database",
"sslMode"
"sslMode",
"authenticationType"
]
},
"SybaseLinkedService": {
Expand Down