Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeTransformation

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 transformation to apply to text that is identified as a specific info_type.

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) ⇒ GooglePrivacyDlpV2InfoTypeTransformation

Returns a new instance of GooglePrivacyDlpV2InfoTypeTransformation



2742
2743
2744
# File 'generated/google/apis/dlp_v2/classes.rb', line 2742

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

Instance Attribute Details

#info_typesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType>

InfoTypes to apply the transformation to. An empty list will cause this transformation to apply to all findings that correspond to infoTypes that were requested in InspectConfig. Corresponds to the JSON property infoTypes



2735
2736
2737
# File 'generated/google/apis/dlp_v2/classes.rb', line 2735

def info_types
  @info_types
end

#primitive_transformationGoogle::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation

A rule for transforming a value. Corresponds to the JSON property primitiveTransformation



2740
2741
2742
# File 'generated/google/apis/dlp_v2/classes.rb', line 2740

def primitive_transformation
  @primitive_transformation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2747
2748
2749
2750
# File 'generated/google/apis/dlp_v2/classes.rb', line 2747

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