Skip to content

Commit

Permalink
Support custom metadata when copy to Blob or ADLS Gen2 (#14052)
Browse files Browse the repository at this point in the history
  • Loading branch information
yew authored May 21, 2021
1 parent fee55e3 commit fae947e
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4031,6 +4031,13 @@
"copyBehavior": {
"description": "The type of copy behavior for copy sink.",
"type": "object"
},
"metadata": {
"type": "array",
"description": "Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).",
"items": {
"$ref": "#/definitions/MetadataItem"
}
}
}
},
Expand Down Expand Up @@ -4600,6 +4607,13 @@
"copyBehavior": {
"description": "The type of copy behavior for copy sink.",
"type": "object"
},
"metadata": {
"type": "array",
"description": "Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).",
"items": {
"$ref": "#/definitions/MetadataItem"
}
}
}
},
Expand Down Expand Up @@ -7168,6 +7182,20 @@
"name": "NetezzaPartitionOption",
"modelAsString": true
}
},
"MetadataItem": {
"description": "Specify the name and value of custom metadata item.",
"type": "object",
"properties": {
"name": {
"type": "object",
"description": "Metadata item key name. Type: string (or Expression with resultType string)."
},
"value": {
"type": "object",
"description": "Metadata item value. Type: string (or Expression with resultType string)."
}
}
}
}
}

0 comments on commit fae947e

Please sign in to comment.