Class: Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult
 
- 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
A collection that informs the user the number of times a particular
TransformationResultCode and error details occurred.
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property code.
- 
  
    
      #count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property count.
- 
  
    
      #details  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A place for warnings or errors to show up if a transformation didn't work as expected. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2SummaryResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2SummaryResult. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2SummaryResult
Returns a new instance of GooglePrivacyDlpV2SummaryResult
| 4245 4246 4247 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4245 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#code ⇒ String
Corresponds to the JSON property code
| 4232 4233 4234 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4232 def code @code end | 
#count ⇒ Fixnum
Corresponds to the JSON property count
| 4237 4238 4239 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4237 def count @count end | 
#details ⇒ String
A place for warnings or errors to show up if a transformation didn't
work as expected.
Corresponds to the JSON property details
| 4243 4244 4245 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4243 def details @details end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4250 4251 4252 4253 4254 | # File 'generated/google/apis/dlp_v2/classes.rb', line 4250 def update!(**args) @code = args[:code] if args.key?(:code) @count = args[:count] if args.key?(:count) @details = args[:details] if args.key?(:details) end |