ValidationActivity Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ValidationActivity() |
Initializes a new instance of the ValidationActivity class. |
ValidationActivity(String, DatasetReference, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, Object, Object, Object, Object) |
Initializes a new instance of the ValidationActivity class. |
ValidationActivity()
Initializes a new instance of the ValidationActivity class.
public ValidationActivity ();
Public Sub New ()
Applies to
ValidationActivity(String, DatasetReference, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, Object, Object, Object, Object)
Initializes a new instance of the ValidationActivity class.
public ValidationActivity (string name, Microsoft.Azure.Management.DataFactory.Models.DatasetReference dataset, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> dependsOn = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> userProperties = default, object timeout = default, object sleep = default, object minimumSize = default, object childItems = default);
new Microsoft.Azure.Management.DataFactory.Models.ValidationActivity : string * Microsoft.Azure.Management.DataFactory.Models.DatasetReference * System.Collections.Generic.IDictionary<string, obj> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.ValidationActivity
Public Sub New (name As String, dataset As DatasetReference, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional dependsOn As IList(Of ActivityDependency) = Nothing, Optional userProperties As IList(Of UserProperty) = Nothing, Optional timeout As Object = Nothing, Optional sleep As Object = Nothing, Optional minimumSize As Object = Nothing, Optional childItems As Object = Nothing)
Parameters
- name
- String
Activity name.
- dataset
- DatasetReference
Validation activity dataset reference.
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- description
- String
Activity description.
- dependsOn
- IList<ActivityDependency>
Activity depends on condition.
- userProperties
- IList<UserProperty>
Activity user properties.
- timeout
- Object
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
- Object
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
- Object
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
- Object
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).
Applies to
Azure SDK for .NET