class Google::Apis::DlpV2::GooglePrivacyDlpV2RecordLocation

Location of a finding within a row or record.

Attributes

field_id[RW]

General identifier of a data field in a storage service. Corresponds to the JSON property `fieldId` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]

record_key[RW]

Message for a unique key indicating a record that contains a finding. Corresponds to the JSON property `recordKey` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey]

table_location[RW]

Location of a finding within a table. Corresponds to the JSON property `tableLocation` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TableLocation]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 4994
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 4999
def update!(**args)
  @field_id = args[:field_id] if args.key?(:field_id)
  @record_key = args[:record_key] if args.key?(:record_key)
  @table_location = args[:table_location] if args.key?(:table_location)
end