Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hub Generated] Publish private branch 'datafactory/mm/add-state' #23910

Merged
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,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