Skip to content

Commit

Permalink
Generated from 49c0361b91210480bf8cd73b02f5e1237d157792
Browse files Browse the repository at this point in the history
Support tar gzip in data factory.
  • Loading branch information
SDK Automation committed Aug 31, 2020
1 parent 85ebda1 commit d2783c5
Showing 1 changed file with 47 additions and 2 deletions.
49 changes: 47 additions & 2 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -5878,6 +5878,12 @@
},
{
"$ref": "#/definitions/DatasetZipDeflateCompression"
},
{
"$ref": "#/definitions/DatasetTarCompression"
},
{
"$ref": "#/definitions/DatasetTarGZipCompression"
}
],
"properties": {
Expand Down Expand Up @@ -6058,6 +6064,41 @@
},
"description": "The format definition of a storage."
},
"DatasetTarCompression": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"Tar"
]
}
},
"required": [
"type"
],
"description": "The Tar archive method used on a dataset."
},
"DatasetTarGZipCompression": {
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {},
"description": "The TarGZip compression level."
},
"type": {
"type": "string",
"enum": [
"TarGZip"
]
}
},
"required": [
"type"
],
"description": "The TarGZip compression method used on a dataset."
},
"DatasetZipDeflateCompression": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -6355,7 +6396,9 @@
"bzip2",
"deflate",
"zipDeflate",
"lz4"
"lz4",
"tar",
"tarGZip"
]
},
{
Expand Down Expand Up @@ -14374,7 +14417,9 @@
"bzip2",
"deflate",
"zipDeflate",
"lz4"
"lz4",
"tar",
"tarGZip"
]
},
{
Expand Down

0 comments on commit d2783c5

Please sign in to comment.