Skip to content
Closed
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
8 changes: 4 additions & 4 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=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Git\Azure\azure-sdk-for-net\sdk
2020-01-16 03:29:55 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
Commit: e6a133198d4bc7e0cc8a3e42f8e10c5353a1d4ed
Commit: 7e6f562210b6223a186d22ed3d7f2b38e4efdfe2
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4407
Bootstrapper version: autorest@2.0.4413
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog for the Azure Data Factory V2 .NET SDK

## Version 4.7.1
### Feature Additions
- 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