Skip to content

Commit 5ac331c

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 8e33901f of spec repo
1 parent 37bc2d2 commit 5ac331c

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-07-08 19:08:08.429204",
8-
"spec_repo_commit": "7b042e12"
7+
"regenerated": "2025-07-09 14:25:37.040663",
8+
"spec_repo_commit": "8e33901f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-08 19:08:08.445031",
13-
"spec_repo_commit": "7b042e12"
12+
"regenerated": "2025-07-09 14:25:37.056948",
13+
"spec_repo_commit": "8e33901f"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15154,11 +15154,13 @@ components:
1515415154
enum:
1515515155
- logs
1515615156
- rum
15157+
- dora
1515715158
example: logs
1515815159
type: string
1515915160
x-enum-varnames:
1516015161
- LOGS
1516115162
- RUM
15163+
- DORA
1516215164
EventsGroupBy:
1516315165
description: A dimension on which to split a query's results.
1516415166
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)