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
Original file line number Diff line number Diff line change
Expand Up @@ -3496,5 +3496,57 @@ public class PipelineJsonSamples : JsonSampleCollection<PipelineJsonSamples>
}
}
";

[JsonSample(version: "WebhookActivity")]
public const string Webhook = @"
{
name: ""MyPipelineName"",
properties: {
activities: [
{
""name"": ""Webhook1"",
""type"": ""WebHook"",
""typeProperties"": {
""url"": ""http://samplesample.azurewebsites.net/api/execute/webhook"",
""method"": ""POST"",
""headers"": {
""Content-Type"": ""application/json""
},
""body"": {
""key"": ""value""
},
""timeout"": ""00:03:00""
}
}
]
}
}";

[JsonSample(version: "ValidationActivity")]
public const string Validation = @"
{
name: ""MyPipelineName"",
properties: {
activities: [
{
    ""type"": ""Validation"",
    ""name"": ""ValidationActivity"",
    ""description"": ""Test activity description"",
    ""typeProperties"": {
        ""timeout"": ""00:03:00"",
        ""sleep"": 10,
        ""minimumSize"": {
            ""type"": ""Expression"",
            ""value"": ""@add(0,1)""
},
     ""dataset"": {
         ""referenceName"": ""FileDataset"",
         ""type"": ""DatasetReference""
     }
}
}
]
}
}";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,12 @@
<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>3.0.1</Version>
<Version>3.0.2</Version>
<AssemblyName>Microsoft.Azure.Management.DataFactory</AssemblyName>
<PackageTags>Microsoft Azure resource management;Data Factory;ADF;</PackageTags>
<PackageReleaseNotes> <![CDATA[
- Fixed AzureFunctionActivity
- Added support for RestService Source
- Added support for SAP BW Open Hub Source
- Added support for collectionReference
- Added recovery mode for more advanced pipeline run retry capabilities (i.e. from a specific activity)
- Added newClusterDriverNodeType, newClusterInitScripts, and newClusterEnableElasticDisk properties to DataBricks linked service
- Added retentionTimeInDays property to CustomActivity
- New connectors supported as Copy source:
* Office365
* Native MongoDB
* CosmosDB MongoDB API
* ADLS Gen2
* Dynamics AX
* Azure Data Explorer
* Oracle Service Cloud
* GoogleAdWords
- New connector supported as copy sink:
* ADLS Gen2
* CosmosDB MongoDB API
* Azure Data Explorer
- Added support for incremental copy of files based on the lastModifiedTime for S3, File and Blob
- Added support to copy data from ADLS Gen1 to ADLS Gen2 with ACL
- Added support for ServiceUrl in the existing S3 linked service
- Added support for AADServicePrincipal authentication in OData linked service
- Added support for maxConcurrentConnections in copy source and sink
- Added new Validation and Webhook activities
- Added annotation property to Trigger resource
]]></PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[assembly: AssemblyTitle("Microsoft Azure Data Factory Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Factory Resources.")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.1.0")]
[assembly: AssemblyFileVersion("3.0.2.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
Expand Down
5 changes: 5 additions & 0 deletions src/SDKs/DataFactory/Management.DataFactory/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
## Current version
### Feature Additions

## Version 3.0.2
### Feature Additions
- Added new Validation and Webhook activities
- Added annotation property to Trigger resource

## Version 3.0.1
### Feature Additions
- Fixed AzureFunctionActivity
Expand Down