Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DataFactory] Unzip file directly to target folder #8891

Merged
merged 1 commit into from
Apr 1, 2020
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 @@ -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