Class GoogleCloudDataplexV1DataQualityRuleResult
DataQualityRuleResult provides a more detailed, per-rule view of the results.
Implements
Inherited Members
Namespace: Google.Apis.CloudDataplex.v1.Data
Assembly: Google.Apis.CloudDataplex.v1.dll
Syntax
public class GoogleCloudDataplexV1DataQualityRuleResult : IDirectResponseSchema
Properties
AssertionRowCount
Output only. The number of rows returned by the SQL statement in a SQL assertion rule.This field is only valid for SQL assertion rules.
Declaration
[JsonProperty("assertionRowCount")]
public virtual long? AssertionRowCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EvaluatedCount
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 the evaluated_count, by setting ignore_nulls = true.
Declaration
[JsonProperty("evaluatedCount")]
public virtual long? EvaluatedCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
FailingRowsQuery
The query to find rows that did not pass this rule.This field is only valid for row-level type rules.
Declaration
[JsonProperty("failingRowsQuery")]
public virtual string FailingRowsQuery { get; set; }
Property Value
Type | Description |
---|---|
string |
NullCount
The number of rows with null values in the specified column.
Declaration
[JsonProperty("nullCount")]
public virtual long? NullCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
PassRatio
The ratio of passed_count / evaluated_count.This field is only valid for row-level type rules.
Declaration
[JsonProperty("passRatio")]
public virtual double? PassRatio { get; set; }
Property Value
Type | Description |
---|---|
double? |
Passed
Whether the rule passed or failed.
Declaration
[JsonProperty("passed")]
public virtual bool? Passed { get; set; }
Property Value
Type | Description |
---|---|
bool? |
PassedCount
The number of rows which passed a rule evaluation.This field is only valid for row-level type rules.
Declaration
[JsonProperty("passedCount")]
public virtual long? PassedCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
Rule
The rule specified in the DataQualitySpec, as is.
Declaration
[JsonProperty("rule")]
public virtual GoogleCloudDataplexV1DataQualityRule Rule { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDataplexV1DataQualityRule |