Class GoogleCloudDataplexV1DataQualityRuleRangeExpectation
Evaluates whether each column value lies between a specified range.
Implements
Inherited Members
Namespace: Google.Apis.CloudDataplex.v1.Data
Assembly: Google.Apis.CloudDataplex.v1.dll
Syntax
public class GoogleCloudDataplexV1DataQualityRuleRangeExpectation : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxValue
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.
Declaration
[JsonProperty("maxValue")]
public virtual string MaxValue { get; set; }
Property Value
Type | Description |
---|---|
string |
MinValue
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.
Declaration
[JsonProperty("minValue")]
public virtual string MinValue { get; set; }
Property Value
Type | Description |
---|---|
string |
StrictMaxEnabled
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.
Declaration
[JsonProperty("strictMaxEnabled")]
public virtual bool? StrictMaxEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
StrictMinEnabled
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.
Declaration
[JsonProperty("strictMinEnabled")]
public virtual bool? StrictMinEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |