Class: DatadogAPIClient::V2::SensitiveDataScannerSuppressions

Inherits:
Object
  • Object
show all
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

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

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_withObject

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_matchObject

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_withObject

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