Skip to content

Commit 178695c

Browse files
rickysun93michaeljqzq
authored andcommitted
[Data Factory]Add property blockSizeInMB for AzureBlobStorageWriteSettings and AzureBlobFSWriteSettings (Azure#6954)
* add property blockSizeInMB for blobsink and blobFSsink * fix property type * Move property from BlobSink (datasetV1) to AzureBlobStorageWriteSettings (datasetV2) * Enable override for StoreWriteSettings * remove redundant property
1 parent d4104a6 commit 178695c

File tree

1 file changed

+15
-2
lines changed
  • specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes

1 file changed

+15
-2
lines changed

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@
530530
},
531531
"StoreWriteSettings": {
532532
"description": "Connector write settings.",
533+
"discriminator": "type",
533534
"type": "object",
534535
"properties": {
535536
"type": {
@@ -559,7 +560,13 @@
559560
{
560561
"$ref": "#/definitions/StoreWriteSettings"
561562
}
562-
]
563+
],
564+
"properties": {
565+
"blockSizeInMB": {
566+
"description": "Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).",
567+
"type": "object"
568+
}
569+
}
563570
},
564571
"AzureBlobFSWriteSettings": {
565572
"description": "Azure blobFS write settings.",
@@ -568,7 +575,13 @@
568575
{
569576
"$ref": "#/definitions/StoreWriteSettings"
570577
}
571-
]
578+
],
579+
"properties": {
580+
"blockSizeInMB": {
581+
"description": "Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).",
582+
"type": "object"
583+
}
584+
}
572585
},
573586
"AzureDataLakeStoreWriteSettings": {
574587
"description": "Azure data lake store write settings.",

0 commit comments

Comments
 (0)