-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Data Factory] Adding Chaining Trigger (#7469)
* Adding Chaining Trigger * Updated after running generate.ps1
- Loading branch information
Showing
6 changed files
with
204 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Installing AutoRest version: latest | ||
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=E:\GitHub\azure-sdk-for-net\sdk | ||
2019-09-11 03:53:44 UTC | ||
Azure-rest-api-specs repository information | ||
GitHub fork: Azure | ||
Branch: master | ||
Commit: d46d469dc7a9a9462a03649d01c48fe9f422a74f | ||
AutoRest information | ||
Requested version: latest | ||
Bootstrapper version: [email protected] |
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
49 changes: 49 additions & 0 deletions
49
...factory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/TriggerRunJsonSamples.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,49 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
|
||
using DataFactory.Tests.Utils; | ||
|
||
namespace DataFactory.Tests.JsonSamples | ||
{ | ||
public class TriggerRunJsonSamples : JsonSampleCollection<TriggerRunJsonSamples> | ||
{ | ||
[JsonSample] | ||
public const string ChainingTriggerRunSample = @" | ||
{ | ||
""value"": [ | ||
{ | ||
""triggerName"": ""chainingTrigger"", | ||
""triggerRunId"": ""8e2dc34d-2c0d-455a-a339-c48531129f1d"", | ||
""triggerType"": ""ChainingTrigger"", | ||
""triggerRunTimestamp"": ""2019-09-03T19:21:25.696491Z"", | ||
""status"": ""Succeeded"", | ||
""message"": null, | ||
""properties"": { | ||
""TriggerTime"": ""9/3/2019 7:23:44 PM"" | ||
}, | ||
""triggeredPipelines"": { | ||
""childPipeline"": ""d93fc338-d2ac-4e81-9f2a-0af9d1347d5b"" | ||
}, | ||
""groupId"": ""8e2dc34d-2c0d-455a-a339-c48531129f1d"", | ||
""dependencyStatus"": { | ||
""parentPipeline1"": { | ||
""Id"": ""46e0c003-e1c5-4d44-abd3-433177c41684"", | ||
""Status"": ""Succeeded"", | ||
""RunStart"": ""2019-09-03T19:21:25.696491Z"" | ||
}, | ||
""parentPipeline2"": { | ||
""Id"": ""9353ea77-4ce0-458c-8431-21033494475e"", | ||
""Status"": ""Succeeded"", | ||
""RunStart"": ""2019-09-03T19:23:31.8215466Z"" | ||
} | ||
}, | ||
""runDimension"": { | ||
""JobId"": ""bc5df11f-1e94-4d86-b0bf-d99c786f1419"" | ||
} | ||
} | ||
] | ||
}"; | ||
|
||
} | ||
} |
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