Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyDataSourceStats
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyDataSourceStats
 
 
- 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
Summary of what was modified during a transformation.
Instance Attribute Summary collapse
- 
  
    
      #transformation_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of successfully applied transformations.
 - 
  
    
      #transformation_error_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of errors encountered while trying to apply transformations.
 - 
  
    
      #transformed_bytes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Total size in bytes that were transformed in some way.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2DeidentifyDataSourceStats 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2DeidentifyDataSourceStats.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DeidentifyDataSourceStats
Returns a new instance of GooglePrivacyDlpV2DeidentifyDataSourceStats.
      3052 3053 3054  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3052 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#transformation_count ⇒ Fixnum
Number of successfully applied transformations.
Corresponds to the JSON property transformationCount
      3040 3041 3042  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3040 def transformation_count @transformation_count end  | 
  
#transformation_error_count ⇒ Fixnum
Number of errors encountered while trying to apply transformations.
Corresponds to the JSON property transformationErrorCount
      3045 3046 3047  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3045 def transformation_error_count @transformation_error_count end  | 
  
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Corresponds to the JSON property transformedBytes
      3050 3051 3052  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3050 def transformed_bytes @transformed_bytes end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3057 3058 3059 3060 3061  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3057 def update!(**args) @transformation_count = args[:transformation_count] if args.key?(:transformation_count) @transformation_error_count = args[:transformation_error_count] if args.key?(:transformation_error_count) @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes) end  |