- 1.51.0 (latest)
- 1.50.0
- 1.49.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.35.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.0
- 1.11.0
- 1.10.0
- 1.9.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.2
- 1.0.1
- 0.2.2
public interface DataQualityRuleResultOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getAssertionRowCount()
public abstract long getAssertionRowCount()
Output only. The number of rows returned by the sql statement in the SqlAssertion rule.
This field is only valid for SqlAssertion rules.
int64 assertion_row_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
long |
The assertionRowCount. |
getEvaluatedCount()
public abstract long getEvaluatedCount()
The number of rows a rule was evaluated against.
This field is only valid for row-level type rules.
Evaluated count can be configured to either
- include all rows (default) - with
null
rows automatically failing rule evaluation, or - exclude
null
rows from theevaluated_count
, by settingignore_nulls = true
.
int64 evaluated_count = 9;
Returns | |
---|---|
Type | Description |
long |
The evaluatedCount. |
getFailingRowsQuery()
public abstract String getFailingRowsQuery()
The query to find rows that did not pass this rule.
This field is only valid for row-level type rules.
string failing_rows_query = 10;
Returns | |
---|---|
Type | Description |
String |
The failingRowsQuery. |
getFailingRowsQueryBytes()
public abstract ByteString getFailingRowsQueryBytes()
The query to find rows that did not pass this rule.
This field is only valid for row-level type rules.
string failing_rows_query = 10;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for failingRowsQuery. |
getNullCount()
public abstract long getNullCount()
The number of rows with null values in the specified column.
int64 null_count = 5;
Returns | |
---|---|
Type | Description |
long |
The nullCount. |
getPassRatio()
public abstract double getPassRatio()
The ratio of passed_count / evaluated_count.
This field is only valid for row-level type rules.
double pass_ratio = 6;
Returns | |
---|---|
Type | Description |
double |
The passRatio. |
getPassed()
public abstract boolean getPassed()
Whether the rule passed or failed.
bool passed = 7;
Returns | |
---|---|
Type | Description |
boolean |
The passed. |
getPassedCount()
public abstract long getPassedCount()
The number of rows which passed a rule evaluation.
This field is only valid for row-level type rules.
int64 passed_count = 8;
Returns | |
---|---|
Type | Description |
long |
The passedCount. |
getRule()
public abstract DataQualityRule getRule()
The rule specified in the DataQualitySpec, as is.
.google.cloud.dataplex.v1.DataQualityRule rule = 1;
Returns | |
---|---|
Type | Description |
DataQualityRule |
The rule. |
getRuleOrBuilder()
public abstract DataQualityRuleOrBuilder getRuleOrBuilder()
The rule specified in the DataQualitySpec, as is.
.google.cloud.dataplex.v1.DataQualityRule rule = 1;
Returns | |
---|---|
Type | Description |
DataQualityRuleOrBuilder |
hasRule()
public abstract boolean hasRule()
The rule specified in the DataQualitySpec, as is.
.google.cloud.dataplex.v1.DataQualityRule rule = 1;
Returns | |
---|---|
Type | Description |
boolean |
Whether the rule field is set. |