Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support custom metadata when copy to Blob or ADLS Gen2 #14052

Merged
merged 1 commit into from
May 21, 2021
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 @@ -4027,6 +4027,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 @@ -4596,6 +4603,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 @@ -7134,6 +7148,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)."
}
}
}
}
}