Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedDataIncrementalField
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedDataIncrementalField
 
 
- 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
- 
  
    
      #end  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Value that marks the end of the range.
 - 
  
    
      #field  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The field that contains values which monotonically increases over time (e.g. a timestamp column).
 - 
  
    
      #start  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Value that marks the start of the range.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1ScannedDataIncrementalField 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1ScannedDataIncrementalField.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ScannedDataIncrementalField
Returns a new instance of GoogleCloudDataplexV1ScannedDataIncrementalField.
      6674 6675 6676  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6674 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#end ⇒ String
Value that marks the end of the range.
Corresponds to the JSON property end
      6661 6662 6663  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6661 def end @end end  | 
  
#field ⇒ String
The field that contains values which monotonically increases over time (e.g. a
timestamp column).
Corresponds to the JSON property field
      6667 6668 6669  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6667 def field @field end  | 
  
#start ⇒ String
Value that marks the start of the range.
Corresponds to the JSON property start
      6672 6673 6674  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6672 def start @start end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6679 6680 6681 6682 6683  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6679 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  |