Cloud Dataplex v1 API - Class DataQualityRuleResult (3.9.0)
Stay organized with collections
Save and categorize content based on your preferences.
public sealed class DataQualityRuleResult : IMessage<DataQualityRuleResult>, IEquatable<DataQualityRuleResult>, IDeepCloneable<DataQualityRuleResult>, IBufferMessage, IMessageReference documentation and code samples for the Cloud Dataplex v1 API class DataQualityRuleResult.
DataQualityRuleResult provides a more detailed, per-rule view of the results.
Implements
IMessage DataQualityRuleResult, IEquatable DataQualityRuleResult, IDeepCloneable DataQualityRuleResult, IBufferMessage, IMessageNamespace
Google.Cloud.Dataplex.V1Assembly
Google.Cloud.Dataplex.V1.dll
Constructors
DataQualityRuleResult()
public DataQualityRuleResult()DataQualityRuleResult(DataQualityRuleResult)
public DataQualityRuleResult(DataQualityRuleResult other)| Parameter | |
|---|---|
| Name | Description |
other |
DataQualityRuleResult |
Properties
AssertionRowCount
public long AssertionRowCount { get; set; }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.
| Property Value | |
|---|---|
| Type | Description |
long |
|
EvaluatedCount
public long EvaluatedCount { get; set; }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
nullrows automatically failing rule evaluation, or - exclude
nullrows from theevaluated_count, by settingignore_nulls = true.
This field is not set for rule SqlAssertion.
| Property Value | |
|---|---|
| Type | Description |
long |
|
FailingRowsQuery
public string FailingRowsQuery { get; set; }Output only. The query to find rows that did not pass this rule.
This field is only valid for row-level type rules.
| Property Value | |
|---|---|
| Type | Description |
string |
|
NullCount
public long NullCount { get; set; }Output only. The number of rows with null values in the specified column.
| Property Value | |
|---|---|
| Type | Description |
long |
|
PassRatio
public double PassRatio { get; set; }Output only. The ratio of passed_count / evaluated_count.
This field is only valid for row-level type rules.
| Property Value | |
|---|---|
| Type | Description |
double |
|
Passed
public bool Passed { get; set; }Output only. Whether the rule passed or failed.
| Property Value | |
|---|---|
| Type | Description |
bool |
|
PassedCount
public long PassedCount { get; set; }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.
| Property Value | |
|---|---|
| Type | Description |
long |
|
Rule
public DataQualityRule Rule { get; set; }Output only. The rule specified in the DataQualitySpec, as is.
| Property Value | |
|---|---|
| Type | Description |
DataQualityRule |
|