Interface DataScanEvent.DataQualityResultOrBuilder (1.17.0)

public static interface DataScanEvent.DataQualityResultOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

containsDimensionPassed(String key)

public abstract boolean containsDimensionPassed(String key)

The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.

map<string, bool> dimension_passed = 3;

Parameter
Name Description
key String
Returns
Type Description
boolean

getDimensionPassed()

public abstract Map<String,Boolean> getDimensionPassed()
Returns
Type Description
Map<String,java.lang.Boolean>

getDimensionPassedCount()

public abstract int getDimensionPassedCount()

The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.

map<string, bool> dimension_passed = 3;

Returns
Type Description
int

getDimensionPassedMap()

public abstract Map<String,Boolean> getDimensionPassedMap()

The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.

map<string, bool> dimension_passed = 3;

Returns
Type Description
Map<String,java.lang.Boolean>

getDimensionPassedOrDefault(String key, boolean defaultValue)

public abstract boolean getDimensionPassedOrDefault(String key, boolean defaultValue)

The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.

map<string, bool> dimension_passed = 3;

Parameters
Name Description
key String
defaultValue boolean
Returns
Type Description
boolean

getDimensionPassedOrThrow(String key)

public abstract boolean getDimensionPassedOrThrow(String key)

The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.

map<string, bool> dimension_passed = 3;

Parameter
Name Description
key String
Returns
Type Description
boolean

getPassed()

public abstract boolean getPassed()

Whether the data quality result was pass or not.

bool passed = 2;

Returns
Type Description
boolean

The passed.

getRowCount()

public abstract long getRowCount()

The count of rows processed in the data scan job.

int64 row_count = 1;

Returns
Type Description
long

The rowCount.