-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DataFactory]Added new features into 6.0.0 (#28135)
* [DataFactory]Added new features into 5.1.0 * update * add one change * [DataFactory]Added new features into 5.2.0 * [DataFactory]Added new features into 5.3.0 * [DataFactory]Added new features into 5.4.0 * [DataFactory]Added new features into 5.5.0 * Update
- Loading branch information
1 parent
bba0666
commit 64b55ac
Showing
9 changed files
with
126 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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-03-21 01:51:54 UTC | ||
2022-04-11 01:10:45 UTC | ||
Azure-rest-api-specs repository information | ||
GitHub fork: Azure | ||
Branch: main | ||
Commit: 0d9772a5c3a716070662572a2a7700718cfba959 | ||
Commit: 74ca59fc8cb6563d5a9d66fb533b8622522143eb | ||
AutoRest information | ||
Requested version: v2 | ||
Bootstrapper version: [email protected] |
6 changes: 6 additions & 0 deletions
6
sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/CHANGELOG.md
This file contains 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
30 changes: 30 additions & 0 deletions
30
...tory/Microsoft.Azure.Management.DataFactory/src/Customizations/ExecutePipelineActivity.cs
This file contains 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,30 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Microsoft.Azure.Management.DataFactory.Models | ||
{ | ||
public partial class ExecutePipelineActivity : ControlActivity | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the ExecutePipelineActivity class. | ||
/// </summary> | ||
/// <param name="name">Activity name.</param> | ||
/// <param name="pipeline">Pipeline 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="parameters">Pipeline parameters.</param> | ||
/// <param name="waitOnCompletion">Defines whether activity execution | ||
/// will wait for the dependent pipeline execution to finish. Default | ||
/// is false.</param> | ||
public ExecutePipelineActivity(string name, PipelineReference pipeline, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), string description = default(string), IList<ActivityDependency> dependsOn = default(IList<ActivityDependency>), IList<UserProperty> userProperties = default(IList<UserProperty>), IDictionary<string, object> parameters = default(IDictionary<string, object>), bool? waitOnCompletion = default(bool?)) | ||
: base(name, additionalProperties, description, dependsOn, userProperties) | ||
{ | ||
Pipeline = pipeline; | ||
Parameters = parameters; | ||
WaitOnCompletion = waitOnCompletion; | ||
CustomInit(); | ||
} | ||
} | ||
} |
10 changes: 9 additions & 1 deletion
10
...ry/Microsoft.Azure.Management.DataFactory/src/Generated/Models/ExecutePipelineActivity.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
67 changes: 67 additions & 0 deletions
67
...rosoft.Azure.Management.DataFactory/src/Generated/Models/ExecutePipelineActivityPolicy.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...oft.Azure.Management.DataFactory/src/Generated/Models/SqlServerStoredProcedureActivity.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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