Skip to content

Commit

Permalink
Regenerate client from commit e54847a1 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Jan 15, 2025
1 parent 4249e96 commit 1ef88f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-15 09:47:00.356255",
"spec_repo_commit": "21b02fc5"
"regenerated": "2025-01-15 18:03:10.176525",
"spec_repo_commit": "e54847a1"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-15 09:47:00.371502",
"spec_repo_commit": "21b02fc5"
"regenerated": "2025-01-15 18:03:10.191590",
"spec_repo_commit": "e54847a1"
}
}
}
2 changes: 0 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6918,7 +6918,6 @@ components:
- spans
- database_queries
- network
- cost
example: rum
type: string
x-enum-varnames:
Expand All @@ -6931,7 +6930,6 @@ components:
- SPANS
- DATABASE_QUERIES
- NETWORK
- COST
MonitorFormulaAndFunctionQueryDefinition:
description: A formula and function query.
oneOf:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ pub enum MonitorFormulaAndFunctionEventsDataSource {
SPANS,
DATABASE_QUERIES,
NETWORK,
COST,
UnparsedObject(crate::datadog::UnparsedObject),
}

Expand All @@ -32,7 +31,6 @@ impl ToString for MonitorFormulaAndFunctionEventsDataSource {
Self::SPANS => String::from("spans"),
Self::DATABASE_QUERIES => String::from("database_queries"),
Self::NETWORK => String::from("network"),
Self::COST => String::from("cost"),
Self::UnparsedObject(v) => v.value.to_string(),
}
}
Expand Down Expand Up @@ -66,7 +64,6 @@ impl<'de> Deserialize<'de> for MonitorFormulaAndFunctionEventsDataSource {
"spans" => Self::SPANS,
"database_queries" => Self::DATABASE_QUERIES,
"network" => Self::NETWORK,
"cost" => Self::COST,
_ => Self::UnparsedObject(crate::datadog::UnparsedObject {
value: serde_json::Value::String(s.into()),
}),
Expand Down

0 comments on commit 1ef88f8

Please sign in to comment.