Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeLimit
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeLimit
 
- 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
Max findings configuration per infoType, per content item or long running DlpJob.
Instance Attribute Summary collapse
- 
  
    
      #info_type  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of information detected by the API. 
- 
  
    
      #max_findings  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Max findings limit for the given infoType. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2InfoTypeLimit 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2InfoTypeLimit. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2InfoTypeLimit
Returns a new instance of GooglePrivacyDlpV2InfoTypeLimit
| 2105 2106 2107 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2105 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#info_type ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType
Type of information detected by the API.
Corresponds to the JSON property infoType
| 2098 2099 2100 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2098 def info_type @info_type end | 
#max_findings ⇒ Fixnum
Max findings limit for the given infoType.
Corresponds to the JSON property maxFindings
| 2103 2104 2105 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2103 def max_findings @max_findings end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2110 2111 2112 2113 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2110 def update!(**args) @info_type = args[:info_type] if args.key?(:info_type) @max_findings = args[:max_findings] if args.key?(:max_findings) end |