Skip to content

Commit

Permalink
[DataFactory] Unzip file directly to target folder (Azure#8891)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbzhxying authored and 00Kai0 committed Oct 12, 2020
1 parent 32a56c6 commit 136881b
Showing 1 changed file with 74 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,38 @@
"type"
]
},
"CompressionReadSettings": {
"description": "Compression read settings.",
"discriminator": "type",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The Compression setting type."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
},
"ZipDeflateReadSettings": {
"description": "The ZipDeflate compression read settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CompressionReadSettings"
}
],
"properties": {
"preserveZipFileNameAsFolder": {
"description": "Preserve the zip file name as folder path. Type: boolean (or Expression with resultType boolean).",
"type": "object"
}
}
},
"DelimitedTextReadSettings": {
"description": "Delimited text read settings.",
"type": "object",
Expand All @@ -782,6 +814,40 @@
"skipLineCount": {
"type": "object",
"description": "Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer)."
},
"compressionProperties": {
"$ref": "#/definitions/CompressionReadSettings",
"description": "Compression settings."
}
}
},
"JsonReadSettings": {
"description": "Json read settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/FormatReadSettings"
}
],
"properties": {
"compressionProperties": {
"$ref": "#/definitions/CompressionReadSettings",
"description": "Compression settings."
}
}
},
"BinaryReadSettings": {
"description": "Binary read settings.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/FormatReadSettings"
}
],
"properties": {
"compressionProperties": {
"$ref": "#/definitions/CompressionReadSettings",
"description": "Compression settings."
}
}
},
Expand Down Expand Up @@ -949,6 +1015,10 @@
"$ref": "#/definitions/StoreReadSettings",
"description": "Json store settings."
},
"formatSettings": {
"$ref": "#/definitions/JsonReadSettings",
"description": "Json format settings."
},
"additionalColumns": {
"type": "array",
"description": "Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects).",
Expand Down Expand Up @@ -1180,6 +1250,10 @@
"storeSettings": {
"$ref": "#/definitions/StoreReadSettings",
"description": "Binary store settings."
},
"formatSettings": {
"$ref": "#/definitions/BinaryReadSettings",
"description": "Binary format settings."
}
}
},
Expand Down

0 comments on commit 136881b

Please sign in to comment.