Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2WordList
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2WordList
- 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
Message defining a list of words or phrases to search for in the data.
Instance Attribute Summary collapse
-
#words ⇒ Array<String>
Words or phrases defining the dictionary.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2WordList
constructor
A new instance of GooglePrivacyDlpV2beta2WordList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2WordList
Returns a new instance of GooglePrivacyDlpV2beta2WordList
6203 6204 6205 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6203 def initialize(**args) update!(**args) end |
Instance Attribute Details
#words ⇒ Array<String>
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
6201 6202 6203 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6201 def words @words end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6208 6209 6210 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 6208 def update!(**args) @words = args[:words] if args.key?(:words) end |