Google Cloud Dataplex V1Data Quality Rule Statistic Range Expectation Args
data class GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationArgs(val maxValue: Output<String>? = null, val minValue: Output<String>? = null, val statistic: Output<GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic>? = null, val strictMaxEnabled: Output<Boolean>? = null, val strictMinEnabled: Output<Boolean>? = null) : ConvertibleToJava<GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationArgs>
Evaluates whether the column aggregate statistic lies between a specified range.
Constructors
Link copied to clipboard
constructor(maxValue: Output<String>? = null, minValue: Output<String>? = null, statistic: Output<GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic>? = null, strictMaxEnabled: Output<Boolean>? = null, strictMinEnabled: Output<Boolean>? = null)
Properties
Link copied to clipboard
val statistic: Output<GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic>? = null
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.