Skip to content

Commit a36c0ba

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

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-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:28:36.058"
2+
"spec_repo_commit": "f2ae7eb",
3+
"generated": "2025-07-17 19:54:51.613"
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/main/java/com/datadog/api/client/v2/model/EventsDataSource.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
public class EventsDataSource extends ModelEnum<String> {
2424

2525
private static final Set<String> allowedValues =
26-
new HashSet<String>(Arrays.asList("logs", "rum"));
26+
new HashSet<String>(Arrays.asList("logs", "rum", "dora"));
2727

2828
public static final EventsDataSource LOGS = new EventsDataSource("logs");
2929
public static final EventsDataSource RUM = new EventsDataSource("rum");
30+
public static final EventsDataSource DORA = new EventsDataSource("dora");
3031

3132
EventsDataSource(String value) {
3233
super(value, allowedValues);

0 commit comments

Comments
 (0)