Skip to content
Closed
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
31 changes: 31 additions & 0 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,37 @@
"type": "string",
"description": "Activity name."
},
"onInactiveMarkAs": {
"oneOf": [
{
"type": "string",
"enum": [
"Succeeded",
"Failed",
"Skipped"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"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."
},
"state": {
"oneOf": [
{
"type": "string",
"enum": [
"Active",
"Inactive"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Activity state. This is an optional property and if not provided, the state will be Active by default."
},
"userProperties": {
"oneOf": [
{
Expand Down