Skip to content

Commit 31682a2

Browse files
authored
[DataFactory]Added new features into 4.26.0 (#24579)
* [DataFactory]Supported AmazonRdsForOracle Source * [DataFactory]Added new features into 4.25.0 * [DataFactory]Added new features into 4.26.0
1 parent 93f8af5 commit 31682a2

File tree

10 files changed

+164
-20
lines changed

10 files changed

+164
-20
lines changed

eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ AutoRest installed successfully.
33
Commencing code generation
44
Generating CSharp code
55
Executing AutoRest command
6-
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
7-
Autorest CSharp Version: 2.3.82
8-
2021-09-13 02:13:39 UTC
6+
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
7+
2021-10-08 01:40:17 UTC
98
Azure-rest-api-specs repository information
109
GitHub fork: Azure
11-
Branch: master
12-
Commit: 9a19506631005d0ff1e3f394c86a9ce10cf51910
10+
Branch: main
11+
Commit: 2ebe584103a362fa87f2f60c9bab89ab410c7571
1312
AutoRest information
1413
Requested version: v2
15-
Bootstrapper version: autorest@3.3.2
14+
Bootstrapper version: autorest@2.0.4413

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

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

3+
## Version 4.26.0
4+
### Feature Additions
5+
- Supported Power Query model changes for multiple queries
6+
- Added locale support in Power Query activity
7+
- Added publicNetworkAccess into FactoryUpdateParameters
8+
39
## Version 4.25.0
410
### Feature Additions
511
- Supported UAMI in sql always

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

Lines changed: 15 additions & 5 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/FactoryUpdateParameters.cs

Lines changed: 12 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/PowerQuerySinkMapping.cs

Lines changed: 63 additions & 0 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/WranglingDataFlow.cs

Lines changed: 10 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
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.25.0</Version>
8+
<Version>4.26.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 UAMI in sql always
14-
- Supported AmazonRdsForSqlServer Source
15-
- Supported subnet id for swift injection of azure-ssis IR
13+
- Supported Power Query model changes for multiple queries
14+
- Added locale support in Power Query activity
15+
- Added publicNetworkAccess into FactoryUpdateParameters
1616
]]></PackageReleaseNotes>
1717
</PropertyGroup>
1818
<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.25.0.0")]
10-
[assembly: AssemblyFileVersion("4.25.0.0")]
9+
[assembly: AssemblyVersion("4.26.0.0")]
10+
[assembly: AssemblyFileVersion("4.26.0.0")]
1111
[assembly: AssemblyConfiguration("")]
1212
[assembly: AssemblyCompany("Microsoft")]
1313
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ public class DataFlowJsonSamples : JsonSampleCollection<DataFlowJsonSamples>
116116
""name"": ""CADSource""
117117
}
118118
],
119-
""script"": ""some script""
119+
""script"": ""some script"",
120+
""documentLocale"": ""de-DE""
120121
}
121122
}
122123
}

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

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7542,6 +7542,51 @@ public class PipelineJsonSamples : JsonSampleCollection<PipelineJsonSamples>
75427542
]
75437543
}
75447544
}
7545+
";
7546+
7547+
[JsonSample]
7548+
public const string ExecuteWranglingDataFlowActivityPipelineNew = @"
7549+
{
7550+
name: ""My Power Query Activity pipeline"",
7551+
properties:
7552+
{
7553+
activities:
7554+
[
7555+
{
7556+
name: ""TestActivity"",
7557+
description: ""Test activity description"",
7558+
type: ""ExecuteWranglingDataflow"",
7559+
typeProperties: {
7560+
dataFlow: {
7561+
referenceName: ""referenced1"",
7562+
type: ""DataFlowReference""
7563+
},
7564+
staging: {
7565+
linkedService: {
7566+
referenceName: ""referenced2"",
7567+
type: ""LinkedServiceReference""
7568+
},
7569+
folderPath: ""adfjobs/staging""
7570+
},
7571+
integrationRuntime: {
7572+
referenceName: ""dataflowIR10minTTL"",
7573+
type: ""IntegrationRuntimeReference""
7574+
},
7575+
compute: {
7576+
computeType: ""MemoryOptimized"",
7577+
coreCount: 8
7578+
},
7579+
queries:[
7580+
{
7581+
queryName: """",
7582+
dataflowSinks: []
7583+
}
7584+
]
7585+
}
7586+
}
7587+
]
7588+
}
7589+
}
75457590
";
75467591
}
75477592
}

0 commit comments

Comments
 (0)