Skip to content

Commit

Permalink
Fix PGSQL V2 missing auth type (#30552)
Browse files Browse the repository at this point in the history
* Fix PGSQL V2 missing auth type

* Update sdk-suppressions.yaml

---------

Co-authored-by: kazrael2119 <98569699+kazrael2119@users.noreply.github.com>
  • Loading branch information
2 people authored and grangasamy-msft committed Feb 5, 2025
1 parent cedbc0e commit 57c8663
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
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

0 comments on commit 57c8663

Please sign in to comment.