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.
Implements
IMessageDataQualityRuleTypesStatisticRangeExpectation, IEquatableDataQualityRuleTypesStatisticRangeExpectation, IDeepCloneableDataQualityRuleTypesStatisticRangeExpectation, IBufferMessage, IMessageNamespace
Google.Cloud.Dataplex.V1Assembly
Google.Cloud.Dataplex.V1.dll
Constructors
StatisticRangeExpectation()
public StatisticRangeExpectation()
StatisticRangeExpectation(StatisticRangeExpectation)
public StatisticRangeExpectation(DataQualityRule.Types.StatisticRangeExpectation other)
Parameter | |
---|---|
Name | Description |
other | DataQualityRuleTypesStatisticRangeExpectation |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
string |
Statistic
public DataQualityRule.Types.StatisticRangeExpectation.Types.ColumnStatistic Statistic { get; set; }
Optional. The aggregate metric to evaluate.
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
bool |