Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2DeidentifyConfig
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2DeidentifyConfig
- 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
The configuration that controls how the data will change.
Instance Attribute Summary collapse
-
#info_type_transformations ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InfoTypeTransformations
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. -
#record_transformations ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordTransformations
A type of transformation that is applied over structured data such as a table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2DeidentifyConfig
constructor
A new instance of GooglePrivacyDlpV2beta2DeidentifyConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2DeidentifyConfig
Returns a new instance of GooglePrivacyDlpV2beta2DeidentifyConfig
2739 2740 2741 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2739 def initialize(**args) update!(**args) end |
Instance Attribute Details
#info_type_transformations ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InfoTypeTransformations
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.
Corresponds to the JSON property infoTypeTransformations
2731 2732 2733 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2731 def info_type_transformations @info_type_transformations end |
#record_transformations ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordTransformations
A type of transformation that is applied over structured data such as a
table.
Corresponds to the JSON property recordTransformations
2737 2738 2739 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2737 def record_transformations @record_transformations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2744 2745 2746 2747 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2744 def update!(**args) @info_type_transformations = args[:info_type_transformations] if args.key?(:info_type_transformations) @record_transformations = args[:record_transformations] if args.key?(:record_transformations) end |