Sha256: 021c5d7eaf8523be1af8c23eb7b31ceed1cbe1fba48e78909f6e5c0fc8a62583

Contents?: true

Size: 1.73 KB

Versions: 2

Compression:

Stored size: 1.73 KB

Contents

# DatadogAPIClient::V2::IncidentUpdateAttributes

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **customer_impact_end** | **Time** | Timestamp when customers were no longer impacted by the incident. | [optional] |
| **customer_impact_scope** | **String** | A summary of the impact customers experienced during the incident. | [optional] |
| **customer_impact_start** | **Time** | Timestamp when customers began being impacted by the incident. | [optional] |
| **customer_impacted** | **Boolean** | A flag indicating whether the incident caused customer impact. | [optional] |
| **detected** | **Time** | Timestamp when the incident was detected. | [optional] |
| **fields** | [**Hash<String, IncidentFieldAttributes>**](IncidentFieldAttributes.md) | A condensed view of the user-defined fields for which to update selections. | [optional] |
| **notification_handles** | [**Array<IncidentNotificationHandle>**](IncidentNotificationHandle.md) | Notification handles that will be notified of the incident during update. | [optional] |
| **resolved** | **Time** | Timestamp when the incident's state was set to resolved. | [optional] |
| **title** | **String** | The title of the incident, which summarizes what happened. | [optional] |

## Example

```ruby
require 'datadog_api_client/v2'

instance = DatadogAPIClient::V2::IncidentUpdateAttributes.new(
  customer_impact_end: null,
  customer_impact_scope: Example customer impact scope,
  customer_impact_start: null,
  customer_impacted: false,
  detected: null,
  fields: {"severity":{"type":"dropdown","value":"SEV-5"}},
  notification_handles: null,
  resolved: null,
  title: A test incident title
)
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
datadog_api_client-1.4.0 docs/v2/IncidentUpdateAttributes.md
datadog_api_client-1.3.0 docs/v2/IncidentUpdateAttributes.md