Skip to content

Commit d0e9b5c

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3ef53e6 of spec repo
1 parent 7b859dc commit d0e9b5c

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/datadog_api_client/v1/model/formula_and_function_events_data_source.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class FormulaAndFunctionEventsDataSource(ModelSimple):
1616
"""
1717
Data source for event platform-based queries.
1818
19-
:param value: Must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", "audit", "events", "ci_tests", "ci_pipelines", "incident_analytics", "product_analytics", "on_call_events"].
19+
:param value: Must be one of ["logs", "spans", "network", "rum", "security_signals", "profiles", "audit", "events", "ci_tests", "ci_pipelines", "incident_analytics", "product_analytics", "on_call_events", "errors", "database_queries", "llm_observability", "monitors", "monitor_groups", "network_device_flows", "synthetics_test_runs"].
2020
:type value: str
2121
"""
2222

@@ -34,6 +34,13 @@ class FormulaAndFunctionEventsDataSource(ModelSimple):
3434
"incident_analytics",
3535
"product_analytics",
3636
"on_call_events",
37+
"errors",
38+
"database_queries",
39+
"llm_observability",
40+
"monitors",
41+
"monitor_groups",
42+
"network_device_flows",
43+
"synthetics_test_runs",
3744
}
3845
LOGS: ClassVar["FormulaAndFunctionEventsDataSource"]
3946
SPANS: ClassVar["FormulaAndFunctionEventsDataSource"]
@@ -48,6 +55,13 @@ class FormulaAndFunctionEventsDataSource(ModelSimple):
4855
INCIDENT_ANALYTICS: ClassVar["FormulaAndFunctionEventsDataSource"]
4956
PRODUCT_ANALYTICS: ClassVar["FormulaAndFunctionEventsDataSource"]
5057
ON_CALL_EVENTS: ClassVar["FormulaAndFunctionEventsDataSource"]
58+
ERRORS: ClassVar["FormulaAndFunctionEventsDataSource"]
59+
DATABASE_QUERIES: ClassVar["FormulaAndFunctionEventsDataSource"]
60+
LLM_OBSERVABILITY: ClassVar["FormulaAndFunctionEventsDataSource"]
61+
MONITORS: ClassVar["FormulaAndFunctionEventsDataSource"]
62+
MONITOR_GROUPS: ClassVar["FormulaAndFunctionEventsDataSource"]
63+
NETWORK_DEVICE_FLOWS: ClassVar["FormulaAndFunctionEventsDataSource"]
64+
SYNTHETICS_TEST_RUNS: ClassVar["FormulaAndFunctionEventsDataSource"]
5165

5266
@cached_property
5367
def openapi_types(_):
@@ -69,3 +83,10 @@ def openapi_types(_):
6983
FormulaAndFunctionEventsDataSource.INCIDENT_ANALYTICS = FormulaAndFunctionEventsDataSource("incident_analytics")
7084
FormulaAndFunctionEventsDataSource.PRODUCT_ANALYTICS = FormulaAndFunctionEventsDataSource("product_analytics")
7185
FormulaAndFunctionEventsDataSource.ON_CALL_EVENTS = FormulaAndFunctionEventsDataSource("on_call_events")
86+
FormulaAndFunctionEventsDataSource.ERRORS = FormulaAndFunctionEventsDataSource("errors")
87+
FormulaAndFunctionEventsDataSource.DATABASE_QUERIES = FormulaAndFunctionEventsDataSource("database_queries")
88+
FormulaAndFunctionEventsDataSource.LLM_OBSERVABILITY = FormulaAndFunctionEventsDataSource("llm_observability")
89+
FormulaAndFunctionEventsDataSource.MONITORS = FormulaAndFunctionEventsDataSource("monitors")
90+
FormulaAndFunctionEventsDataSource.MONITOR_GROUPS = FormulaAndFunctionEventsDataSource("monitor_groups")
91+
FormulaAndFunctionEventsDataSource.NETWORK_DEVICE_FLOWS = FormulaAndFunctionEventsDataSource("network_device_flows")
92+
FormulaAndFunctionEventsDataSource.SYNTHETICS_TEST_RUNS = FormulaAndFunctionEventsDataSource("synthetics_test_runs")

0 commit comments

Comments
 (0)