Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedDataIncrementalField

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

A data range denoted by a pair of start/end values of a field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ScannedDataIncrementalField

Returns a new instance of GoogleCloudDataplexV1ScannedDataIncrementalField.



4762
4763
4764
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4762

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#endString

Value that marks the end of the range. Corresponds to the JSON property end

Returns:

  • (String)


4749
4750
4751
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4749

def end
  @end
end

#fieldString

The field that contains values which monotonically increases over time (e.g. a timestamp column). Corresponds to the JSON property field

Returns:

  • (String)


4755
4756
4757
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4755

def field
  @field
end

#startString

Value that marks the start of the range. Corresponds to the JSON property start

Returns:

  • (String)


4760
4761
4762
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4760

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4767
4768
4769
4770
4771
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4767

def update!(**args)
  @end = args[:end] if args.key?(:end)
  @field = args[:field] if args.key?(:field)
  @start = args[:start] if args.key?(:start)
end