Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
[AutoPR datafactory/resource-manager] Revert DataFactory Validation A…
Browse files Browse the repository at this point in the history
…ctivity (#4565)

* Generated from 8563137e443a4e600ee6f4216c7c37abc9b47a6d

revert validation activity

* Generated from 8563137e443a4e600ee6f4216c7c37abc9b47a6d

revert validation activity
  • Loading branch information
AutorestCI authored Jan 18, 2019
1 parent 4a1d07b commit 1135dd4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
28 changes: 0 additions & 28 deletions lib/services/datafactoryManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7028,34 +7028,6 @@ export interface FilterActivity extends ControlActivity {
condition: Expression;
}

/**
* This activity blocks execution until a file has been validated to exist, with an optional
* minimum size, or the timeout is reached, whichever is earlier.
*/
export interface ValidationActivity extends ControlActivity {
/**
* 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])). Type:
* string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
timeout?: any;
/**
* A delay in seconds between validation attempts. If no value is specified, 10 seconds will be
* used as the default.
*/
sleep?: number;
/**
* Minimum size of a file in byte. If no value is specified, 0 byte will be used as the default.
*/
minimumSize?: number;
/**
* Validation activity dataset reference.
*/
dataset: DatasetReference;
}

/**
* This activity executes inner activities until the specified boolean expression results to true
* or timeout is reached, whichever is earlier.
Expand Down
2 changes: 0 additions & 2 deletions lib/services/datafactoryManagement/lib/models/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ exports.ControlActivity = require('./controlActivity');
exports.AppendVariableActivity = require('./appendVariableActivity');
exports.SetVariableActivity = require('./setVariableActivity');
exports.FilterActivity = require('./filterActivity');
exports.ValidationActivity = require('./validationActivity');
exports.UntilActivity = require('./untilActivity');
exports.WaitActivity = require('./waitActivity');
exports.ForEachActivity = require('./forEachActivity');
Expand Down Expand Up @@ -643,7 +642,6 @@ exports.discriminators = {
'Activity.AppendVariable' : exports.AppendVariableActivity,
'Activity.SetVariable' : exports.SetVariableActivity,
'Activity.Filter' : exports.FilterActivity,
'Activity.Validation' : exports.ValidationActivity,
'Activity.Until' : exports.UntilActivity,
'Activity.Wait' : exports.WaitActivity,
'Activity.ForEach' : exports.ForEachActivity,
Expand Down

0 comments on commit 1135dd4

Please sign in to comment.