Skip to content
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
11 changes: 5 additions & 6 deletions eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ AutoRest installed successfully.
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
Autorest CSharp Version: 2.3.82
2021-09-13 02:13:39 UTC
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
2021-10-08 01:40:17 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 9a19506631005d0ff1e3f394c86a9ce10cf51910
Branch: main
Commit: 2ebe584103a362fa87f2f60c9bab89ab410c7571
AutoRest information
Requested version: v2
Bootstrapper version: autorest@3.3.2
Bootstrapper version: autorest@2.0.4413
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for the Azure Data Factory V2 .NET SDK

## Version 4.26.0
### Feature Additions
- Supported Power Query model changes for multiple queries
- Added locale support in Power Query activity
- Added publicNetworkAccess into FactoryUpdateParameters

## Version 4.25.0
### Feature Additions
- Supported UAMI in sql always
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.

Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<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.25.0</Version>
<Version>4.26.0</Version>
<AssemblyName>Microsoft.Azure.Management.DataFactory</AssemblyName>
<PackageTags>Microsoft Azure resource management;Data Factory;ADF;</PackageTags>
<PackageReleaseNotes>
<![CDATA[
- Supported UAMI in sql always
- Supported AmazonRdsForSqlServer Source
- Supported subnet id for swift injection of azure-ssis IR
- Supported Power Query model changes for multiple queries
- Added locale support in Power Query activity
- Added publicNetworkAccess into FactoryUpdateParameters
]]></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.25.0.0")]
[assembly: AssemblyFileVersion("4.25.0.0")]
[assembly: AssemblyVersion("4.26.0.0")]
[assembly: AssemblyFileVersion("4.26.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 @@ -116,7 +116,8 @@ public class DataFlowJsonSamples : JsonSampleCollection<DataFlowJsonSamples>
""name"": ""CADSource""
}
],
""script"": ""some script""
""script"": ""some script"",
""documentLocale"": ""de-DE""
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7542,6 +7542,51 @@ public class PipelineJsonSamples : JsonSampleCollection<PipelineJsonSamples>
]
}
}
";

[JsonSample]
public const string ExecuteWranglingDataFlowActivityPipelineNew = @"
{
name: ""My Power Query Activity pipeline"",
properties:
{
activities:
[
{
name: ""TestActivity"",
description: ""Test activity description"",
type: ""ExecuteWranglingDataflow"",
typeProperties: {
dataFlow: {
referenceName: ""referenced1"",
type: ""DataFlowReference""
},
staging: {
linkedService: {
referenceName: ""referenced2"",
type: ""LinkedServiceReference""
},
folderPath: ""adfjobs/staging""
},
integrationRuntime: {
referenceName: ""dataflowIR10minTTL"",
type: ""IntegrationRuntimeReference""
},
compute: {
computeType: ""MemoryOptimized"",
coreCount: 8
},
queries:[
{
queryName: """",
dataflowSinks: []
}
]
}
}
]
}
}
";
}
}