Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InspectionRule
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2InspectionRule
- 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
A single inspection rule to be applied to infoTypes, specified in
InspectionRuleSet.
Instance Attribute Summary collapse
-
#exclusion_rule ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ExclusionRule
The rule that specifies conditions when findings of infoTypes specified in
InspectionRuleSetare removed from results. -
#hotword_rule ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HotwordRule
The rule that adjusts the likelihood of findings within a certain proximity of hotwords.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2InspectionRule
constructor
A new instance of GooglePrivacyDlpV2InspectionRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2InspectionRule
Returns a new instance of GooglePrivacyDlpV2InspectionRule
3062 3063 3064 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3062 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exclusion_rule ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2ExclusionRule
The rule that specifies conditions when findings of infoTypes specified in
InspectionRuleSet are removed from results.
Corresponds to the JSON property exclusionRule
3054 3055 3056 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3054 def exclusion_rule @exclusion_rule end |
#hotword_rule ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2HotwordRule
The rule that adjusts the likelihood of findings within a certain
proximity of hotwords.
Corresponds to the JSON property hotwordRule
3060 3061 3062 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3060 def hotword_rule @hotword_rule end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3067 3068 3069 3070 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3067 def update!(**args) @exclusion_rule = args[:exclusion_rule] if args.key?(:exclusion_rule) @hotword_rule = args[:hotword_rule] if args.key?(:hotword_rule) end |