Skip to content

Commit 353ebae

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Allow to make XPQ queries to the DORA data source (#2689)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 5fa4a4d commit 353ebae

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "ef70ddf",
3-
"generated": "2025-07-17 17:27:16.767"
2+
"spec_repo_commit": "f2ae7eb",
3+
"generated": "2025-07-17 19:53:31.439"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15479,11 +15479,13 @@ components:
1547915479
enum:
1548015480
- logs
1548115481
- rum
15482+
- dora
1548215483
example: logs
1548315484
type: string
1548415485
x-enum-varnames:
1548515486
- LOGS
1548615487
- RUM
15488+
- DORA
1548715489
EventsGroupBy:
1548815490
description: A dimension on which to split a query's results.
1548915491
properties:

src/datadog_api_client/v2/model/events_data_source.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@ class EventsDataSource(ModelSimple):
1616
"""
1717
A data source that is powered by the Events Platform.
1818
19-
:param value: If omitted defaults to "logs". Must be one of ["logs", "rum"].
19+
:param value: If omitted defaults to "logs". Must be one of ["logs", "rum", "dora"].
2020
:type value: str
2121
"""
2222

2323
allowed_values = {
2424
"logs",
2525
"rum",
26+
"dora",
2627
}
2728
LOGS: ClassVar["EventsDataSource"]
2829
RUM: ClassVar["EventsDataSource"]
30+
DORA: ClassVar["EventsDataSource"]
2931

3032
@cached_property
3133
def openapi_types(_):
@@ -36,3 +38,4 @@ def openapi_types(_):
3638

3739
EventsDataSource.LOGS = EventsDataSource("logs")
3840
EventsDataSource.RUM = EventsDataSource("rum")
41+
EventsDataSource.DORA = EventsDataSource("dora")

0 commit comments

Comments
 (0)