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

[DataFactory] validation activity #5473

Merged
merged 2 commits into from
Mar 29, 2019
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 @@ -3219,6 +3219,53 @@
"activities"
]
},
"ValidationActivity": {
"x-ms-discriminator-value": "Validation",
"description": "This activity verifies that an external resource exists.",
"allOf": [
{
"$ref": "#/definitions/ControlActivity"
}
],
"properties": {
"typeProperties": {
"description": "Validation activity properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/ValidationActivityTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"ValidationActivityTypeProperties": {
"description": "Validation activity properties.",
"properties": {
"timeout": {
"type": "object",
"description": "Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
},
"sleep": {
"type": "object",
"description": "A delay in seconds between validation attempts. If no value is specified, 10 seconds will be used as the default. Type: integer (or Expression with resultType integer)."
},
"minimumSize": {
"type": "object",
"description": "Can be used if dataset points to a file. The file must be greater than or equal in size to the value specified. Type: integer (or Expression with resultType integer)."
},
"childItems": {
"type": "object",
"description": "Can be used if dataset points to a folder. If set to true, the folder must have at least one file. If set to false, the folder must be empty. Type: boolean (or Expression with resultType boolean)."
},
"dataset": {
"description": "Validation activity dataset reference.",
"$ref": "../datafactory.json#/definitions/DatasetReference"
}
},
"required": [
"dataset"
]
},
"FilterActivity": {
"x-ms-discriminator-value": "Filter",
"description": "Filter and return results from input array based on the conditions.",
Expand Down