Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RecordLocation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

Location of a finding within a row or record.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2RecordLocation

Returns a new instance of GooglePrivacyDlpV2RecordLocation.



4981
4982
4983
# File 'generated/google/apis/dlp_v2/classes.rb', line 4981

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#field_idGoogle::Apis::DlpV2::GooglePrivacyDlpV2FieldId

General identifier of a data field in a storage service. Corresponds to the JSON property fieldId



4969
4970
4971
# File 'generated/google/apis/dlp_v2/classes.rb', line 4969

def field_id
  @field_id
end

#record_keyGoogle::Apis::DlpV2::GooglePrivacyDlpV2RecordKey

Message for a unique key indicating a record that contains a finding. Corresponds to the JSON property recordKey



4974
4975
4976
# File 'generated/google/apis/dlp_v2/classes.rb', line 4974

def record_key
  @record_key
end

#table_locationGoogle::Apis::DlpV2::GooglePrivacyDlpV2TableLocation

Location of a finding within a table. Corresponds to the JSON property tableLocation



4979
4980
4981
# File 'generated/google/apis/dlp_v2/classes.rb', line 4979

def table_location
  @table_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4986
4987
4988
4989
4990
# File 'generated/google/apis/dlp_v2/classes.rb', line 4986

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