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
      1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215  | 
    
      # File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1196 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
      1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215  | 
    
      # File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1196 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  |