-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8dd07ca
commit 07cfeeb
Showing
3 changed files
with
68 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -662,6 +662,8 @@ components: | |
properties: | ||
errors: | ||
description: A list of errors. | ||
example: | ||
- Bad Request | ||
items: | ||
description: A list of items. | ||
example: Bad Request | ||
|
@@ -9402,6 +9404,19 @@ components: | |
were created or updated by the request are | ||
|
||
returned.' | ||
example: | ||
- attributes: | ||
attachment: | ||
documentUrl: '' | ||
title: Postmortem IR-123 | ||
attachment_type: postmortem | ||
id: 00000000-abcd-0002-0000-000000000000 | ||
relationships: | ||
last_modified_by_user: | ||
data: | ||
id: 00000000-0000-0000-cccc-000000000000 | ||
type: users | ||
type: incident_attachments | ||
items: | ||
$ref: '#/components/schemas/IncidentAttachmentData' | ||
type: array | ||
|
@@ -9433,6 +9448,19 @@ components: | |
properties: | ||
data: | ||
description: An array of incident attachments. | ||
example: | ||
- attributes: | ||
attachment: | ||
documentUrl: '' | ||
title: Postmortem IR-123 | ||
attachment_type: postmortem | ||
id: 00000000-abcd-0002-0000-000000000000 | ||
relationships: | ||
last_modified_by_user: | ||
data: | ||
id: 00000000-0000-0000-cccc-000000000000 | ||
type: users | ||
type: incident_attachments | ||
items: | ||
$ref: '#/components/schemas/IncidentAttachmentData' | ||
type: array | ||
|
@@ -9526,8 +9554,6 @@ components: | |
oneOf: | ||
- $ref: '#/components/schemas/IncidentFieldAttributesSingleValue' | ||
- $ref: '#/components/schemas/IncidentFieldAttributesMultipleValue' | ||
required: | ||
- type | ||
IncidentFieldAttributesMultipleValue: | ||
description: A field with potentially multiple values selected. | ||
properties: | ||
|
@@ -10644,6 +10670,8 @@ components: | |
- $ref: '#/components/schemas/IncidentTodoAnonymousAssignee' | ||
IncidentTodoAssigneeArray: | ||
description: Array of todo assignees. | ||
example: | ||
- '@[email protected]' | ||
items: | ||
$ref: '#/components/schemas/IncidentTodoAssignee' | ||
type: array | ||
|
@@ -11800,9 +11828,6 @@ components: | |
- $ref: '#/components/schemas/LogsArchiveDestinationAzure' | ||
- $ref: '#/components/schemas/LogsArchiveDestinationGCS' | ||
- $ref: '#/components/schemas/LogsArchiveDestinationS3' | ||
required: | ||
- type | ||
- integration | ||
LogsArchiveDefinition: | ||
description: The definition of an archive. | ||
properties: | ||
|
@@ -11829,9 +11854,6 @@ components: | |
- $ref: '#/components/schemas/LogsArchiveDestinationAzure' | ||
- $ref: '#/components/schemas/LogsArchiveDestinationGCS' | ||
- $ref: '#/components/schemas/LogsArchiveDestinationS3' | ||
required: | ||
- type | ||
- integration | ||
type: object | ||
LogsArchiveDestinationAzure: | ||
description: The Azure archive destination. | ||
|
@@ -13349,6 +13371,9 @@ components: | |
timestamp and a scalar value (cannot be a string). Timestamps should be | ||
in POSIX time in seconds, and cannot be more than ten minutes in the future | ||
or more than one hour in the past. | ||
example: | ||
- timestamp: 1575317847 | ||
value: 0.5 | ||
items: | ||
$ref: '#/components/schemas/MetricPoint' | ||
type: array | ||
|
@@ -17700,6 +17725,10 @@ components: | |
type: object | ||
ScalarFormulaRequestQueries: | ||
description: List of queries to be run and used as inputs to the formulas. | ||
example: | ||
- aggregator: avg | ||
data_source: metrics | ||
query: avg:system.cpu.user{*} by {env} | ||
items: | ||
$ref: '#/components/schemas/ScalarQuery' | ||
type: array | ||
|
@@ -18658,6 +18687,8 @@ components: | |
type: object | ||
SecurityMonitoringSignalIncidentIds: | ||
description: Array of incidents that are associated with this signal. | ||
example: | ||
- 2066 | ||
items: | ||
description: Public ID attribute of the incident that is associated with the | ||
signal. | ||
|
@@ -23176,6 +23207,9 @@ components: | |
type: object | ||
TimeseriesFormulaRequestQueries: | ||
description: List of queries to be run and used as inputs to the formulas. | ||
example: | ||
- data_source: metrics | ||
query: avg:system.cpu.user{*} by {env} | ||
items: | ||
$ref: '#/components/schemas/TimeseriesQuery' | ||
type: array | ||
|