GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationResponse

data class GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationResponse(val maxValue: String, val minValue: String, val statistic: String, val strictMaxEnabled: Boolean, val strictMinEnabled: Boolean)

Evaluates whether the column aggregate statistic lies between a specified range.

Constructors

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The maximum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided.

Link copied to clipboard

The minimum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided.

Link copied to clipboard

The aggregate metric to evaluate.

Link copied to clipboard

Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false.

Link copied to clipboard

Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false.