Skip to content

Commit 5a7bfdd

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 9a0922b9 of spec repo
1 parent 045d793 commit 5a7bfdd

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-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.2",
7-
"regenerated": "2022-04-04 17:26:12.289226",
8-
"spec_repo_commit": "7e16a5c4"
7+
"regenerated": "2022-04-05 10:17:40.468760",
8+
"spec_repo_commit": "9a0922b9"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.2",
12-
"regenerated": "2022-04-04 17:26:12.306856",
13-
"spec_repo_commit": "7e16a5c4"
12+
"regenerated": "2022-04-05 10:17:40.484562",
13+
"spec_repo_commit": "9a0922b9"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2743,6 +2743,7 @@ components:
27432743
- min
27442744
- max
27452745
- avg
2746+
- median
27462747
example: pc90
27472748
type: string
27482749
x-enum-varnames:
@@ -2757,6 +2758,7 @@ components:
27572758
- MIN
27582759
- MAX
27592760
- AVG
2761+
- MEDIAN
27602762
LogsArchive:
27612763
description: The logs archive.
27622764
properties:
@@ -4606,6 +4608,7 @@ components:
46064608
- min
46074609
- max
46084610
- avg
4611+
- median
46094612
example: pc90
46104613
type: string
46114614
x-enum-varnames:
@@ -4620,6 +4623,7 @@ components:
46204623
- MIN
46214624
- MAX
46224625
- AVG
4626+
- MEDIAN
46234627
RUMAnalyticsAggregateResponse:
46244628
description: The response object for the RUM events aggregate API endpoint.
46254629
properties:

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ export type LogsAggregationFunction =
1919
| typeof SUM
2020
| typeof MIN
2121
| typeof MAX
22-
| typeof AVG;
22+
| typeof AVG
23+
| typeof MEDIAN;
2324
export const COUNT = "count";
2425
export const CARDINALITY = "cardinality";
2526
export const PERCENTILE_75 = "pc75";
@@ -31,3 +32,4 @@ export const SUM = "sum";
3132
export const MIN = "min";
3233
export const MAX = "max";
3334
export const AVG = "avg";
35+
export const MEDIAN = "median";

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ const enumsMap: { [key: string]: any[] } = {
428428
"min",
429429
"max",
430430
"avg",
431+
"median",
431432
],
432433
LogsArchiveDestinationAzureType: ["azure"],
433434
LogsArchiveDestinationGCSType: ["gcs"],
@@ -465,6 +466,7 @@ const enumsMap: { [key: string]: any[] } = {
465466
"min",
466467
"max",
467468
"avg",
469+
"median",
468470
],
469471
RUMComputeType: ["timeseries", "total"],
470472
RUMEventType: ["rum"],

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ export type RUMAggregationFunction =
1919
| typeof SUM
2020
| typeof MIN
2121
| typeof MAX
22-
| typeof AVG;
22+
| typeof AVG
23+
| typeof MEDIAN;
2324
export const COUNT = "count";
2425
export const CARDINALITY = "cardinality";
2526
export const PERCENTILE_75 = "pc75";
@@ -31,3 +32,4 @@ export const SUM = "sum";
3132
export const MIN = "min";
3233
export const MAX = "max";
3334
export const AVG = "avg";
35+
export const MEDIAN = "median";

0 commit comments

Comments
 (0)