class Google::Apis::DlpV2::GooglePrivacyDlpV2WordList

Message defining a list of words or phrases to search for in the data.

Attributes

words[RW]

Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required] Corresponds to the JSON property `words` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 6456
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 6461
def update!(**args)
  @words = args[:words] if args.key?(:words)
end