Skip to content

Commit 4e5bce8

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
remove cost from event data source (#2360)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent bdfda77 commit 4e5bce8

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

.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-01-15 09:47:02.950531",
8-
"spec_repo_commit": "21b02fc5"
7+
"regenerated": "2025-01-15 18:03:11.180859",
8+
"spec_repo_commit": "e54847a1"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-15 09:47:02.988116",
13-
"spec_repo_commit": "21b02fc5"
12+
"regenerated": "2025-01-15 18:03:11.196723",
13+
"spec_repo_commit": "e54847a1"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6918,7 +6918,6 @@ components:
69186918
- spans
69196919
- database_queries
69206920
- network
6921-
- cost
69226921
example: rum
69236922
type: string
69246923
x-enum-varnames:
@@ -6931,7 +6930,6 @@ components:
69316930
- SPANS
69326931
- DATABASE_QUERIES
69336932
- NETWORK
6934-
- COST
69356933
MonitorFormulaAndFunctionQueryDefinition:
69366934
description: A formula and function query.
69376935
oneOf:

src/datadog_api_client/v1/model/monitor_formula_and_function_events_data_source.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class MonitorFormulaAndFunctionEventsDataSource(ModelSimple):
1616
"""
1717
Data source for event platform-based queries.
1818
19-
:param value: Must be one of ["rum", "ci_pipelines", "ci_tests", "audit", "events", "logs", "spans", "database_queries", "network", "cost"].
19+
:param value: Must be one of ["rum", "ci_pipelines", "ci_tests", "audit", "events", "logs", "spans", "database_queries", "network"].
2020
:type value: str
2121
"""
2222

@@ -30,7 +30,6 @@ class MonitorFormulaAndFunctionEventsDataSource(ModelSimple):
3030
"spans",
3131
"database_queries",
3232
"network",
33-
"cost",
3433
}
3534
RUM: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
3635
CI_PIPELINES: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
@@ -41,7 +40,6 @@ class MonitorFormulaAndFunctionEventsDataSource(ModelSimple):
4140
SPANS: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
4241
DATABASE_QUERIES: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
4342
NETWORK: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
44-
COST: ClassVar["MonitorFormulaAndFunctionEventsDataSource"]
4543

4644
@cached_property
4745
def openapi_types(_):
@@ -61,4 +59,3 @@ def openapi_types(_):
6159
"database_queries"
6260
)
6361
MonitorFormulaAndFunctionEventsDataSource.NETWORK = MonitorFormulaAndFunctionEventsDataSource("network")
64-
MonitorFormulaAndFunctionEventsDataSource.COST = MonitorFormulaAndFunctionEventsDataSource("cost")

0 commit comments

Comments
 (0)