Class: Google::Apis::DlpV2::GooglePrivacyDlpV2HybridContentItem
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2HybridContentItem
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb 
Overview
An individual hybrid item to inspect. Will be stored temporarily during processing.
Instance Attribute Summary collapse
- 
  
    
      #finding_details  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HybridFindingDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Populate to associate additional data with each finding.
 - 
  
    
      #item  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type of content to inspect.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2HybridContentItem 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2HybridContentItem.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2HybridContentItem
Returns a new instance of GooglePrivacyDlpV2HybridContentItem.
      4980 4981 4982  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4980 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#finding_details ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HybridFindingDetails
Populate to associate additional data with each finding.
Corresponds to the JSON property findingDetails
      4973 4974 4975  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4973 def finding_details @finding_details end  | 
  
#item ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem
Type of content to inspect.
Corresponds to the JSON property item
      4978 4979 4980  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4978 def item @item end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4985 4986 4987 4988  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 4985 def update!(**args) @finding_details = args[:finding_details] if args.key?(:finding_details) @item = args[:item] if args.key?(:item) end  |