Skip to content

Commit 516f2fb

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 5256020 of spec repo
1 parent d80a173 commit 516f2fb

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3303,6 +3303,7 @@ components:
33033303
- product_analytics
33043304
- on_call_events
33053305
- errors
3306+
- llm_observability
33063307
example: "logs"
33073308
type: string
33083309
x-enum-varnames:
@@ -3320,6 +3321,7 @@ components:
33203321
- PRODUCT_ANALYTICS
33213322
- ON_CALL_EVENTS
33223323
- ERRORS
3324+
- LLM_OBSERVABILITY
33233325
FormulaAndFunctionMetricAggregation:
33243326
description: The aggregation methods available for metrics queries.
33253327
enum:

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
3939
"incident_analytics",
4040
"product_analytics",
4141
"on_call_events",
42-
"errors"));
42+
"errors",
43+
"llm_observability"));
4344

4445
public static final FormulaAndFunctionEventsDataSource LOGS =
4546
new FormulaAndFunctionEventsDataSource("logs");
@@ -69,6 +70,8 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
6970
new FormulaAndFunctionEventsDataSource("on_call_events");
7071
public static final FormulaAndFunctionEventsDataSource ERRORS =
7172
new FormulaAndFunctionEventsDataSource("errors");
73+
public static final FormulaAndFunctionEventsDataSource LLM_OBSERVABILITY =
74+
new FormulaAndFunctionEventsDataSource("llm_observability");
7275

7376
FormulaAndFunctionEventsDataSource(String value) {
7477
super(value, allowedValues);

0 commit comments

Comments
 (0)