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] Add source/sink linked service/schema linked service support for Data Flow #12528

Merged
merged 3 commits into from
Jun 8, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +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:\Git\AdmsSdkChange\sdk
2020-05-26 06:33:38 UTC
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=C:\Users\rizh\Documents\azure-sdk-for-net\sdk
2020-06-04 20:56:39 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 98f100daf12446cbdc6359ba9b34e8a10f8410f3
Commit: c3dd5df2863101b56eef256b810927cdcc4e44d2
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 support for specifying a linked service as a Data Flow source and sink type
- Added support for providing a schema linked service reference within Data Flow sources and sinks

## Version 4.11.0
### Feature Additions
- Added support for the follwoing new datasets in ADF - ExcelDataset, along with source and sink for Copy activity
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.

Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,45 @@ public class DataFlowJsonSamples : JsonSampleCollection<DataFlowJsonSamples>
}
}
}
";
[JsonSample]
public const string MappingDataFlowWithLinkedServices = @"
{
""name"": ""exampleDataFlow"",
""properties"": {
""description"": ""Sample demo data flow to convert currencies showing usage of union, derive and conditional split transformation."",
""type"": ""MappingDataFlow"",
""typeProperties"": {
""sources"": [
{
""linkedService"": {
""referenceName"": ""SourceLinkedService"",
""type"": ""LinkedServiceReference""
},
""schemaLinkedService"": {
""referenceName"": ""SourceSchemaLinkedService"",
""type"": ""LinkedServiceReference""
},
""name"": ""USDCurrency""
}
],
""sinks"": [
{
""linkedService"": {
""referenceName"": ""SinkLinkedService"",
""type"": ""LinkedServiceReference""
},
""schemaLinkedService"": {
""referenceName"": ""SinkSchemaLinkedService"",
""type"": ""LinkedServiceReference""
},
""name"": ""USDSink""
}
],
""script"": ""some script""
}
}
}
";
}
}