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 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
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\Azure\azure-sdk-for-net\sdk
2020-06-03 08:26:23 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-05 14:15:34 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 41346a1b8bcf8265d7e86d844a72acc7ed9cfa1a
Commit: 09ac2b33d780dbf2f74de2083012f62aaa33c451
AutoRest information
Requested version: v2
Bootstrapper version: autorest@2.0.4413
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Version 4.9.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
- Added support for xml dataset in ADF
- Added support for excel dataset in ADF
- Added new type conversion support in Copy activity
Expand Down

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""
}
}
}
";
}
}