Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RecordLocation
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2RecordLocation
 
- 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
- 
  
    
      #field_id  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    General identifier of a data field in a storage service. 
- 
  
    
      #record_key  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Message for a unique key indicating a record that contains a finding. 
- 
  
    
      #table_location  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2TableLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Location of a finding within a table. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2RecordLocation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2RecordLocation. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2RecordLocation
Returns a new instance of GooglePrivacyDlpV2RecordLocation
| 3753 3754 3755 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3753 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#field_id ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property fieldId
| 3741 3742 3743 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3741 def field_id @field_id end | 
#record_key ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey
Message for a unique key indicating a record that contains a finding.
Corresponds to the JSON property recordKey
| 3746 3747 3748 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3746 def record_key @record_key end | 
#table_location ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2TableLocation
Location of a finding within a table.
Corresponds to the JSON property tableLocation
| 3751 3752 3753 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3751 def table_location @table_location end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3758 3759 3760 3761 3762 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3758 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 |