class Google::Apis::DlpV2::GooglePrivacyDlpV2TableLocation
Location of a finding within a table.
Attributes
row_index[RW]
The zero-based index of the row where the finding is located. Only populated for resources that have a natural ordering, not BigQuery. In BigQuery, to identify the row a finding came from, populate BigQueryOptions. identifying_fields with your primary key column names and when you store the findings the value of those columns will be stored inside of Finding. Corresponds to the JSON property `rowIndex` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 5875 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 5880 def update!(**args) @row_index = args[:row_index] if args.key?(:row_index) end