Class: Google::Privacy::Dlp::V2::CharsToIgnore
- Inherits:
-
Object
- Object
- Google::Privacy::Dlp::V2::CharsToIgnore
- Defined in:
- lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb
Overview
Characters to skip when doing deidentification of a value. These will be left alone and skipped.
Defined Under Namespace
Modules: CommonCharsToIgnore
Instance Attribute Summary collapse
- #characters_to_skip ⇒ String
- #common_characters_to_ignore ⇒ Google::Privacy::Dlp::V2::CharsToIgnore::CommonCharsToIgnore
Instance Attribute Details
#characters_to_skip ⇒ String
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1011 class CharsToIgnore module CommonCharsToIgnore COMMON_CHARS_TO_IGNORE_UNSPECIFIED = 0 # 0-9 NUMERIC = 1 # A-Z ALPHA_UPPER_CASE = 2 # a-z ALPHA_LOWER_CASE = 3 # US Punctuation, one of !"#$%&'()*+,-./:;<=>?@[\]^_+{|}~ PUNCTUATION = 4 # Whitespace character, one of [ \t\n\x0B\f\r] WHITESPACE = 5 end end |
#common_characters_to_ignore ⇒ Google::Privacy::Dlp::V2::CharsToIgnore::CommonCharsToIgnore
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1011 class CharsToIgnore module CommonCharsToIgnore COMMON_CHARS_TO_IGNORE_UNSPECIFIED = 0 # 0-9 NUMERIC = 1 # A-Z ALPHA_UPPER_CASE = 2 # a-z ALPHA_LOWER_CASE = 3 # US Punctuation, one of !"#$%&'()*+,-./:;<=>?@[\]^_+{|}~ PUNCTUATION = 4 # Whitespace character, one of [ \t\n\x0B\f\r] WHITESPACE = 5 end end |