Skip to content

Commit 846803a

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
add rum slo bugfix (#2138)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent dfb6886 commit 846803a

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.apigentools-info

+4-4
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-04-07 18:49:35.793670",
8-
"spec_repo_commit": "d0287df0"
7+
"regenerated": "2025-04-08 14:37:46.757489",
8+
"spec_repo_commit": "642b7d0b"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-07 18:49:35.810356",
13-
"spec_repo_commit": "d0287df0"
12+
"regenerated": "2025-04-08 14:37:46.774007",
13+
"spec_repo_commit": "642b7d0b"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -3094,11 +3094,13 @@ components:
30943094
description: Name of the query for use in formulas.
30953095
enum:
30963096
- metric
3097+
- monitor
30973098
- time_slice
30983099
example: metric
30993100
type: string
31003101
x-enum-varnames:
31013102
- METRIC
3103+
- MONITOR
31023104
- TIME_SLICE
31033105
FormulaType:
31043106
description: Set the sort type to formula.

packages/datadog-api-client-v1/models/FormulaAndFunctionSLOQueryType.ts

+2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1212

1313
export type FormulaAndFunctionSLOQueryType =
1414
| typeof METRIC
15+
| typeof MONITOR
1516
| typeof TIME_SLICE
1617
| UnparsedObject;
1718
export const METRIC = "metric";
19+
export const MONITOR = "monitor";
1820
export const TIME_SLICE = "time_slice";

packages/datadog-api-client-v1/models/ObjectSerializer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ const enumsMap: { [key: string]: any[] } = {
793793
"burn_rate",
794794
"error_budget_burndown",
795795
],
796-
FormulaAndFunctionSLOQueryType: ["metric", "time_slice"],
796+
FormulaAndFunctionSLOQueryType: ["metric", "monitor", "time_slice"],
797797
FormulaType: ["formula"],
798798
FreeTextWidgetDefinitionType: ["free_text"],
799799
FunnelRequestType: ["funnel"],

0 commit comments

Comments
 (0)