GoogleCloudDataplexV1DataQualityRuleRangeExpectationArgs

data class GoogleCloudDataplexV1DataQualityRuleRangeExpectationArgs(val maxValue: Output<String>? = null, val minValue: Output<String>? = null, val strictMaxEnabled: Output<Boolean>? = null, val strictMinEnabled: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDataplexV1DataQualityRuleRangeExpectationArgs>

Evaluates whether each column value lies between a specified range.

Constructors

fun GoogleCloudDataplexV1DataQualityRuleRangeExpectationArgs(maxValue: Output<String>? = null, minValue: Output<String>? = null, strictMaxEnabled: Output<Boolean>? = null, strictMinEnabled: Output<Boolean>? = null)

Functions

Link copied to clipboard
open override fun toJava(): GoogleCloudDataplexV1DataQualityRuleRangeExpectationArgs

Properties

Link copied to clipboard
val maxValue: Output<String>? = null

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
val minValue: Output<String>? = null

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
val strictMaxEnabled: Output<Boolean>? = null

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
val strictMinEnabled: Output<Boolean>? = null

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.