Class: DatadogAPIClient::V2::BulkMuteFindingsRequestProperties
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::BulkMuteFindingsRequestProperties
- 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
-
#description ⇒ Object
Additional information about the reason why those findings are muted or unmuted.
-
#expiration_date ⇒ Object
The expiration date of the mute or unmute action (Unix ms).
-
#muted ⇒ Object
readonly
Whether those findings should be muted or unmuted.
-
#reason ⇒ Object
readonly
The reason why this finding is muted or unmuted.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#description ⇒ Object
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_date ⇒ Object
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.
29 30 31 |
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 29 def expiration_date @expiration_date end |
#muted ⇒ Object
Whether those findings should be muted or unmuted.
32 33 34 |
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 32 def muted @muted end |
#reason ⇒ Object
The reason why this finding is muted or unmuted.
35 36 37 |
# File 'lib/datadog_api_client/v2/models/bulk_mute_findings_request_properties.rb', line 35 def reason @reason end |