Class: Google::Apis::DlpV2::GooglePrivacyDlpV2Proximity

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

Overview

Message for specifying a window around a finding to apply a detection rule.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2Proximity

Returns a new instance of GooglePrivacyDlpV2Proximity.



5059
5060
5061
# File 'lib/google/apis/dlp_v2/classes.rb', line 5059

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

Instance Attribute Details

#window_afterFixnum

Number of characters after the finding to consider. Corresponds to the JSON property windowAfter

Returns:

  • (Fixnum)


5052
5053
5054
# File 'lib/google/apis/dlp_v2/classes.rb', line 5052

def window_after
  @window_after
end

#window_beforeFixnum

Number of characters before the finding to consider. Corresponds to the JSON property windowBefore

Returns:

  • (Fixnum)


5057
5058
5059
# File 'lib/google/apis/dlp_v2/classes.rb', line 5057

def window_before
  @window_before
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5064
5065
5066
5067
# File 'lib/google/apis/dlp_v2/classes.rb', line 5064

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