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
4 changes: 2 additions & 2 deletions eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ 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=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Projects\azure-sdk-for-net\sdk
2020-02-24 04:15:25 UTC
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\azure-sdk-for-net\sdk
2020-02-24 03:32:36 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog for the Azure Data Factory V2 .NET SDK

## Version 4.8.0
### Feature Additions
- Added new API to query on triggers with filters like type and parentTrigger
- Fixed offset value validation in self dependency and trigger dependency for tumbling window trigger, now accepts negative offsets
- Introduced a new rerunTumblingWindowTrigger which can rerun multiple windows of an existing tumblingWindowTrigger with independent concurrency
- Added rerun from failed activity support for create pipeline run
- Added apiVersion property and set SecurityToken from required to optional for Salesforce
- Added connectionString property to DB2 linked service
- Added useTempFileRename to SFTP sink
- Added additionalColumns for copy source
- Added validate data consistency for copy activity
- Added support session log for copy activity
- Added isolationLevel for sql source
- Added expiryDateTime for ADLS Gen1 source
- Added fileListPath for binary sources

## Version 4.7.0
### Feature Additions
- Added compute support in execute data flow activity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,6 @@ public partial class DataFactoryManagementClient : ServiceClient<DataFactoryMana
/// </summary>
public virtual ITriggerRunsOperations TriggerRuns { get; private set; }

/// <summary>
/// Gets the IRerunTriggersOperations.
/// </summary>
public virtual IRerunTriggersOperations RerunTriggers { get; private set; }

/// <summary>
/// Gets the IDataFlowsOperations.
/// </summary>
Expand Down Expand Up @@ -409,7 +404,6 @@ private void Initialize()
ActivityRuns = new ActivityRunsOperations(this);
Triggers = new TriggersOperations(this);
TriggerRuns = new TriggerRunsOperations(this);
RerunTriggers = new RerunTriggersOperations(this);
DataFlows = new DataFlowsOperations(this);
DataFlowDebugSession = new DataFlowDebugSessionOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
Expand Down Expand Up @@ -461,8 +455,6 @@ private void Initialize()
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<Trigger>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<DataFlow>("type"));
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<DataFlow>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<DependencyReference>("type"));
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<DependencyReference>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<WebLinkedServiceTypeProperties>("authenticationType"));
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<WebLinkedServiceTypeProperties>("authenticationType"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<DatasetCompression>("type"));
Expand All @@ -471,6 +463,8 @@ private void Initialize()
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<DatasetStorageFormat>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<DatasetLocation>("type"));
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<DatasetLocation>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<DependencyReference>("type"));
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<DependencyReference>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<StoreReadSettings>("type"));
DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter<StoreReadSettings>("type"));
SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter<FormatReadSettings>("type"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,6 @@ public partial interface IDataFactoryManagementClient : System.IDisposable
/// </summary>
ITriggerRunsOperations TriggerRuns { get; }

/// <summary>
/// Gets the IRerunTriggersOperations.
/// </summary>
IRerunTriggersOperations RerunTriggers { get; }

/// <summary>
/// Gets the IDataFlowsOperations.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,11 @@ public partial interface IPipelinesOperations
/// In recovery mode, the rerun will start from this activity. If not
/// specified, all activities will run.
/// </param>
/// <param name='startFromFailure'>
/// In recovery mode, if set to true, the rerun will start from failed
/// activities. The property will be used only if startActivityName is
/// not specified.
/// </param>
/// <param name='parameters'>
/// Parameters of the pipeline run. These parameters will be used only
/// if the runId is not specified.
Expand All @@ -186,7 +191,7 @@ public partial interface IPipelinesOperations
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown when a required parameter is null
/// </exception>
Task<AzureOperationResponse<CreateRunResponse>> CreateRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default(string), bool? isRecovery = default(bool?), string startActivityName = default(string), IDictionary<string, object> parameters = default(IDictionary<string, object>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
Task<AzureOperationResponse<CreateRunResponse>> CreateRunWithHttpMessagesAsync(string resourceGroupName, string factoryName, string pipelineName, string referencePipelineRunId = default(string), bool? isRecovery = default(bool?), string startActivityName = default(string), bool? startFromFailure = default(bool?), IDictionary<string, object> parameters = default(IDictionary<string, object>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Lists pipelines.
/// </summary>
Expand Down

This file was deleted.

Loading