Class: Google::Cloud::Dataplex::V1::DataQualityRule::RangeExpectation

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dataplex/v1/data_quality.rb

Overview

Evaluates whether each column value lies between a specified range.

Instance Attribute Summary collapse

Instance Attribute Details

#max_value::String

Returns 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.

Returns:

  • (::String)

    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.



379
380
381
382
# File 'proto_docs/google/cloud/dataplex/v1/data_quality.rb', line 379

class RangeExpectation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#min_value::String

Returns 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.

Returns:

  • (::String)

    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.



379
380
381
382
# File 'proto_docs/google/cloud/dataplex/v1/data_quality.rb', line 379

class RangeExpectation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#strict_max_enabled::Boolean

Returns 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.

Returns:

  • (::Boolean)

    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.



379
380
381
382
# File 'proto_docs/google/cloud/dataplex/v1/data_quality.rb', line 379

class RangeExpectation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#strict_min_enabled::Boolean

Returns 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.

Returns:

  • (::Boolean)

    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.



379
380
381
382
# File 'proto_docs/google/cloud/dataplex/v1/data_quality.rb', line 379

class RangeExpectation
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end