Skip to content

Commit dae2852

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit de612b2d of spec repo
1 parent c0851f4 commit dae2852

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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-04-04 12:49:29.243722",
8-
"spec_repo_commit": "73e22797"
7+
"regenerated": "2025-04-04 17:53:33.561631",
8+
"spec_repo_commit": "de612b2d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-04 12:49:29.261107",
13-
"spec_repo_commit": "73e22797"
12+
"regenerated": "2025-04-04 17:53:33.577435",
13+
"spec_repo_commit": "de612b2d"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 0 deletions
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.

src/main/java/com/datadog/api/client/v1/model/FormulaAndFunctionSLOQueryType.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
public class FormulaAndFunctionSLOQueryType extends ModelEnum<String> {
2525

2626
private static final Set<String> allowedValues =
27-
new HashSet<String>(Arrays.asList("metric", "time_slice"));
27+
new HashSet<String>(Arrays.asList("metric", "monitor", "time_slice"));
2828

2929
public static final FormulaAndFunctionSLOQueryType METRIC =
3030
new FormulaAndFunctionSLOQueryType("metric");
31+
public static final FormulaAndFunctionSLOQueryType MONITOR =
32+
new FormulaAndFunctionSLOQueryType("monitor");
3133
public static final FormulaAndFunctionSLOQueryType TIME_SLICE =
3234
new FormulaAndFunctionSLOQueryType("time_slice");
3335

0 commit comments

Comments
 (0)