Skip to content

Commit

Permalink
Add state and onInactiveMarkAs to Synapse activities (#24075)
Browse files Browse the repository at this point in the history
Sync ADF changes (#23910) to Synapse
  • Loading branch information
mikaelmello authored Jun 8, 2023
1 parent 6c157d4 commit 46e158c
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 46e158c

Please sign in to comment.