Package com.google.cloud.dataplex.v1
Interface DataScanEvent.DataProfileAppliedConfigsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataScanEvent.DataProfileAppliedConfigs
,DataScanEvent.DataProfileAppliedConfigs.Builder
- Enclosing class:
- DataScanEvent
public static interface DataScanEvent.DataProfileAppliedConfigsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getColumnFilterApplied()
Boolean indicating whether a column filter was applied in the DataScan job.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.
-
getColumnFilterApplied
boolean getColumnFilterApplied()
Boolean indicating whether a column filter was applied in the DataScan job.
bool column_filter_applied = 3;
- Returns:
- The columnFilterApplied.
-
-