Skip to content

Commit 97b82c4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a883a52a of spec repo
1 parent 311fdc4 commit 97b82c4

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-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": "2024-12-11 20:35:38.546745",
8-
"spec_repo_commit": "7b62d196"
7+
"regenerated": "2024-12-11 22:00:41.863090",
8+
"spec_repo_commit": "a883a52a"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-12-11 20:35:38.566354",
13-
"spec_repo_commit": "7b62d196"
12+
"regenerated": "2024-12-11 22:00:41.886744",
13+
"spec_repo_commit": "a883a52a"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21047,11 +21047,13 @@ components:
2104721047
SLOReportInterval:
2104821048
description: The frequency at which report data is to be generated.
2104921049
enum:
21050+
- daily
2105021051
- weekly
2105121052
- monthly
2105221053
example: weekly
2105321054
type: string
2105421055
x-enum-varnames:
21056+
- DAILY
2105521057
- WEEKLY
2105621058
- MONTHLY
2105721059
SLOReportPostResponse:

src/main/java/com/datadog/api/client/v2/model/SLOReportInterval.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
public 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

0 commit comments

Comments
 (0)