Skip to content

Commit

Permalink
Add MongoDB/MongoDBAtlas sink (#13669)
Browse files Browse the repository at this point in the history
* Add MongoDB/MongoDBAtlas sink, add disableMetricsCollection in read/wirte properties

* Revert disableMetricsCollection related changes
  • Loading branch information
yew authored Apr 9, 2021
1 parent a4cb421 commit a9d1be8
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4841,6 +4841,36 @@
}
}
},
"MongoDbAtlasSink": {
"description": "A copy activity MongoDB Atlas sink.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySink"
}
],
"properties": {
"writeBehavior": {
"type": "object",
"description": "Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is \"insert\". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string)."
}
}
},
"MongoDbV2Sink": {
"description": "A copy activity MongoDB sink.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySink"
}
],
"properties": {
"writeBehavior": {
"type": "object",
"description": "Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is \"insert\". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string)."
}
}
},
"CosmosDbMongoDbApiSink": {
"description": "A copy activity sink for a CosmosDB (MongoDB API) database.",
"type": "object",
Expand Down

0 comments on commit a9d1be8

Please sign in to comment.