Class StatisticRangeExpectation (1.13.0)

StatisticRangeExpectation(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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

Attributes

NameDescription
statistic google.cloud.dataplex_v1.types.DataQualityRule.StatisticRangeExpectation.ColumnStatistic
Optional. The aggregate metric to evaluate.
min_value str
Optional. 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.
max_value str
Optional. 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.
strict_min_enabled bool
Optional. 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.
strict_max_enabled bool
Optional. 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.

Classes

ColumnStatistic

ColumnStatistic(value)

The list of aggregate metrics a rule can be evaluated against.

Values: STATISTIC_UNDEFINED (0): Unspecified statistic type MEAN (1): Evaluate the column mean MIN (2): Evaluate the column min MAX (3): Evaluate the column max