Skip to content

Commit

Permalink
[DataFactory]Added new features into 6.2.0 (Azure#28916)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingshu923 authored and sarkar-rajarshi committed Jun 10, 2022
1 parent 974187a commit 5f36fc9
Show file tree
Hide file tree
Showing 18 changed files with 1,917 additions and 12 deletions.
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 @@ -5,11 +5,11 @@ Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/datafactory/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Projects\azure-sdk-for-net\sdk
Autorest CSharp Version: 2.3.82
2022-04-26 01:41:21 UTC
2022-05-23 02:58:44 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: main
Commit: fb32676995912336709a2af7d7250e0b63c9333d
Commit: d916ae110aa385d49cd24787a05611345696644b
AutoRest information
Requested version: v2
Bootstrapper version: [email protected]
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog for the Azure Data Factory V2 .NET SDK

## Version 6.2.0
### Feature Additions
- Added globalParameters apis into ADF
- Added support for running staging on multiple sources in parallel
- Added purview configuration into ADF
- Added support rejected data linked service in dataflow sink

## Version 6.1.0
### Feature Additions
- Added Dataworld, AppFigures, Asana, Twilio connectors in ADF
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
using System.Collections.Generic;

namespace Microsoft.Azure.Management.DataFactory.Models
{
public partial class ExecuteWranglingDataflowActivity : Activity
{
/// <summary>
/// Initializes a new instance of the ExecuteWranglingDataflowActivity
/// class.
/// </summary>
/// <param name="name">Activity name.</param>
/// <param name="dataFlow">Data flow reference.</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="description">Activity description.</param>
/// <param name="dependsOn">Activity depends on condition.</param>
/// <param name="userProperties">Activity user properties.</param>
/// <param name="staging">Staging info for execute data flow
/// activity.</param>
/// <param name="integrationRuntime">The integration runtime
/// reference.</param>
/// <param name="compute">Compute properties for data flow
/// activity.</param>
/// <param name="traceLevel">Trace level setting used for data flow
/// monitoring output. Supported values are: 'coarse', 'fine', and
/// 'none'. Type: string (or Expression with resultType string)</param>
/// <param name="continueOnError">Continue on error setting used for
/// data flow execution. Enables processing to continue if a sink
/// fails. Type: boolean (or Expression with resultType
/// boolean)</param>
/// <param name="runConcurrently">Concurrent run setting used for data
/// flow execution. Allows sinks with the same save order to be
/// processed concurrently. Type: boolean (or Expression with
/// resultType boolean)</param>
/// <param name="sinks">(Deprecated. Please use Queries). List of Power
/// Query activity sinks mapped to a queryName.</param>
/// <param name="queries">List of mapping for Power Query mashup query
/// to sink dataset(s).</param>
/// <param name="policy">Activity policy.</param>
public ExecuteWranglingDataflowActivity(string name, DataFlowReference dataFlow, IDictionary<string, object> additionalProperties, string description, IList<ActivityDependency> dependsOn, IList<UserProperty> userProperties, DataFlowStagingInfo staging, IntegrationRuntimeReference integrationRuntime, ExecuteDataFlowActivityTypePropertiesCompute compute, object traceLevel, object continueOnError, object runConcurrently, IDictionary<string, PowerQuerySink> sinks, IList<PowerQuerySinkMapping> queries = default(IList<PowerQuerySinkMapping>), ActivityPolicy policy = default(ActivityPolicy))
: base(name, additionalProperties, description, dependsOn, userProperties)
{
DataFlow = dataFlow;
Staging = staging;
IntegrationRuntime = integrationRuntime;
Compute = compute;
TraceLevel = traceLevel;
ContinueOnError = continueOnError;
RunConcurrently = runConcurrently;
Sinks = sinks;
Queries = queries;
Policy = policy;
CustomInit();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
using System.Collections.Generic;

namespace Microsoft.Azure.Management.DataFactory.Models
{
public partial class Factory : Resource
{
/// <summary>
/// Initializes a new instance of the Factory class.
/// </summary>
/// <param name="id">The resource identifier.</param>
/// <param name="name">The resource name.</param>
/// <param name="type">The resource type.</param>
/// <param name="location">The resource location.</param>
/// <param name="tags">The resource tags.</param>
/// <param name="eTag">Etag identifies change in the resource.</param>
/// <param name="additionalProperties">Unmatched properties from the
/// message are deserialized this collection</param>
/// <param name="identity">Managed service identity of the
/// factory.</param>
/// <param name="provisioningState">Factory provisioning state, example
/// Succeeded.</param>
/// <param name="createTime">Time the factory was created in ISO8601
/// format.</param>
/// <param name="version">Version of the factory.</param>
/// <param name="repoConfiguration">Git repo information of the
/// factory.</param>
/// <param name="globalParameters">List of parameters for
/// factory.</param>
/// <param name="encryption">Properties to enable Customer Managed Key
/// for the factory.</param>
/// <param name="publicNetworkAccess">Whether or not public network
/// access is allowed for the data factory. Possible values include:
/// 'Enabled', 'Disabled'</param>
public Factory(string id, string name, string type, string location, IDictionary<string, string> tags, string eTag, IDictionary<string, object> additionalProperties, FactoryIdentity identity, string provisioningState, System.DateTime? createTime, string version, FactoryRepoConfiguration repoConfiguration, IDictionary<string, GlobalParameterSpecification> globalParameters = default(IDictionary<string, GlobalParameterSpecification>), EncryptionConfiguration encryption = default(EncryptionConfiguration), string publicNetworkAccess = default(string))
: base(id, name, type, location, tags, eTag)
{
AdditionalProperties = additionalProperties;
Identity = identity;
ProvisioningState = provisioningState;
CreateTime = createTime;
Version = version;
RepoConfiguration = repoConfiguration;
GlobalParameters = globalParameters;
Encryption = encryption;
PublicNetworkAccess = publicNetworkAccess;
CustomInit();
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5f36fc9

Please sign in to comment.