Skip to content
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 @@ -646,18 +646,8 @@
"description": "The location of the avro storage."
},
"avroCompressionCodec": {
"type": "string",
"enum": [
"none",
"deflate",
"snappy",
"xz",
"bzip2"
],
"x-ms-enum": {
"name": "avroCompressionCodec",
"modelAsString": true
}
"type": "object",
"description": "The data avroCompressionCodec. Type: string (or Expression with resultType string)."
},
"avroCompressionLevel": {
"type": "integer",
Expand All @@ -669,6 +659,20 @@
"location"
]
},
"AvroCompressionCodec": {
"type": "string",
"enum": [
"none",
"deflate",
"snappy",
"xz",
"bzip2"
],
"x-ms-enum": {
"name": "avroCompressionCodec",
"modelAsString": true
}
},
"ExcelDataset": {
"x-ms-discriminator-value": "Excel",
"description": "Excel dataset.",
Expand Down Expand Up @@ -943,23 +947,27 @@
"description": "The location of the ORC data storage."
},
"orcCompressionCodec": {
"type": "string",
"enum": [
"none",
"zlib",
"snappy",
"lzo"
],
"x-ms-enum": {
"name": "orcCompressionCodec",
"modelAsString": true
}
"type": "object",
"description": "The data orcCompressionCodec. Type: string (or Expression with resultType string)."
}
},
"required": [
"location"
]
},
"OrcCompressionCodec": {
"type": "string",
"enum": [
"none",
"zlib",
"snappy",
"lzo"
],
"x-ms-enum": {
"name": "orcCompressionCodec",
"modelAsString": true
}
},
"BinaryDataset": {
"x-ms-discriminator-value": "Binary",
"description": "Binary dataset.",
Expand Down