Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RecordTransformations
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2RecordTransformations
 
 
- 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
A type of transformation that is applied over structured data such as a table.
Instance Attribute Summary collapse
- 
  
    
      #field_transformations  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Transform the record by applying various field transformations.
 - 
  
    
      #record_suppressions  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration defining which records get suppressed entirely.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2RecordTransformations 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2RecordTransformations.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2RecordTransformations
Returns a new instance of GooglePrivacyDlpV2RecordTransformations.
      8009 8010 8011  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8009 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#field_transformations ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation>
Transform the record by applying various field transformations.
Corresponds to the JSON property fieldTransformations
      8001 8002 8003  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8001 def field_transformations @field_transformations end  | 
  
#record_suppressions ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression>
Configuration defining which records get suppressed entirely. Records that
match any suppression rule are omitted from the output.
Corresponds to the JSON property recordSuppressions
      8007 8008 8009  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8007 def record_suppressions @record_suppressions end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8014 8015 8016 8017  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8014 def update!(**args) @field_transformations = args[:field_transformations] if args.key?(:field_transformations) @record_suppressions = args[:record_suppressions] if args.key?(:record_suppressions) end  |