Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
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 @@ -530,6 +530,7 @@
},
"StoreWriteSettings": {
"description": "Connector write settings.",
"discriminator": "type",
"type": "object",
"properties": {
"type": {
Expand Down Expand Up @@ -559,7 +560,13 @@
{
"$ref": "#/definitions/StoreWriteSettings"
}
]
],
"properties": {
"blockSizeInMB": {
"description": "Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).",
"type": "object"
}
}
},
"AzureBlobFSWriteSettings": {
"description": "Azure blobFS write settings.",
Expand All @@ -568,7 +575,13 @@
{
"$ref": "#/definitions/StoreWriteSettings"
}
]
],
"properties": {
"blockSizeInMB": {
"description": "Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).",
"type": "object"
}
}
},
"AzureDataLakeStoreWriteSettings": {
"description": "Azure data lake store write settings.",
Expand Down Expand Up @@ -2732,7 +2745,7 @@
],
"properties": {
"storeSettings": {
"$ref": "#/definitions/StoreReadSettings",
"$ref": "#/definitions/StoreWriteSettings",
"description": "Binary store settings."
}
}
Expand Down