ScannedData

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

JSON representation
{

  // Union field data_range can be only one of the following:
  "incrementalField": {
    object (IncrementalField)
  }
  // End of list of possible types for union field data_range.
}
Fields
Union field data_range. The range of scanned data data_range can be only one of the following:
incrementalField

object (IncrementalField)

The range denoted by values of an incremental field

IncrementalField

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

JSON representation
{
  "field": string,
  "start": string,
  "end": string
}
Fields
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.

end

string

Value that marks the end of the range.