Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Regex

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

Message defining a custom regular expression.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2Regex

Returns a new instance of GooglePrivacyDlpV2Regex



4659
4660
4661
# File 'generated/google/apis/dlp_v2/classes.rb', line 4659

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#patternString

Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub. Corresponds to the JSON property pattern

Returns:

  • (String)


4657
4658
4659
# File 'generated/google/apis/dlp_v2/classes.rb', line 4657

def pattern
  @pattern
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4664
4665
4666
# File 'generated/google/apis/dlp_v2/classes.rb', line 4664

def update!(**args)
  @pattern = args[:pattern] if args.key?(:pattern)
end