ScannedData

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

JSON representation
{

  // The following is a list of mutually exclusive fields. At most one of the
  // fields will be set in a response:
  "incrementalField": {
    object (IncrementalField)
  }
  // End of mutually exclusive fields.
}
Fields
The range of scanned data The following is a list of mutually exclusive fields. At most one of the fields will be set in a response:
incrementalField

object (IncrementalField)

The range denoted by values of an incremental field

End of mutually exclusive fields.

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

Output only. The field that contains values which monotonically increases over time (e.g. a timestamp column).

start

string

Output only. Value that marks the start of the range.

end

string

Output only. Value that marks the end of the range.