diff --git a/.apigentools-info b/.apigentools-info index 84094d6be00..92964f3fd8f 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-12-12 13:29:22.125167", - "spec_repo_commit": "f0c3c0f4" + "regenerated": "2024-12-12 14:27:18.507650", + "spec_repo_commit": "3ebe762b" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-12-12 13:29:22.145471", - "spec_repo_commit": "f0c3c0f4" + "regenerated": "2024-12-12 14:27:18.526897", + "spec_repo_commit": "3ebe762b" } } } \ No newline at end of file diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 643901c6d7f..05e8f325c19 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -21110,11 +21110,13 @@ components: SLOReportInterval: description: The frequency at which report data is to be generated. enum: + - daily - weekly - monthly example: weekly type: string x-enum-varnames: + - DAILY - WEEKLY - MONTHLY SLOReportPostResponse: diff --git a/src/main/java/com/datadog/api/client/v2/model/SLOReportInterval.java b/src/main/java/com/datadog/api/client/v2/model/SLOReportInterval.java index f96047e947a..ff1087c9f52 100644 --- a/src/main/java/com/datadog/api/client/v2/model/SLOReportInterval.java +++ b/src/main/java/com/datadog/api/client/v2/model/SLOReportInterval.java @@ -23,8 +23,9 @@ public class SLOReportInterval extends ModelEnum { private static final Set allowedValues = - new HashSet(Arrays.asList("weekly", "monthly")); + new HashSet(Arrays.asList("daily", "weekly", "monthly")); + public static final SLOReportInterval DAILY = new SLOReportInterval("daily"); public static final SLOReportInterval WEEKLY = new SLOReportInterval("weekly"); public static final SLOReportInterval MONTHLY = new SLOReportInterval("monthly");