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]Added logLevel/enableReliableLogging to LogStorageSettings #14597

Merged
merged 2 commits into from
Sep 1, 2020
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Projects\azure-sdk-for-net\sdk
2020-08-18 10:43:15 UTC
2020-09-01 05:25:03 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 271086fdddc2d13910e8fa1373d285b1512ed032
Commit: aa96f138f37c06bdbf3458a4fa327f08a593594c
AutoRest information
Requested version: v2
Bootstrapper version: autorest@2.0.4413
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for the Azure Data Factory V2 .NET SDK

## Version 4.12.0
### Feature Additions
- Added logLevel/enableReliableLogging to LogStorageSettings
- Support Tar GZip compression type in Data Factory

## Version 4.11.0
### Feature Additions
- Added support for Trigger Run Cancel API
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,13 @@
<PropertyGroup>
<PackageId>Microsoft.Azure.Management.DataFactory</PackageId>
<Description>Azure Data Factory V2 is the data integration platform that goes beyond Azure Data Factory V1's orchestration and batch-processing of time-series data, with a general purpose app model supporting modern data warehousing patterns and scenarios, lift-and-shift SSIS, and data-driven SaaS applications. Compose and manage reliable and secure data integration workflows at scale. Use native ADF data connectors and Integration Runtimes to move and transform cloud and on-premises data that can be unstructured, semi-structured, and structured with Hadoop, Azure Data Lake, Spark, SQL Server, Cosmos DB and many other data platforms.</Description>
<Version>4.11.0</Version>
<Version>4.12.0</Version>
<AssemblyName>Microsoft.Azure.Management.DataFactory</AssemblyName>
<PackageTags>Microsoft Azure resource management;Data Factory;ADF;</PackageTags>
<PackageReleaseNotes>
<![CDATA[
- Added support for Trigger Run Cancel API
- Added column delimiter for SAP Table/open hub
- Added azureCloudType for Aad Auth
- Added snapshot to Azure File Storage linked service
- Support HDFS for delete activity and deleteFilesAfterCompletion feature in copy activity
- Added support for managed Virtual Network and managed private endpoint CRUD APIs
- Added Support for Query EC List API
- Added more options on XML and CosmosDbSqlApi copy source
- Fix bug: Added AzureFileStorageWriteSettings
- Added logLevel/enableReliableLogging to LogStorageSettings
- Support Tar GZip compression type in Data Factory
]]></PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

[assembly: AssemblyTitle("Microsoft Azure Data Factory Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Factory Resources.")]
[assembly: AssemblyVersion("4.11.0.0")]
[assembly: AssemblyFileVersion("4.11.0.0")]
[assembly: AssemblyVersion("4.12.0.0")]
[assembly: AssemblyFileVersion("4.12.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1259,6 +1259,31 @@ public class DatasetJsonSamples : JsonSampleCollection<DatasetJsonSamples>
}
}";

[JsonSample]
public const string BinaryWithTarGZipDataset = @"
{
""name"": ""BinaryDataset"",
""properties"": {
""type"": ""Binary"",
""linkedServiceName"": {
""referenceName"": ""AzureBlobStorageLinkedService"",
""type"": ""LinkedServiceReference""
},
""typeProperties"": {
""location"": {
""type"": ""AzureBlobStorageLocation"",
""container"": ""ContainerName"",
""folderPath"": ""dataflow/test/input"",
""fileName"": ""testTgz01""
},
""compression"": {
""type"": ""TarGZip"",
""level"": ""Optimal""
}
}
}
}";

[JsonSample]
public const string OrcDataset = @"
{
Expand Down
Loading