Skip to content
Merged
Show file tree
Hide file tree
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 @@ -634,6 +634,40 @@
"location"
]
},
"BinaryDataset": {
"x-ms-discriminator-value": "Binary",
"description": "Binary dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Binary dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/BinaryDatasetTypeProperties"
}
}
},
"BinaryDatasetTypeProperties": {
"description": "Binary dataset properties.",
"type": "object",
"properties": {
"location": {
"$ref": "#/definitions/DatasetLocation",
"description": "The location of the Binary storage."
},
"compression": {
"description": "The data compression method used for the binary dataset.",
"$ref": "#/definitions/DatasetCompression"
}
},
"required": [
"location"
]
},
"AzureBlobDataset": {
"x-ms-discriminator-value": "AzureBlob",
"description": "The Azure Blob storage.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,21 @@
"type"
]
},
"BinarySource": {
"description": "A copy activity Binary source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"storeSettings": {
"$ref": "#/definitions/StoreReadSettings",
"description": "Binary store settings."
}
}
},
"AzureTableSource": {
"description": "A copy activity Azure Table source.",
"type": "object",
Expand Down Expand Up @@ -2171,6 +2186,21 @@
}
}
},
"BinarySink": {
"description": "A copy activity Binary sink.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySink"
}
],
"properties": {
"storeSettings": {
"$ref": "#/definitions/StoreReadSettings",
"description": "Binary store settings."
}
}
},
"BlobSink": {
"description": "A copy activity Azure Blob sink.",
"type": "object",
Expand Down