Class: DatadogAPIClient::V2::BulkMuteFindingsRequestProperties

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb

Overview

Object containing the new mute properties of the findings.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#descriptionObject

Additional information about the reason why those findings are muted or unmuted. This field has a maximum limit of 280 characters.



25
26
27
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 25

def description
  @description
end

#expiration_dateObject

The expiration date of the mute or unmute action (Unix ms). It must be set to a value greater than the current timestamp. If this field is not provided, the finding will be muted or unmuted indefinitely, which is equivalent to setting the expiration date to 9999999999999.



30
31
32
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 30

def expiration_date
  @expiration_date
end

#mutedObject

Whether those findings should be muted or unmuted.



33
34
35
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 33

def muted
  @muted
end

#reasonObject

The reason why this finding is muted or unmuted.



36
37
38
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 36

def reason
  @reason
end