Sha256: 5a08db90955be460c3081a1980c6e925f45d86a834d030fc577a09fc2570f544

Contents?: true

Size: 1.68 KB

Versions: 5

Compression:

Stored size: 1.68 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<String>** | 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

5 entries across 5 versions & 1 rubygems

Version Path
datadog_api_client-1.2.0 docs/v2/IncidentUpdateAttributes.md
datadog_api_client-1.1.0 docs/v2/IncidentUpdateAttributes.md
datadog_api_client-1.0.0 docs/v2/IncidentUpdateAttributes.md
datadog_api_client-1.0.0.beta.3 docs/v2/IncidentUpdateAttributes.md
datadog_api_client-1.0.0.beta.2 docs/v2/IncidentUpdateAttributes.md