Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RecordTransformations

Inherits:
Object
  • Object
show all
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 type of transformation that is applied over structured data such as a table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2RecordTransformations

Returns a new instance of GooglePrivacyDlpV2RecordTransformations.



4793
4794
4795
# File 'generated/google/apis/dlp_v2/classes.rb', line 4793

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#field_transformationsArray<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation>

Transform the record by applying various field transformations. Corresponds to the JSON property fieldTransformations



4785
4786
4787
# File 'generated/google/apis/dlp_v2/classes.rb', line 4785

def field_transformations
  @field_transformations
end

#record_suppressionsArray<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



4791
4792
4793
# File 'generated/google/apis/dlp_v2/classes.rb', line 4791

def record_suppressions
  @record_suppressions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4798
4799
4800
4801
# File 'generated/google/apis/dlp_v2/classes.rb', line 4798

def update!(**args)
  @field_transformations = args[:field_transformations] if args.key?(:field_transformations)
  @record_suppressions = args[:record_suppressions] if args.key?(:record_suppressions)
end