Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
aa409a4
DataFactory Swagger Change for SapOpenHub and Rest (#5195)
wenbof Feb 19, 2019
aab4327
Add cognitive service AnomalyFinder (#5126)
moreOver0 Feb 19, 2019
a3e4864
Improving secretVersion description (#5220)
DCtheGeek Feb 19, 2019
a8024db
[Cogsvcs] LUIS - add text to simple entity description (#5216)
diberry Feb 19, 2019
db5576a
Add hwRevision field to HanaInstance definition (#5196)
AprilZhaoWY Feb 19, 2019
c635691
[DataFactory] Swagger changes for ADF newly released features: (#5218)
wuchunchunt19 Feb 20, 2019
a51a0cf
Node v 10. (#5236)
sergey-shandar Feb 20, 2019
847850a
Remove API reference of Gender::genderless. (#5188)
lebronJ Feb 20, 2019
3099de0
Add an Operations API for Commitment Plan RP (#5222)
weedqian Feb 20, 2019
541a1c8
Fix NewtonSoftJson Issue (#5240)
sarangan12 Feb 20, 2019
145e03e
Support create pipeline run with recovery mode
LijuanZ Feb 20, 2019
a5792e1
Update description of isLatest
LijuanZ Feb 20, 2019
ad2e0e2
Update descriptions
LijuanZ Feb 20, 2019
161196e
update autorest version to fix CI
jhendrixMSFT Feb 21, 2019
5dc9ec3
Add suppresses for Machine Learning Commitment Plan RP (#5221)
weedqian Feb 21, 2019
29f93fd
typo: datafactory/resource-manager/Microsoft.DataFactory/stable/2018-…
nschonni Feb 21, 2019
90f6af0
scripts (#5213)
sergey-shandar Feb 21, 2019
ad7f124
Fix for lintdiff tool memory issue. (#5246)
sergey-shandar Feb 21, 2019
9a4471b
2019 Azure Stack hybrid Profile. (#5212)
sijuman Feb 22, 2019
c24c50c
[Azure Search] Add Suggest and Index APIs to data plane Swagger spec …
brjohnstmsft Feb 22, 2019
d4efa60
Adding new properties to Databricks LS and custom activity (#5214)
hvermis Feb 22, 2019
a1ee96b
typo: instantitate -> instantiate (#5251)
nschonni Feb 22, 2019
5df40b9
Users/laramume/addv2.1 swagger (#5187)
laramume Feb 22, 2019
1b8a97c
Update swagger file and examples with time zone parameter (#5224)
NMijat1024 Feb 22, 2019
a9e7c4f
Minor (but improtant) changes in Azure DevOps pipeline. (#5253)
sergey-shandar Feb 22, 2019
a628a43
[Ready to MERGE] Swagger for Tenant Properties API (#5038)
santoshsinha100 Feb 22, 2019
dbfe24f
Add JavaScript/TypeScript generation details to resource-manager/neta…
Feb 25, 2019
672c412
Azure Security Center - break-to-composite v1 (#5197)
eliagrady Feb 25, 2019
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
Prev Previous commit
Next Next commit
Support create pipeline run with recovery mode
  • Loading branch information
LijuanZ authored and jhendrixMSFT committed Feb 21, 2019
commit 145e03e0d29750b54c570764df872f7174d600fb
Original file line number Diff line number Diff line change
Expand Up @@ -2268,6 +2268,22 @@
"type": "string",
"x-ms-parameter-location": "method"
},
{
"name": "isRecovery",
"description": "Recovery mode flag. If recovery mode is set to true, the specified referenced pipeline run and the new run will be grouped under the same groupId.",
"in": "query",
"required": false,
"type": "boolean",
"x-ms-parameter-location": "method"
},
{
"name": "startActivityName",
"description": "In recovery mode, the specified startActivityName will be the first activity in the pipeline to be run. If not specified, all activities will run",
"in": "query",
"required": false,
"type": "string",
"x-ms-parameter-location": "method"
},
{
"name": "parameters",
"description": "Parameters of the pipeline run. These parameters will be used only if the runId is not specified.",
Expand Down Expand Up @@ -4093,7 +4109,9 @@
"ActivityRunEnd",
"ActivityType",
"TriggerName",
"TriggerRunTimestamp"
"TriggerRunTimestamp",
"RunGroupId",
"LatestOnly"
],
"x-ms-enum": {
"name": "RunQueryFilterOperand",
Expand Down Expand Up @@ -4198,6 +4216,16 @@
"type": "string",
"readOnly": true
},
"runGroupId": {
"description": "Identifier that correlates all the recovery runs of a pipeline run.",
"type": "string",
"readOnly": true
},
"isLatest": {
"description": "True for the last recovered pipeline run.",
"type": "boolean",
"readOnly": true
},
"pipelineName": {
"description": "The pipeline name.",
"type": "string",
Expand Down