Skip to content

Commit 90082f9

Browse files
mikaelmelloharryli0108
authored andcommitted
Add state and onInactiveMarkAs to Synapse activities (Azure#24075)
Sync ADF changes (Azure#23910) to Synapse
1 parent 7964154 commit 90082f9

File tree

1 file changed

+25
-0
lines changed
  • specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes

1 file changed

+25
-0
lines changed

specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,31 @@
7878
"description": "Activity description.",
7979
"type": "string"
8080
},
81+
"state": {
82+
"description": "Activity state. This is an optional property and if not provided, the state will be Active by default.",
83+
"type": "string",
84+
"enum": [
85+
"Active",
86+
"Inactive"
87+
],
88+
"x-ms-enum": {
89+
"name": "ActivityState",
90+
"modelAsString": true
91+
}
92+
},
93+
"onInactiveMarkAs": {
94+
"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.",
95+
"type": "string",
96+
"enum": [
97+
"Succeeded",
98+
"Failed",
99+
"Skipped"
100+
],
101+
"x-ms-enum": {
102+
"name": "ActivityOnInactiveMarkAs",
103+
"modelAsString": true
104+
}
105+
},
81106
"dependsOn": {
82107
"type": "array",
83108
"description": "Activity depends on condition.",

0 commit comments

Comments
 (0)