diff --git a/.apigentools-info b/.apigentools-info index 964e856f905..bb1047054bd 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2025-04-07 18:49:32.102281", - "spec_repo_commit": "d0287df0" + "regenerated": "2025-04-08 14:37:45.449200", + "spec_repo_commit": "642b7d0b" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2025-04-07 18:49:32.119706", - "spec_repo_commit": "d0287df0" + "regenerated": "2025-04-08 14:37:45.465050", + "spec_repo_commit": "642b7d0b" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index a0c142ac78b..c71e9b24e26 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -3094,11 +3094,13 @@ components: description: Name of the query for use in formulas. enum: - metric + - monitor - time_slice example: metric type: string x-enum-varnames: - METRIC + - MONITOR - TIME_SLICE FormulaType: description: Set the sort type to formula. diff --git a/src/main/java/com/datadog/api/client/v1/model/FormulaAndFunctionSLOQueryType.java b/src/main/java/com/datadog/api/client/v1/model/FormulaAndFunctionSLOQueryType.java index 8014e8f09c9..08babb01fe0 100644 --- a/src/main/java/com/datadog/api/client/v1/model/FormulaAndFunctionSLOQueryType.java +++ b/src/main/java/com/datadog/api/client/v1/model/FormulaAndFunctionSLOQueryType.java @@ -24,10 +24,12 @@ public class FormulaAndFunctionSLOQueryType extends ModelEnum { private static final Set allowedValues = - new HashSet(Arrays.asList("metric", "time_slice")); + new HashSet(Arrays.asList("metric", "monitor", "time_slice")); public static final FormulaAndFunctionSLOQueryType METRIC = new FormulaAndFunctionSLOQueryType("metric"); + public static final FormulaAndFunctionSLOQueryType MONITOR = + new FormulaAndFunctionSLOQueryType("monitor"); public static final FormulaAndFunctionSLOQueryType TIME_SLICE = new FormulaAndFunctionSLOQueryType("time_slice");