Package com.google.cloud.dataplex.v1
Interface DataScanEvent.DataQualityResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataScanEvent.DataQualityResult
,DataScanEvent.DataQualityResult.Builder
- Enclosing class:
- DataScanEvent
public static interface DataScanEvent.DataQualityResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsDimensionPassed(String key)
The result of each dimension for data quality result.Map<String,Boolean>
getDimensionPassed()
Deprecated.int
getDimensionPassedCount()
The result of each dimension for data quality result.Map<String,Boolean>
getDimensionPassedMap()
The result of each dimension for data quality result.boolean
getDimensionPassedOrDefault(String key, boolean defaultValue)
The result of each dimension for data quality result.boolean
getDimensionPassedOrThrow(String key)
The result of each dimension for data quality result.boolean
getPassed()
Whether the data quality result was `pass` or not.long
getRowCount()
The count of rows processed in the data scan job.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRowCount
long getRowCount()
The count of rows processed in the data scan job.
int64 row_count = 1;
- Returns:
- The rowCount.
-
getPassed
boolean getPassed()
Whether the data quality result was `pass` or not.
bool passed = 2;
- Returns:
- The passed.
-
getDimensionPassedCount
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;
-
containsDimensionPassed
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;
-
getDimensionPassed
@Deprecated Map<String,Boolean> getDimensionPassed()
Deprecated.UsegetDimensionPassedMap()
instead.
-
getDimensionPassedMap
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;
-
getDimensionPassedOrDefault
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;
-
getDimensionPassedOrThrow
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;
-
-