Cloud Dataplex v1 API - Class DataQualityRule.Types.StatisticRangeExpectation (2.15.0)

public sealed class DataQualityRule.Types.StatisticRangeExpectation : IMessage<DataQualityRule.Types.StatisticRangeExpectation>, IEquatable<DataQualityRule.Types.StatisticRangeExpectation>, IDeepCloneable<DataQualityRule.Types.StatisticRangeExpectation>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Dataplex v1 API class DataQualityRule.Types.StatisticRangeExpectation.

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

Inheritance

object > DataQualityRule.Types.StatisticRangeExpectation

Namespace

Google.Cloud.Dataplex.V1

Assembly

Google.Cloud.Dataplex.V1.dll

Constructors

StatisticRangeExpectation()

public StatisticRangeExpectation()

StatisticRangeExpectation(StatisticRangeExpectation)

public StatisticRangeExpectation(DataQualityRule.Types.StatisticRangeExpectation other)
Parameter
NameDescription
otherDataQualityRuleTypesStatisticRangeExpectation

Properties

MaxValue

public string MaxValue { get; set; }

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.

Property Value
TypeDescription
string

MinValue

public string MinValue { get; set; }

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.

Property Value
TypeDescription
string

Statistic

public DataQualityRule.Types.StatisticRangeExpectation.Types.ColumnStatistic Statistic { get; set; }

Optional. The aggregate metric to evaluate.

Property Value
TypeDescription
DataQualityRuleTypesStatisticRangeExpectationTypesColumnStatistic

StrictMaxEnabled

public bool StrictMaxEnabled { get; set; }

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.

Property Value
TypeDescription
bool

StrictMinEnabled

public bool StrictMinEnabled { get; set; }

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.

Property Value
TypeDescription
bool