Skip to content

Commit 35557aa

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3ef53e6 of spec repo
1 parent e10909b commit 35557aa

2 files changed

Lines changed: 36 additions & 1 deletion

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3256,6 +3256,13 @@ components:
32563256
- incident_analytics
32573257
- product_analytics
32583258
- on_call_events
3259+
- errors
3260+
- database_queries
3261+
- llm_observability
3262+
- monitors
3263+
- monitor_groups
3264+
- network_device_flows
3265+
- synthetics_test_runs
32593266
example: "logs"
32603267
type: string
32613268
x-enum-varnames:
@@ -3272,6 +3279,13 @@ components:
32723279
- INCIDENT_ANALYTICS
32733280
- PRODUCT_ANALYTICS
32743281
- ON_CALL_EVENTS
3282+
- ERRORS
3283+
- DATABASE_QUERIES
3284+
- LLM_OBSERVABILITY
3285+
- MONITORS
3286+
- MONITOR_GROUPS
3287+
- NETWORK_DEVICE_FLOWS
3288+
- SYNTHETICS_TEST_RUNS
32753289
FormulaAndFunctionMetricAggregation:
32763290
description: The aggregation methods available for metrics queries.
32773291
enum:

src/main/java/com/datadog/api/client/v1/model/FormulaAndFunctionEventsDataSource.java

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
3838
"ci_pipelines",
3939
"incident_analytics",
4040
"product_analytics",
41-
"on_call_events"));
41+
"on_call_events",
42+
"errors",
43+
"database_queries",
44+
"llm_observability",
45+
"monitors",
46+
"monitor_groups",
47+
"network_device_flows",
48+
"synthetics_test_runs"));
4249

4350
public static final FormulaAndFunctionEventsDataSource LOGS =
4451
new FormulaAndFunctionEventsDataSource("logs");
@@ -66,6 +73,20 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
6673
new FormulaAndFunctionEventsDataSource("product_analytics");
6774
public static final FormulaAndFunctionEventsDataSource ON_CALL_EVENTS =
6875
new FormulaAndFunctionEventsDataSource("on_call_events");
76+
public static final FormulaAndFunctionEventsDataSource ERRORS =
77+
new FormulaAndFunctionEventsDataSource("errors");
78+
public static final FormulaAndFunctionEventsDataSource DATABASE_QUERIES =
79+
new FormulaAndFunctionEventsDataSource("database_queries");
80+
public static final FormulaAndFunctionEventsDataSource LLM_OBSERVABILITY =
81+
new FormulaAndFunctionEventsDataSource("llm_observability");
82+
public static final FormulaAndFunctionEventsDataSource MONITORS =
83+
new FormulaAndFunctionEventsDataSource("monitors");
84+
public static final FormulaAndFunctionEventsDataSource MONITOR_GROUPS =
85+
new FormulaAndFunctionEventsDataSource("monitor_groups");
86+
public static final FormulaAndFunctionEventsDataSource NETWORK_DEVICE_FLOWS =
87+
new FormulaAndFunctionEventsDataSource("network_device_flows");
88+
public static final FormulaAndFunctionEventsDataSource SYNTHETICS_TEST_RUNS =
89+
new FormulaAndFunctionEventsDataSource("synthetics_test_runs");
6990

7091
FormulaAndFunctionEventsDataSource(String value) {
7192
super(value, allowedValues);

0 commit comments

Comments
 (0)