Class: Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary
 
 
- 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 a single transformation. Only one of 'transformation', ' field_transformation', or 'record_suppress' will be set.
Instance Attribute Summary collapse
- 
  
    
      #field  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
General identifier of a data field in a storage service.
 - 
  
    
      #field_transformations  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The field transformation that was applied.
 - 
  
    
      #info_type  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type of information detected by the API.
 - 
  
    
      #record_suppress  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration to suppress records whose suppression conditions evaluate to true.
 - 
  
    
      #results  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Collection of all transformations that took place or had an error.
 - 
  
    
      #transformation  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A rule for transforming a value.
 - 
  
    
      #transformed_bytes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Total size in bytes that were transformed in some way.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2TransformationSummary 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2TransformationSummary.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2TransformationSummary
Returns a new instance of GooglePrivacyDlpV2TransformationSummary.
      9857 9858 9859  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9857 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#field ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property field
      9822 9823 9824  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9822 def field @field end  | 
  
#field_transformations ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation>
The field transformation that was applied. If multiple field transformations
are requested for a single field, this list will contain all of them;
otherwise, only one is supplied.
Corresponds to the JSON property fieldTransformations
      9829 9830 9831  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9829 def field_transformations @field_transformations end  | 
  
#info_type ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType
Type of information detected by the API.
Corresponds to the JSON property infoType
      9834 9835 9836  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9834 def info_type @info_type end  | 
  
#record_suppress ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression
Configuration to suppress records whose suppression conditions evaluate to
true.
Corresponds to the JSON property recordSuppress
      9840 9841 9842  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9840 def record_suppress @record_suppress end  | 
  
#results ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult>
Collection of all transformations that took place or had an error.
Corresponds to the JSON property results
      9845 9846 9847  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9845 def results @results end  | 
  
#transformation ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation
A rule for transforming a value.
Corresponds to the JSON property transformation
      9850 9851 9852  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9850 def transformation @transformation end  | 
  
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Corresponds to the JSON property transformedBytes
      9855 9856 9857  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9855 def transformed_bytes @transformed_bytes end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9862 9863 9864 9865 9866 9867 9868 9869 9870  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 9862 def update!(**args) @field = args[:field] if args.key?(:field) @field_transformations = args[:field_transformations] if args.key?(:field_transformations) @info_type = args[:info_type] if args.key?(:info_type) @record_suppress = args[:record_suppress] if args.key?(:record_suppress) @results = args[:results] if args.key?(:results) @transformation = args[:transformation] if args.key?(:transformation) @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes) end  |