Package com.google.cloud.dataplex.v1
Interface DataScanEvent.DataQualityAppliedConfigsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataScanEvent.DataQualityAppliedConfigs
,DataScanEvent.DataQualityAppliedConfigs.Builder
- Enclosing class:
- DataScanEvent
public static interface DataScanEvent.DataQualityAppliedConfigsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getRowFilterApplied()
Boolean indicating whether a row filter was applied in the DataScan job.float
getSamplingPercent()
The percentage of the records selected from the dataset for DataScan.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSamplingPercent
float getSamplingPercent()
The percentage of the records selected from the dataset for DataScan. * Value ranges between 0.0 and 100.0. * Value 0.0 or 100.0 imply that sampling was not applied.
float sampling_percent = 1;
- Returns:
- The samplingPercent.
-
getRowFilterApplied
boolean getRowFilterApplied()
Boolean indicating whether a row filter was applied in the DataScan job.
bool row_filter_applied = 2;
- Returns:
- The rowFilterApplied.
-
-