Skip to content
Merged
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 @@ -300,7 +300,7 @@
}
},
"DynamicsSource": {
"description": "A copy activity Dynamics entity source.",
"description": "A copy activity Dynamics source.",
"type": "object",
"allOf": [
{
Expand Down Expand Up @@ -943,6 +943,35 @@
}
}
},
"DynamicsSink": {
"description": "A copy activity Dynamics sink.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySink"
}
],
"properties": {
"writeBehavior": {
"description": "The write behavior for the operation.",
"type": "string",
"enum": [
"Upsert"
],
"x-ms-enum": {
"name": "DynamicsSinkWriteBehavior",
"modelAsString": true
}
},
"ignoreNullValues": {
"type": "object",
"description": "The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean)."
}
},
"required": [
"writeBehavior"
]
},
"CopyTranslator": {
"discriminator": "type",
"description": "A copy activity translator.",
Expand Down