Skip to content

Commit

Permalink
[DataFacory]Update avroCompressionCodec and orcCompressionCodec from …
Browse files Browse the repository at this point in the history
…string to object (Azure#14770)

* [DataFacory]Update avroCompressionCodec and orcCompressionCodec from string to object

* update json
  • Loading branch information
Jingshu923 authored and mkarmark committed Jul 20, 2021
1 parent 431fbc5 commit d87d801
Showing 1 changed file with 31 additions and 23 deletions.
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

0 comments on commit d87d801

Please sign in to comment.