Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem
 
 
- 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
Container structure for the content to inspect.
Instance Attribute Summary collapse
- 
  
    
      #byte_item  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ByteContentItem 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Container for bytes to inspect or redact.
 - 
  
    
      #table  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Table 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Structured content to inspect.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
String data to inspect or redact.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ContentItem 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2ContentItem.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ContentItem
Returns a new instance of GooglePrivacyDlpV2ContentItem
      859 860 861  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 859 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#byte_item ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ByteContentItem
Container for bytes to inspect or redact.
Corresponds to the JSON property byteItem
      845 846 847  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 845 def byte_item @byte_item end  | 
  
#table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Table
Structured content to inspect. Up to 50,000 Values per request allowed.
See https://cloud.google.com/dlp/docs/inspecting-text#inspecting_a_table to
learn more.
Corresponds to the JSON property table
      852 853 854  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 852 def table @table end  | 
  
#value ⇒ String
String data to inspect or redact.
Corresponds to the JSON property value
      857 858 859  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 857 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      864 865 866 867 868  | 
    
      # File 'generated/google/apis/dlp_v2/classes.rb', line 864 def update!(**args) @byte_item = args[:byte_item] if args.key?(:byte_item) @table = args[:table] if args.key?(:table) @value = args[:value] if args.key?(:value) end  |