Class: Google::Cloud::Dataplex::V1::ScannedData

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

Overview

The data scanned during processing (e.g. in incremental DataScan)

Defined Under Namespace

Classes: IncrementalField

Instance Attribute Summary collapse

Instance Attribute Details

#incremental_field::Google::Cloud::Dataplex::V1::ScannedData::IncrementalField

Returns The range denoted by values of an incremental field.

Returns:



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'proto_docs/google/cloud/dataplex/v1/processing.rb', line 95

class ScannedData
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A data range denoted by a pair of start/end values of a field.
  # @!attribute [r] field
  #   @return [::String]
  #     Output only. The field that contains values which monotonically increases
  #     over time (e.g. a timestamp column).
  # @!attribute [r] start
  #   @return [::String]
  #     Output only. Value that marks the start of the range.
  # @!attribute [r] end
  #   @return [::String]
  #     Output only. Value that marks the end of the range.
  class IncrementalField
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end