Send feedback
Class DataQualityScanRuleResult (1.51.0)
Stay organized with collections
Save and categorize content based on your preferences.
Version 1.51.0 keyboard_arrow_down
public final class DataQualityScanRuleResult extends GeneratedMessageV3 implements DataQualityScanRuleResultOrBuilder
Information about the result of a data quality rule for data quality scan.
The monitored resource is 'DataScan'.
Protobuf type google.cloud.dataplex.v1.DataQualityScanRuleResult
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
ASSERTION_ROW_COUNT_FIELD_NUMBER
public static final int ASSERTION_ROW_COUNT_FIELD_NUMBER
Field Value
Type
Description
int
COLUMN_FIELD_NUMBER
public static final int COLUMN_FIELD_NUMBER
Field Value
Type
Description
int
DATA_SOURCE_FIELD_NUMBER
public static final int DATA_SOURCE_FIELD_NUMBER
Field Value
Type
Description
int
EVALUATED_ROW_COUNT_FIELD_NUMBER
public static final int EVALUATED_ROW_COUNT_FIELD_NUMBER
Field Value
Type
Description
int
EVALUTION_TYPE_FIELD_NUMBER
public static final int EVALUTION_TYPE_FIELD_NUMBER
Field Value
Type
Description
int
JOB_ID_FIELD_NUMBER
public static final int JOB_ID_FIELD_NUMBER
Field Value
Type
Description
int
NULL_ROW_COUNT_FIELD_NUMBER
public static final int NULL_ROW_COUNT_FIELD_NUMBER
Field Value
Type
Description
int
PASSED_ROW_COUNT_FIELD_NUMBER
public static final int PASSED_ROW_COUNT_FIELD_NUMBER
Field Value
Type
Description
int
RESULT_FIELD_NUMBER
public static final int RESULT_FIELD_NUMBER
Field Value
Type
Description
int
RULE_DIMENSION_FIELD_NUMBER
public static final int RULE_DIMENSION_FIELD_NUMBER
Field Value
Type
Description
int
RULE_NAME_FIELD_NUMBER
public static final int RULE_NAME_FIELD_NUMBER
Field Value
Type
Description
int
RULE_TYPE_FIELD_NUMBER
public static final int RULE_TYPE_FIELD_NUMBER
Field Value
Type
Description
int
THRESHOLD_PERCENT_FIELD_NUMBER
public static final int THRESHOLD_PERCENT_FIELD_NUMBER
Field Value
Type
Description
int
Static Methods
getDefaultInstance()
public static DataQualityScanRuleResult getDefaultInstance ()
getDescriptor()
public static final Descriptors . Descriptor getDescriptor ()
newBuilder()
public static DataQualityScanRuleResult . Builder newBuilder ()
newBuilder(DataQualityScanRuleResult prototype)
public static DataQualityScanRuleResult . Builder newBuilder ( DataQualityScanRuleResult prototype )
public static DataQualityScanRuleResult parseDelimitedFrom ( InputStream input )
public static DataQualityScanRuleResult parseDelimitedFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(byte[] data)
public static DataQualityScanRuleResult parseFrom ( byte [] data )
Parameter
Name
Description
data
byte []
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static DataQualityScanRuleResult parseFrom ( byte [] data , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteString data)
public static DataQualityScanRuleResult parseFrom ( ByteString data )
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static DataQualityScanRuleResult parseFrom ( ByteString data , ExtensionRegistryLite extensionRegistry )
public static DataQualityScanRuleResult parseFrom ( CodedInputStream input )
public static DataQualityScanRuleResult parseFrom ( CodedInputStream input , ExtensionRegistryLite extensionRegistry )
public static DataQualityScanRuleResult parseFrom ( InputStream input )
public static DataQualityScanRuleResult parseFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteBuffer data)
public static DataQualityScanRuleResult parseFrom ( ByteBuffer data )
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static DataQualityScanRuleResult parseFrom ( ByteBuffer data , ExtensionRegistryLite extensionRegistry )
parser()
public static Parser<DataQualityScanRuleResult> parser ()
Methods
equals(Object obj)
public boolean equals ( Object obj )
Parameter
Name
Description
obj
Object
Overrides
getAssertionRowCount()
public long getAssertionRowCount ()
The number of rows returned by the SQL statement in a SQL assertion rule.
This field is only valid for SQL assertion rules.
int64 assertion_row_count = 13;
Returns
Type
Description
long
The assertionRowCount.
getColumn()
public String getColumn ()
The column which this rule is evaluated against.
string column = 3;
Returns
Type
Description
String
The column.
getColumnBytes()
public ByteString getColumnBytes ()
The column which this rule is evaluated against.
string column = 3;
Returns
Type
Description
ByteString
The bytes for column.
getDataSource()
public String getDataSource ()
The data source of the data scan (e.g. BigQuery table name).
string data_source = 2;
Returns
Type
Description
String
The dataSource.
getDataSourceBytes()
public ByteString getDataSourceBytes ()
The data source of the data scan (e.g. BigQuery table name).
string data_source = 2;
Returns
Type
Description
ByteString
The bytes for dataSource.
getDefaultInstanceForType()
public DataQualityScanRuleResult getDefaultInstanceForType ()
getEvaluatedRowCount()
public long getEvaluatedRowCount ()
The number of rows evaluated against the data quality rule.
This field is only valid for rules of PER_ROW evaluation type.
int64 evaluated_row_count = 10;
Returns
Type
Description
long
The evaluatedRowCount.
getEvalutionType()
public DataQualityScanRuleResult . EvaluationType getEvalutionType ()
The evaluation type of the data quality rule.
.google.cloud.dataplex.v1.DataQualityScanRuleResult.EvaluationType evalution_type = 6;
getEvalutionTypeValue()
public int getEvalutionTypeValue ()
The evaluation type of the data quality rule.
.google.cloud.dataplex.v1.DataQualityScanRuleResult.EvaluationType evalution_type = 6;
Returns
Type
Description
int
The enum numeric value on the wire for evalutionType.
getJobId()
Identifier of the specific data scan job this log entry is for.
string job_id = 1;
Returns
Type
Description
String
The jobId.
getJobIdBytes()
public ByteString getJobIdBytes ()
Identifier of the specific data scan job this log entry is for.
string job_id = 1;
Returns
Type
Description
ByteString
The bytes for jobId.
getNullRowCount()
public long getNullRowCount ()
The number of rows with null values in the specified column.
int64 null_row_count = 12;
Returns
Type
Description
long
The nullRowCount.
getParserForType()
public Parser<DataQualityScanRuleResult> getParserForType ()
Overrides
getPassedRowCount()
public long getPassedRowCount ()
The number of rows which passed a rule evaluation.
This field is only valid for rules of PER_ROW evaluation type.
int64 passed_row_count = 11;
Returns
Type
Description
long
The passedRowCount.
getResult()
public DataQualityScanRuleResult . Result getResult ()
The result of the data quality rule.
.google.cloud.dataplex.v1.DataQualityScanRuleResult.Result result = 9;
getResultValue()
public int getResultValue ()
The result of the data quality rule.
.google.cloud.dataplex.v1.DataQualityScanRuleResult.Result result = 9;
Returns
Type
Description
int
The enum numeric value on the wire for result.
getRuleDimension()
public String getRuleDimension ()
The dimension of the data quality rule.
string rule_dimension = 7;
Returns
Type
Description
String
The ruleDimension.
getRuleDimensionBytes()
public ByteString getRuleDimensionBytes ()
The dimension of the data quality rule.
string rule_dimension = 7;
Returns
Type
Description
ByteString
The bytes for ruleDimension.
getRuleName()
public String getRuleName ()
The name of the data quality rule.
string rule_name = 4;
Returns
Type
Description
String
The ruleName.
getRuleNameBytes()
public ByteString getRuleNameBytes ()
The name of the data quality rule.
string rule_name = 4;
Returns
Type
Description
ByteString
The bytes for ruleName.
getRuleType()
public DataQualityScanRuleResult . RuleType getRuleType ()
The type of the data quality rule.
.google.cloud.dataplex.v1.DataQualityScanRuleResult.RuleType rule_type = 5;
getRuleTypeValue()
public int getRuleTypeValue ()
The type of the data quality rule.
.google.cloud.dataplex.v1.DataQualityScanRuleResult.RuleType rule_type = 5;
Returns
Type
Description
int
The enum numeric value on the wire for ruleType.
getSerializedSize()
public int getSerializedSize ()
Returns
Type
Description
int
Overrides
getThresholdPercent()
public double getThresholdPercent ()
The passing threshold ([0.0, 100.0]) of the data quality rule.
double threshold_percent = 8;
Returns
Type
Description
double
The thresholdPercent.
hashCode()
Returns
Type
Description
int
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3 . FieldAccessorTable internalGetFieldAccessorTable ()
Overrides
isInitialized()
public final boolean isInitialized ()
Overrides
newBuilderForType()
public DataQualityScanRuleResult . Builder newBuilderForType ()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected DataQualityScanRuleResult . Builder newBuilderForType ( GeneratedMessageV3 . BuilderParent parent )
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance ( GeneratedMessageV3 . UnusedPrivateParameter unused )
Returns
Type
Description
Object
Overrides
toBuilder()
public DataQualityScanRuleResult . Builder toBuilder ()
writeTo(CodedOutputStream output)
public void writeTo ( CodedOutputStream output )
Overrides
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-28 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-28 UTC."],[],[]]