Show / Hide Table of Contents

Class GoogleCloudDataplexV1DataQualityRuleResult

DataQualityRuleResult provides a more detailed, per-rule view of the results.

Inheritance
object
GoogleCloudDataplexV1DataQualityRuleResult
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Output only. 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.This field is not set for rule SqlAssertion.

Declaration
[JsonProperty("evaluatedCount")]
public virtual long? EvaluatedCount { get; set; }
Property Value
Type Description
long?

FailingRowsQuery

Output only. 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

Output only. 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

Output only. 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

Output only. Whether the rule passed or failed.

Declaration
[JsonProperty("passed")]
public virtual bool? Passed { get; set; }
Property Value
Type Description
bool?

PassedCount

Output only. The number of rows which passed a rule evaluation.This field is only valid for row-level type rules.This field is not set for rule SqlAssertion.

Declaration
[JsonProperty("passedCount")]
public virtual long? PassedCount { get; set; }
Property Value
Type Description
long?

Rule

Output only. The rule specified in the DataQualitySpec, as is.

Declaration
[JsonProperty("rule")]
public virtual GoogleCloudDataplexV1DataQualityRule Rule { get; set; }
Property Value
Type Description
GoogleCloudDataplexV1DataQualityRule

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX