public sealed class DataQualityRule.Types.RangeExpectation : IMessage<DataQualityRule.Types.RangeExpectation>, IEquatable<DataQualityRule.Types.RangeExpectation>, IDeepCloneable<DataQualityRule.Types.RangeExpectation>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud Dataplex v1 API class DataQualityRule.Types.RangeExpectation.
Evaluates whether each column value lies between a specified range.
Implements
IMessageDataQualityRuleTypesRangeExpectation, IEquatableDataQualityRuleTypesRangeExpectation, IDeepCloneableDataQualityRuleTypesRangeExpectation, IBufferMessage, IMessageNamespace
Google.Cloud.Dataplex.V1Assembly
Google.Cloud.Dataplex.V1.dll
Constructors
RangeExpectation()
public RangeExpectation()
RangeExpectation(RangeExpectation)
public RangeExpectation(DataQualityRule.Types.RangeExpectation other)
Parameter | |
---|---|
Name | Description |
other | DataQualityRuleTypesRangeExpectation |
Properties
MaxValue
public string MaxValue { get; set; }
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.
Property Value | |
---|---|
Type | Description |
string |
MinValue
public string MinValue { get; set; }
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.
Property Value | |
---|---|
Type | Description |
string |
StrictMaxEnabled
public bool StrictMaxEnabled { get; set; }
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.
Property Value | |
---|---|
Type | Description |
bool |
StrictMinEnabled
public bool StrictMinEnabled { get; set; }
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.
Property Value | |
---|---|
Type | Description |
bool |