Skip to content

Commit da956fe

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit aabcab59 of spec repo
1 parent dcf5984 commit da956fe

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
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 14:25:01.122850",
8-
"spec_repo_commit": "7a9d0200"
7+
"regenerated": "2024-12-11 16:42:28.351439",
8+
"spec_repo_commit": "aabcab59"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-12-11 14:25:01.142270",
13-
"spec_repo_commit": "7a9d0200"
12+
"regenerated": "2024-12-11 16:42:28.370821",
13+
"spec_repo_commit": "aabcab59"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21001,11 +21001,13 @@ components:
2100121001
SLOReportInterval:
2100221002
description: The frequency at which report data is to be generated.
2100321003
enum:
21004+
- daily
2100421005
- weekly
2100521006
- monthly
2100621007
example: weekly
2100721008
type: string
2100821009
x-enum-varnames:
21010+
- DAILY
2100921011
- WEEKLY
2101021012
- MONTHLY
2101121013
SLOReportPostResponse:

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1804,7 +1804,7 @@ const enumsMap: { [key: string]: any[] } = {
18041804
RumMetricUniquenessWhen: ["match", "end"],
18051805
RunHistoricalJobRequestDataType: ["historicalDetectionsJobCreate"],
18061806
SAMLAssertionAttributesType: ["saml_assertion_attributes"],
1807-
SLOReportInterval: ["weekly", "monthly"],
1807+
SLOReportInterval: ["daily", "weekly", "monthly"],
18081808
SLOReportStatus: [
18091809
"in_progress",
18101810
"completed",

packages/datadog-api-client-v2/models/SLOReportInterval.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1010
* The frequency at which report data is to be generated.
1111
*/
1212

13-
export type SLOReportInterval = typeof WEEKLY | typeof MONTHLY | UnparsedObject;
13+
export type SLOReportInterval =
14+
| typeof DAILY
15+
| typeof WEEKLY
16+
| typeof MONTHLY
17+
| UnparsedObject;
18+
export const DAILY = "daily";
1419
export const WEEKLY = "weekly";
1520
export const MONTHLY = "monthly";

0 commit comments

Comments
 (0)