File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -2743,6 +2743,7 @@ components:
2743
2743
- min
2744
2744
- max
2745
2745
- avg
2746
+ - median
2746
2747
example : pc90
2747
2748
type : string
2748
2749
x-enum-varnames :
@@ -2757,6 +2758,7 @@ components:
2757
2758
- MIN
2758
2759
- MAX
2759
2760
- AVG
2761
+ - MEDIAN
2760
2762
LogsArchive :
2761
2763
description : The logs archive.
2762
2764
properties :
@@ -4606,6 +4608,7 @@ components:
4606
4608
- min
4607
4609
- max
4608
4610
- avg
4611
+ - median
4609
4612
example : pc90
4610
4613
type : string
4611
4614
x-enum-varnames :
@@ -4620,6 +4623,7 @@ components:
4620
4623
- MIN
4621
4624
- MAX
4622
4625
- AVG
4626
+ - MEDIAN
4623
4627
RUMAnalyticsAggregateResponse :
4624
4628
description : The response object for the RUM events aggregate API endpoint.
4625
4629
properties :
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ export type LogsAggregationFunction =
19
19
| typeof SUM
20
20
| typeof MIN
21
21
| typeof MAX
22
- | typeof AVG ;
22
+ | typeof AVG
23
+ | typeof MEDIAN ;
23
24
export const COUNT = "count" ;
24
25
export const CARDINALITY = "cardinality" ;
25
26
export const PERCENTILE_75 = "pc75" ;
@@ -31,3 +32,4 @@ export const SUM = "sum";
31
32
export const MIN = "min" ;
32
33
export const MAX = "max" ;
33
34
export const AVG = "avg" ;
35
+ export const MEDIAN = "median" ;
Original file line number Diff line number Diff line change @@ -428,6 +428,7 @@ const enumsMap: { [key: string]: any[] } = {
428
428
"min" ,
429
429
"max" ,
430
430
"avg" ,
431
+ "median" ,
431
432
] ,
432
433
LogsArchiveDestinationAzureType : [ "azure" ] ,
433
434
LogsArchiveDestinationGCSType : [ "gcs" ] ,
@@ -465,6 +466,7 @@ const enumsMap: { [key: string]: any[] } = {
465
466
"min" ,
466
467
"max" ,
467
468
"avg" ,
469
+ "median" ,
468
470
] ,
469
471
RUMComputeType : [ "timeseries" , "total" ] ,
470
472
RUMEventType : [ "rum" ] ,
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ export type RUMAggregationFunction =
19
19
| typeof SUM
20
20
| typeof MIN
21
21
| typeof MAX
22
- | typeof AVG ;
22
+ | typeof AVG
23
+ | typeof MEDIAN ;
23
24
export const COUNT = "count" ;
24
25
export const CARDINALITY = "cardinality" ;
25
26
export const PERCENTILE_75 = "pc75" ;
@@ -31,3 +32,4 @@ export const SUM = "sum";
31
32
export const MIN = "min" ;
32
33
export const MAX = "max" ;
33
34
export const AVG = "avg" ;
35
+ export const MEDIAN = "median" ;
You can’t perform that action at this time.
0 commit comments