Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordTransformations
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordTransformations
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/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::DlpV2beta2::GooglePrivacyDlpV2beta2FieldTransformation>
Transform the record by applying various field transformations.
-
#record_suppressions ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordSuppression>
Configuration defining which records get suppressed entirely.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2RecordTransformations
constructor
A new instance of GooglePrivacyDlpV2beta2RecordTransformations.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2RecordTransformations
Returns a new instance of GooglePrivacyDlpV2beta2RecordTransformations
4585 4586 4587 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4585 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field_transformations ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2FieldTransformation>
Transform the record by applying various field transformations.
Corresponds to the JSON property fieldTransformations
4577 4578 4579 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4577 def field_transformations @field_transformations end |
#record_suppressions ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordSuppression>
Configuration defining which records get suppressed entirely. Records that
match any suppression rule are omitted from the output [optional].
Corresponds to the JSON property recordSuppressions
4583 4584 4585 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4583 def record_suppressions @record_suppressions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4590 4591 4592 4593 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4590 def update!(**args) @field_transformations = args[:field_transformations] if args.key?(:field_transformations) @record_suppressions = args[:record_suppressions] if args.key?(:record_suppressions) end |