Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformations
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformations
- 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 will scan unstructured text and
apply various PrimitiveTransformation
s to each finding, where the
transformation is applied to only values that were identified as a specific
info_type.
Instance Attribute Summary collapse
-
#transformations ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformation>
Transformation for each infoType.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2InfoTypeTransformations
constructor
A new instance of GooglePrivacyDlpV2InfoTypeTransformations.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2InfoTypeTransformations
Returns a new instance of GooglePrivacyDlpV2InfoTypeTransformations
2113 2114 2115 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#transformations ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformation>
Transformation for each infoType. Cannot specify more than one
for a given infoType. [required]
Corresponds to the JSON property transformations
2111 2112 2113 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2111 def transformations @transformations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2118 2119 2120 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 2118 def update!(**args) @transformations = args[:transformations] if args.key?(:transformations) end |