Skip to content

Commit

Permalink
Patch out bad types in DMS DataProvider (#3905)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Jan 9, 2025
1 parent 94be1ae commit c58d38a
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 14 deletions.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[
{
"op": "remove",
"path": "/properties/Settings/properties/DocDbSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/MariaDbSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/MicrosoftSqlServerSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/MongoDbSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/MySqlSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/OracleSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/PostgreSqlSettings/properties/SslMode/type"
},
{
"op": "remove",
"path": "/properties/Settings/properties/MySqlSettings/properties/SslMode/type"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/MongoDbSslModeValue",
"type": "object"
"$ref": "#/definitions/MongoDbSslModeValue"
}
},
"required": [
Expand All @@ -192,8 +191,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/DmsSslModeValue",
"type": "object"
"$ref": "#/definitions/DmsSslModeValue"
}
},
"required": [
Expand All @@ -219,8 +217,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/DmsSslModeValue",
"type": "object"
"$ref": "#/definitions/DmsSslModeValue"
}
},
"required": [
Expand Down Expand Up @@ -258,8 +255,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/MongoDbSslModeValue",
"type": "object"
"$ref": "#/definitions/MongoDbSslModeValue"
}
},
"required": [
Expand All @@ -281,8 +277,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/DmsSslModeValue",
"type": "object"
"$ref": "#/definitions/DmsSslModeValue"
}
},
"required": [
Expand Down Expand Up @@ -323,8 +318,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/DmsSslModeValue",
"type": "object"
"$ref": "#/definitions/DmsSslModeValue"
}
},
"required": [
Expand All @@ -351,8 +345,7 @@
"type": "string"
},
"SslMode": {
"$ref": "#/definitions/DmsSslModeValue",
"type": "object"
"$ref": "#/definitions/DmsSslModeValue"
}
},
"required": [
Expand Down

0 comments on commit c58d38a

Please sign in to comment.