GoogleCloudDataplexV1DataQualityRuleResultResponse

data class GoogleCloudDataplexV1DataQualityRuleResultResponse(val evaluatedCount: String, val failingRowsQuery: String, val nullCount: String, val passRatio: Double, val passed: Boolean, val passedCount: String, val rule: GoogleCloudDataplexV1DataQualityRuleResponse)

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

Constructors

fun GoogleCloudDataplexV1DataQualityRuleResultResponse(evaluatedCount: String, failingRowsQuery: String, nullCount: String, passRatio: Double, passed: Boolean, passedCount: String, rule: GoogleCloudDataplexV1DataQualityRuleResponse)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The number of rows a rule was evaluated against. This field is only valid for ColumnMap 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.

Link copied to clipboard

The query to find rows that did not pass this rule. Only applies to ColumnMap and RowCondition rules.

Link copied to clipboard

The number of rows with null values in the specified column.

Link copied to clipboard

Whether the rule passed or failed.

Link copied to clipboard

The number of rows which passed a rule evaluation. This field is only valid for ColumnMap type rules.

Link copied to clipboard

The ratio of passed_count / evaluated_count. This field is only valid for ColumnMap type rules.

Link copied to clipboard

The rule specified in the DataQualitySpec, as is.