File tree 3 files changed +4
-9
lines changed
3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2025-01-15 09:47:00.356255 ",
8
- "spec_repo_commit": "21b02fc5 "
7
+ "regenerated": "2025-01-15 18:03:10.176525 ",
8
+ "spec_repo_commit": "e54847a1 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2025-01-15 09:47:00.371502 ",
13
- "spec_repo_commit": "21b02fc5 "
12
+ "regenerated": "2025-01-15 18:03:10.191590 ",
13
+ "spec_repo_commit": "e54847a1 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -6918,7 +6918,6 @@ components:
6918
6918
- spans
6919
6919
- database_queries
6920
6920
- network
6921
- - cost
6922
6921
example: rum
6923
6922
type: string
6924
6923
x-enum-varnames:
@@ -6931,7 +6930,6 @@ components:
6931
6930
- SPANS
6932
6931
- DATABASE_QUERIES
6933
6932
- NETWORK
6934
- - COST
6935
6933
MonitorFormulaAndFunctionQueryDefinition:
6936
6934
description: A formula and function query.
6937
6935
oneOf:
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ pub enum MonitorFormulaAndFunctionEventsDataSource {
16
16
SPANS ,
17
17
DATABASE_QUERIES ,
18
18
NETWORK ,
19
- COST ,
20
19
UnparsedObject ( crate :: datadog:: UnparsedObject ) ,
21
20
}
22
21
@@ -32,7 +31,6 @@ impl ToString for MonitorFormulaAndFunctionEventsDataSource {
32
31
Self :: SPANS => String :: from ( "spans" ) ,
33
32
Self :: DATABASE_QUERIES => String :: from ( "database_queries" ) ,
34
33
Self :: NETWORK => String :: from ( "network" ) ,
35
- Self :: COST => String :: from ( "cost" ) ,
36
34
Self :: UnparsedObject ( v) => v. value . to_string ( ) ,
37
35
}
38
36
}
@@ -66,7 +64,6 @@ impl<'de> Deserialize<'de> for MonitorFormulaAndFunctionEventsDataSource {
66
64
"spans" => Self :: SPANS ,
67
65
"database_queries" => Self :: DATABASE_QUERIES ,
68
66
"network" => Self :: NETWORK ,
69
- "cost" => Self :: COST ,
70
67
_ => Self :: UnparsedObject ( crate :: datadog:: UnparsedObject {
71
68
value : serde_json:: Value :: String ( s. into ( ) ) ,
72
69
} ) ,
You can’t perform that action at this time.
0 commit comments