Skip to content

Commit

Permalink
[Datafactory] Add source/sink linked service/schema linked service su…
Browse files Browse the repository at this point in the history
…pport for Data Flow (#12528)

* SDK changes for source/sink linked service/schema LS

* update
  • Loading branch information
richardkz authored Jun 8, 2020
1 parent 77f5144 commit afb2903
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 5 deletions.
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""
}
}
}
";
}
}

0 comments on commit afb2903

Please sign in to comment.