Class: Google::Cloud::Dlp::V2::TransformationConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::TransformationConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
User specified templates and configs for how to deidentify structured, unstructures, and image files. User must provide either a unstructured deidentify template or at least one redact image config.
Instance Attribute Summary collapse
-
#deidentify_template ⇒ ::String
De-identify template.
-
#image_redact_template ⇒ ::String
Image redact template.
-
#structured_deidentify_template ⇒ ::String
Structured de-identify template.
Instance Attribute Details
#deidentify_template ⇒ ::String
Returns De-identify template.
If this template is specified, it will serve as the default de-identify
template. This template cannot contain record_transformations
since it
can be used for unstructured content such as free-form text files. If this
template is not set, a default ReplaceWithInfoTypeConfig
will be used to
de-identify unstructured content.
3543 3544 3545 3546 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 3543 class TransformationConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#image_redact_template ⇒ ::String
Returns Image redact template. If this template is specified, it will serve as the de-identify template for images. If this template is not set, all findings in the image will be redacted with a black box.
3543 3544 3545 3546 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 3543 class TransformationConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#structured_deidentify_template ⇒ ::String
Returns Structured de-identify template.
If this template is specified, it will serve as the de-identify template
for structured content such as delimited files and tables. If this template
is not set but the deidentify_template
is set, then deidentify_template
will also apply to the structured content. If neither template is set, a
default ReplaceWithInfoTypeConfig
will be used to de-identify structured
content.
3543 3544 3545 3546 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 3543 class TransformationConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |