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] Review request for Microsoft.DataFactory to add version stable/2018-06-01 #17189

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 @@ -6726,6 +6726,44 @@
"waitTimeInSeconds"
]
},
"FailActivity": {
"x-ms-discriminator-value": "Fail",
"type": "object",
"description": "This activity will fail within its own scope and output a custom error message and error code. The error message and code can provided either as a string literal or as an expression that can be evaluated to a string at runtime. The activity scope can be the whole pipeline or a control activity (e.g. foreach, switch, until), if the fail activity is contained in it.",
"allOf": [
{
"$ref": "#/definitions/ControlActivity"
}
],
"properties": {
"typeProperties": {
"description": "Fail activity properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/FailActivityTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"FailActivityTypeProperties": {
"description": "Fail activity properties.",
"type": "object",
"properties": {
"message": {
"description": "The error message that surfaced in the Fail activity. It can be dynamic content that's evaluated to a non empty/blank string at runtime. Type: string (or Expression with resultType string).",
"type": "object"
},
"errorCode": {
"description": "The error code that categorizes the error type of the Fail activity. It can be dynamic content that's evaluated to a non empty/blank string at runtime. Type: string (or Expression with resultType string).",
"type": "object"
}
},
"required": [
"message",
"errorCode"
]
},
"UntilActivity": {
"x-ms-discriminator-value": "Until",
"description": "This activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier.",
Expand Down