Skip to content

Commit

Permalink
Add state and onInactiveMarkAs to Synapse activities
Browse files Browse the repository at this point in the history
Sync ADF changes (#23910) to Synapse
  • Loading branch information
mikaelmello committed May 19, 2023
1 parent d0d161e commit ae2a13e
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,31 @@
"description": "Activity description.",
"type": "string"
},
"state": {
"description": "Activity state. This is an optional property and if not provided, the state will be Active by default.",
"type": "string",
"enum": [
"Active",
"Inactive"
],
"x-ms-enum": {
"name": "ActivityState",
"modelAsString": true
}
},
"onInactiveMarkAs": {
"description": "Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.",
"type": "string",
"enum": [
"Succeeded",
"Failed",
"Skipped"
],
"x-ms-enum": {
"name": "ActivityOnInactiveMarkAs",
"modelAsString": true
}
},
"dependsOn": {
"type": "array",
"description": "Activity depends on condition.",
Expand Down

0 comments on commit ae2a13e

Please sign in to comment.