Class: DatadogAPIClient::V2::SensitiveDataScannerSuppressions
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::SensitiveDataScannerSuppressions
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/sensitive_data_scanner_suppressions.rb
Overview
Object describing the suppressions for a rule. There are three types of suppressions, starts_with, ends_with, and exact_match.
Suppressed matches are not obfuscated, counted in metrics, or displayed in the Findings page.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#ends_with ⇒ Object
List of strings to use for suppression of matches ending with these strings.
-
#exact_match ⇒ Object
List of strings to use for suppression of matches exactly matching these strings.
-
#starts_with ⇒ Object
List of strings to use for suppression of matches starting with these strings.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/sensitive_data_scanner_suppressions.rb', line 34 def additional_properties @additional_properties end |
#ends_with ⇒ Object
List of strings to use for suppression of matches ending with these strings.
26 27 28 |
# File 'lib/datadog_api_client/v2/models/sensitive_data_scanner_suppressions.rb', line 26 def ends_with @ends_with end |
#exact_match ⇒ Object
List of strings to use for suppression of matches exactly matching these strings.
29 30 31 |
# File 'lib/datadog_api_client/v2/models/sensitive_data_scanner_suppressions.rb', line 29 def exact_match @exact_match end |
#starts_with ⇒ Object
List of strings to use for suppression of matches starting with these strings.
32 33 34 |
# File 'lib/datadog_api_client/v2/models/sensitive_data_scanner_suppressions.rb', line 32 def starts_with @starts_with end |