File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
src/main/java/com/datadog/api/client/v2/model Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 44 "spec_versions": {
55 "v1": {
66 "apigentools_version": "1.6.6",
7- "regenerated": "2024-12-12 13:29:22.125167 ",
8- "spec_repo_commit": "f0c3c0f4 "
7+ "regenerated": "2024-12-12 14:27:18.507650 ",
8+ "spec_repo_commit": "3ebe762b "
99 },
1010 "v2": {
1111 "apigentools_version": "1.6.6",
12- "regenerated": "2024-12-12 13:29:22.145471 ",
13- "spec_repo_commit": "f0c3c0f4 "
12+ "regenerated": "2024-12-12 14:27:18.526897 ",
13+ "spec_repo_commit": "3ebe762b "
1414 }
1515 }
1616}
Original file line number Diff line number Diff line change @@ -21110,11 +21110,13 @@ components:
2111021110 SLOReportInterval:
2111121111 description: The frequency at which report data is to be generated.
2111221112 enum:
21113+ - daily
2111321114 - weekly
2111421115 - monthly
2111521116 example: weekly
2111621117 type: string
2111721118 x-enum-varnames:
21119+ - DAILY
2111821120 - WEEKLY
2111921121 - MONTHLY
2112021122 SLOReportPostResponse:
Original file line number Diff line number Diff line change 2323public class SLOReportInterval extends ModelEnum <String > {
2424
2525 private static final Set <String > allowedValues =
26- new HashSet <String >(Arrays .asList ("weekly" , "monthly" ));
26+ new HashSet <String >(Arrays .asList ("daily" , " weekly" , "monthly" ));
2727
28+ public static final SLOReportInterval DAILY = new SLOReportInterval ("daily" );
2829 public static final SLOReportInterval WEEKLY = new SLOReportInterval ("weekly" );
2930 public static final SLOReportInterval MONTHLY = new SLOReportInterval ("monthly" );
3031
You can’t perform that action at this time.
0 commit comments