Skip to content

Commit 097c319

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 20e05e75 of spec repo
1 parent 5a33a3a commit 097c319

File tree

7 files changed

+60
-7
lines changed

7 files changed

+60
-7
lines changed

.apigentools-info

+4-4
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-04-02 13:17:41.580384",
8-
"spec_repo_commit": "de9967cc"
7+
"regenerated": "2024-04-02 15:40:17.273959",
8+
"spec_repo_commit": "20e05e75"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-04-02 13:17:41.597913",
13-
"spec_repo_commit": "de9967cc"
12+
"regenerated": "2024-04-02 15:40:17.295821",
13+
"spec_repo_commit": "20e05e75"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+20-1
Original file line numberDiff line numberDiff line change
@@ -11370,7 +11370,8 @@ components:
1137011370
description: 'The time-slice condition, composed of 3 parts: 1. the metric timeseries
1137111371
query, 2. the comparator,
1137211372

11373-
and 3. the threshold.'
11373+
and 3. the threshold. Optionally, a fourth part, the query interval, can be
11374+
provided.'
1137411375
example:
1137511376
comparator: <
1137611377
query:
@@ -11389,6 +11390,8 @@ components:
1138911390
$ref: '#/components/schemas/SLOTimeSliceComparator'
1139011391
query:
1139111392
$ref: '#/components/schemas/SLOTimeSliceQuery'
11393+
query_interval_seconds:
11394+
$ref: '#/components/schemas/SLOTimeSliceInterval'
1139211395
threshold:
1139311396
description: The threshold value to which each SLI value will be compared.
1139411397
example: 5
@@ -11399,6 +11402,22 @@ components:
1139911402
- threshold
1140011403
- query
1140111404
type: object
11405+
SLOTimeSliceInterval:
11406+
description: 'The interval used when querying data, which defines the size of
11407+
a time slice.
11408+
11409+
Currently, only two values are allowed - 60 (1 minute) and 300 (5 minutes).
11410+
11411+
If not provided, the value defaults to 300 (5 minutes).'
11412+
enum:
11413+
- 60
11414+
- 300
11415+
example: 300
11416+
format: int32
11417+
type: integer
11418+
x-enum-varnames:
11419+
- ONE_MINUTE
11420+
- FIVE_MINUTES
1140211421
SLOTimeSliceQuery:
1140311422
description: The queries and formula used to calculate the SLI value.
1140411423
example:

packages/datadog-api-client-v1/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -825,6 +825,7 @@ export { SLOThreshold } from "./models/SLOThreshold";
825825
export { SLOTimeframe } from "./models/SLOTimeframe";
826826
export { SLOTimeSliceComparator } from "./models/SLOTimeSliceComparator";
827827
export { SLOTimeSliceCondition } from "./models/SLOTimeSliceCondition";
828+
export { SLOTimeSliceInterval } from "./models/SLOTimeSliceInterval";
828829
export { SLOTimeSliceQuery } from "./models/SLOTimeSliceQuery";
829830
export { SLOTimeSliceSpec } from "./models/SLOTimeSliceSpec";
830831
export { SLOType } from "./models/SLOType";

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

+1
Original file line numberDiff line numberDiff line change
@@ -1122,6 +1122,7 @@ const enumsMap: { [key: string]: any[] } = {
11221122
SLOListWidgetRequestType: ["slo_list"],
11231123
SLOState: ["breached", "warning", "ok", "no_data"],
11241124
SLOTimeSliceComparator: [">", ">=", "<", "<="],
1125+
SLOTimeSliceInterval: [60, 300],
11251126
SLOTimeframe: ["7d", "30d", "90d", "custom"],
11261127
SLOType: ["metric", "monitor", "time_slice"],
11271128
SLOTypeNumeric: [0, 1, 2],

packages/datadog-api-client-v1/models/SLOTimeSliceCondition.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
* Copyright 2020-Present Datadog, Inc.
55
*/
66
import { SLOTimeSliceComparator } from "./SLOTimeSliceComparator";
7+
import { SLOTimeSliceInterval } from "./SLOTimeSliceInterval";
78
import { SLOTimeSliceQuery } from "./SLOTimeSliceQuery";
89

910
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1011

1112
/**
1213
* The time-slice condition, composed of 3 parts: 1. the metric timeseries query, 2. the comparator,
13-
* and 3. the threshold.
14+
* and 3. the threshold. Optionally, a fourth part, the query interval, can be provided.
1415
*/
1516
export class SLOTimeSliceCondition {
1617
/**
@@ -21,6 +22,12 @@ export class SLOTimeSliceCondition {
2122
* The queries and formula used to calculate the SLI value.
2223
*/
2324
"query": SLOTimeSliceQuery;
25+
/**
26+
* The interval used when querying data, which defines the size of a time slice.
27+
* Currently, only two values are allowed - 60 (1 minute) and 300 (5 minutes).
28+
* If not provided, the value defaults to 300 (5 minutes).
29+
*/
30+
"queryIntervalSeconds"?: SLOTimeSliceInterval;
2431
/**
2532
* The threshold value to which each SLI value will be compared.
2633
*/
@@ -52,6 +59,11 @@ export class SLOTimeSliceCondition {
5259
type: "SLOTimeSliceQuery",
5360
required: true,
5461
},
62+
queryIntervalSeconds: {
63+
baseName: "query_interval_seconds",
64+
type: "SLOTimeSliceInterval",
65+
format: "int32",
66+
},
5567
threshold: {
5668
baseName: "threshold",
5769
type: "number",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3+
* This product includes software developed at Datadog (https://www.datadoghq.com/).
4+
* Copyright 2020-Present Datadog, Inc.
5+
*/
6+
7+
import { UnparsedObject } from "../../datadog-api-client-common/util";
8+
9+
/**
10+
* The interval used when querying data, which defines the size of a time slice.
11+
* Currently, only two values are allowed - 60 (1 minute) and 300 (5 minutes).
12+
* If not provided, the value defaults to 300 (5 minutes).
13+
*/
14+
15+
export type SLOTimeSliceInterval =
16+
| typeof ONE_MINUTE
17+
| typeof FIVE_MINUTES
18+
| UnparsedObject;
19+
export const ONE_MINUTE = 60;
20+
export const FIVE_MINUTES = 300;

packages/datadog-api-client-v1/models/SLOTimeSliceSpec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1313
export class SLOTimeSliceSpec {
1414
/**
1515
* The time-slice condition, composed of 3 parts: 1. the metric timeseries query, 2. the comparator,
16-
* and 3. the threshold.
16+
* and 3. the threshold. Optionally, a fourth part, the query interval, can be provided.
1717
*/
1818
"timeSlice": SLOTimeSliceCondition;
1919

0 commit comments

Comments
 (0)