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:



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'proto_docs/google/cloud/dataplex/v1/processing.rb', line 83

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 [rw] field
  #   @return [::String]
  #     The field that contains values which monotonically increases over time
  #     (e.g. a timestamp column).
  # @!attribute [rw] start
  #   @return [::String]
  #     Value that marks the start of the range.
  # @!attribute [rw] end
  #   @return [::String]
  #     Value that marks the end of the range.
  class IncrementalField
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end