Sha256: 9976d804ec15b5ec237d2fd56d2d62bb77cead4663ef18b0fa994f06510cc031
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
# DatadogAPIClient::V2::IncidentCreateAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **customer_impacted** | **Boolean** | A flag indicating whether the incident caused customer impact. | | | **fields** | [**Hash<String, IncidentFieldAttributes>**](IncidentFieldAttributes.md) | A condensed view of the user-defined fields for which to create initial selections. | [optional] | | **initial_cells** | [**Array<IncidentTimelineCellCreateAttributes>**](IncidentTimelineCellCreateAttributes.md) | An array of initial timeline cells to be placed at the beginning of the incident timeline. | [optional] | | **notification_handles** | [**Array<IncidentNotificationHandle>**](IncidentNotificationHandle.md) | Notification handles that will be notified of the incident at creation. | [optional] | | **title** | **String** | The title of the incident, which summarizes what happened. | | ## Example ```ruby require 'datadog_api_client/v2' instance = DatadogAPIClient::V2::IncidentCreateAttributes.new( customer_impacted: false, fields: {"severity":{"type":"dropdown","value":"SEV-5"}}, initial_cells: null, notification_handles: 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/IncidentCreateAttributes.md |
datadog_api_client-1.3.0 | docs/v2/IncidentCreateAttributes.md |