Skip to content

Commit 7db825d

Browse files
authored
[DataFactory]Added new features into 5.0.0 (#25595)
* [DataFactory]Supported AmazonRdsForOracle Source * [DataFactory]Added new features into 4.25.0 * [DataFactory]Added new features into 4.26.0 * [DataFactory]Supported Dataflow flowlets in ADF * update for breakchanges * [DataFactory]Added new features into 4.28.0 * add more files * [DataFactory]Added new features into 4.29.0 * update version
1 parent f81209e commit 7db825d

File tree

10 files changed

+59
-30
lines changed

10 files changed

+59
-30
lines changed

eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Generating CSharp code
55
Executing AutoRest command
66
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/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
77
Autorest CSharp Version: 2.3.82
8-
2021-11-11 01:15:27 UTC
8+
2021-12-09 02:19:59 UTC
99
Azure-rest-api-specs repository information
1010
GitHub fork: Azure
1111
Branch: main
12-
Commit: 7fab18ac68c0720823cb5cd8f52faed16014f244
12+
Commit: 40cb73ed0c84fa515b911af5fdf77f68b764ea74
1313
AutoRest information
1414
Requested version: v2
1515
Bootstrapper version: autorest@2.0.4413

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog for the Azure Data Factory V2 .NET SDK
22

3+
## Version 5.0.0
4+
### Feature Additions
5+
### Breaking Changes
6+
- Removed unnecessary additional properties for data flow flowlet for bug fix
7+
- Added optional property disableChunking in FTP and SFTP read settings
8+
- Added parameters for dataflow activity
9+
- Added possible values to pipeline run status description
10+
311
## Version 4.28.0
412
### Feature Additions
513
- Supported Dataset and LinkedService for Rest call transform

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/DataFlowReference.cs

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/Flowlet.cs

Lines changed: 1 addition & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/FtpReadSettings.cs

Lines changed: 13 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/PipelineRun.cs

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/SftpReadSettings.cs

Lines changed: 13 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Microsoft.Azure.Management.DataFactory.csproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
<PropertyGroup>
66
<PackageId>Microsoft.Azure.Management.DataFactory</PackageId>
77
<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>
8-
<Version>4.28.0</Version>
8+
<Version>5.0.0</Version>
99
<AssemblyName>Microsoft.Azure.Management.DataFactory</AssemblyName>
1010
<PackageTags>Microsoft Azure resource management;Data Factory;ADF;</PackageTags>
1111
<PackageReleaseNotes>
1212
<![CDATA[
13-
- Supported Dataset and LinkedService for Rest call transform
14-
- Change compressionType to type of object
13+
- Removed unnecessary additional properties for data flow flowlet for bug fix
14+
- Added optional property disableChunking in FTP and SFTP read settings
15+
- Added parameters for dataflow activity
16+
- Added possible values to pipeline run status description
1517
]]></PackageReleaseNotes>
1618
</PropertyGroup>
1719
<PropertyGroup>

sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
[assembly: AssemblyTitle("Microsoft Azure Data Factory Management Library")]
88
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Factory Resources.")]
9-
[assembly: AssemblyVersion("4.28.0.0")]
10-
[assembly: AssemblyFileVersion("4.28.0.0")]
9+
[assembly: AssemblyVersion("5.0.0.0")]
10+
[assembly: AssemblyFileVersion("5.0.0.0")]
1111
[assembly: AssemblyConfiguration("")]
1212
[assembly: AssemblyCompany("Microsoft")]
1313
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]

sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/PipelineJsonSamples.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5042,7 +5042,8 @@ public class PipelineJsonSamples : JsonSampleCollection<PipelineJsonSamples>
50425042
""recursive"": true,
50435043
""wildcardFolderPath"": ""A*"",
50445044
""wildcardFileName"": ""*.csv"",
5045-
""useBinaryTransfer"": true
5045+
""useBinaryTransfer"": true,
5046+
""disableChunking"": true
50465047
},
50475048
""formatSettings"": {
50485049
""type"": ""DelimitedTextReadSettings"",

0 commit comments

Comments
 (0)