Class SkipErrorFile
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.SkipErrorFile
-
public final class SkipErrorFile extends Object
Skip error file.
-
-
Constructor Summary
Constructors Constructor Description SkipErrorFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
dataInconsistency()
Get the dataInconsistency property: Skip if source/sink file changed by other concurrent write.Object
fileMissing()
Get the fileMissing property: Skip if file is deleted by other client during copy.void
validate()
Validates the instance.SkipErrorFile
withDataInconsistency(Object dataInconsistency)
Set the dataInconsistency property: Skip if source/sink file changed by other concurrent write.SkipErrorFile
withFileMissing(Object fileMissing)
Set the fileMissing property: Skip if file is deleted by other client during copy.
-
-
-
Method Detail
-
fileMissing
public Object fileMissing()
Get the fileMissing property: Skip if file is deleted by other client during copy. Default is true. Type: boolean (or Expression with resultType boolean).- Returns:
- the fileMissing value.
-
withFileMissing
public SkipErrorFile withFileMissing(Object fileMissing)
Set the fileMissing property: Skip if file is deleted by other client during copy. Default is true. Type: boolean (or Expression with resultType boolean).- Parameters:
fileMissing
- the fileMissing value to set.- Returns:
- the SkipErrorFile object itself.
-
dataInconsistency
public Object dataInconsistency()
Get the dataInconsistency property: Skip if source/sink file changed by other concurrent write. Default is false. Type: boolean (or Expression with resultType boolean).- Returns:
- the dataInconsistency value.
-
withDataInconsistency
public SkipErrorFile withDataInconsistency(Object dataInconsistency)
Set the dataInconsistency property: Skip if source/sink file changed by other concurrent write. Default is false. Type: boolean (or Expression with resultType boolean).- Parameters:
dataInconsistency
- the dataInconsistency value to set.- Returns:
- the SkipErrorFile object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-