GoogleCloudDataplexV1DataQualityRuleRangeExpectationResponse

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

Evaluates whether each column value lies between a specified range.

Constructors

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Optional. The maximum column 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

Optional. The minimum column 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

Optional. Whether each value 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

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