Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CharsToIgnore
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CharsToIgnore
- 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
Characters to skip when doing deidentification of a value. These will be left alone and skipped.
Instance Attribute Summary collapse
-
#characters_to_skip ⇒ String
Corresponds to the JSON property
charactersToSkip
. -
#common_characters_to_ignore ⇒ String
Corresponds to the JSON property
commonCharactersToIgnore
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2CharsToIgnore
constructor
A new instance of GooglePrivacyDlpV2beta2CharsToIgnore.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2CharsToIgnore
Returns a new instance of GooglePrivacyDlpV2beta2CharsToIgnore
2074 2075 2076 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2074 def initialize(**args) update!(**args) end |
Instance Attribute Details
#characters_to_skip ⇒ String
Corresponds to the JSON property charactersToSkip
2067 2068 2069 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2067 def characters_to_skip @characters_to_skip end |
#common_characters_to_ignore ⇒ String
Corresponds to the JSON property commonCharactersToIgnore
2072 2073 2074 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2072 def common_characters_to_ignore @common_characters_to_ignore end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2079 2080 2081 2082 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2079 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 |