class Google::Apis::DlpV2::GooglePrivacyDlpV2CharsToIgnore

Characters to skip when doing deidentification of a value. These will be left alone and skipped.

Attributes

characters_to_skip[RW]

Characters to not transform when masking. Corresponds to the JSON property `charactersToSkip` @return [String]

common_characters_to_ignore[RW]

Common characters to not transform when masking. Useful to avoid removing punctuation. Corresponds to the JSON property `commonCharactersToIgnore` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 670
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 675
def update!(**args)
  @characters_to_skip = args[:characters_to_skip] if args.key?(:characters_to_skip)
  @common_characters_to_ignore = args[:common_characters_to_ignore] if args.key?(:common_characters_to_ignore)
end