-
Notifications
You must be signed in to change notification settings - Fork 5k
[DataFactory]Added new features into 6.2.0 #28916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 19 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a907aa9
[DataFactory]Added new features into 5.1.0
Jingshu918 c07f03e
update
Jingshu918 4967c05
add one change
Jingshu918 2126b76
Merge pull request #1 from Azure/main
Jingshu923 4b88e53
[DataFactory]Added new features into 5.2.0
Jingshu918 d9b5e65
Merge pull request #2 from Azure/main
Jingshu923 a4d3bbf
[DataFactory]Added new features into 5.3.0
Jingshu918 d1d9bc8
Merge pull request #3 from Azure/main
Jingshu923 82e4632
[DataFactory]Added new features into 5.4.0
Jingshu918 06d1133
Merge pull request #4 from Azure/main
Jingshu923 a9c57f0
[DataFactory]Added new features into 5.5.0
Jingshu918 8dd3fbb
Update
Jingshu918 bfd4f13
Merge pull request #5 from Azure/main
Jingshu923 b6ffa27
[DataFactory]Added new features into 6.1.0
Jingshu918 56c850b
update
Jingshu918 b8a556f
Merge remote-tracking branch 'upstream/main' into main
Jingshu918 5857bc6
[DataFactory]Added new features into 6.2.0
Jingshu918 a8dfb98
fix a build issue
Jingshu918 bcc13f0
update
Jingshu918 e7525ac
update for comments
Jingshu918 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] |
7 changes: 7 additions & 0 deletions
7
sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...osoft.Azure.Management.DataFactory/src/Customizations/ExecuteWranglingDataflowActivity.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = default(IDictionary<string, object>), string description = default(string), IList<ActivityDependency> dependsOn = default(IList<ActivityDependency>), IList<UserProperty> userProperties = default(IList<UserProperty>), DataFlowStagingInfo staging = default(DataFlowStagingInfo), IntegrationRuntimeReference integrationRuntime = default(IntegrationRuntimeReference), ExecuteDataFlowActivityTypePropertiesCompute compute = default(ExecuteDataFlowActivityTypePropertiesCompute), object traceLevel = default(object), object continueOnError = default(object), object runConcurrently = default(object), IDictionary<string, PowerQuerySink> sinks = default(IDictionary<string, PowerQuerySink>), 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(); | ||
} | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Customizations/Factory.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, EncryptionConfiguration encryption, string publicNetworkAccess) | ||
: base(id, name, type, location, tags, eTag) | ||
fengzhou-msft marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
AdditionalProperties = additionalProperties; | ||
Identity = identity; | ||
ProvisioningState = provisioningState; | ||
CreateTime = createTime; | ||
Version = version; | ||
RepoConfiguration = repoConfiguration; | ||
GlobalParameters = globalParameters; | ||
Encryption = encryption; | ||
PublicNetworkAccess = publicNetworkAccess; | ||
CustomInit(); | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...ctory/Microsoft.Azure.Management.DataFactory/src/Generated/DataFactoryManagementClient.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.