File tree Expand file tree Collapse file tree 4 files changed +18
-10
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 4 files changed +18
-10
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.4",
7
- "regenerated": "2022-12-20 16:45:23.602683 ",
8
- "spec_repo_commit": "ec3c91a9 "
7
+ "regenerated": "2022-12-21 16:21:44.259338 ",
8
+ "spec_repo_commit": "2c16ca69 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2022-12-20 16:45:23.613963 ",
13
- "spec_repo_commit": "ec3c91a9 "
12
+ "regenerated": "2022-12-21 16:21:44.271304 ",
13
+ "spec_repo_commit": "2c16ca69 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -1434,7 +1434,11 @@ components:
1434
1434
by:
1435
1435
additionalProperties:
1436
1436
description: The values for each group-by.
1437
- type: string
1437
+ oneOf:
1438
+ - type: string
1439
+ - format: double
1440
+ type: number
1441
+ - type: boolean
1438
1442
description: The key-value pairs for each group-by.
1439
1443
example:
1440
1444
'@ci.provider.name': gitlab
@@ -1687,7 +1691,11 @@ components:
1687
1691
by:
1688
1692
additionalProperties:
1689
1693
description: The values for each group-by.
1690
- type: string
1694
+ oneOf:
1695
+ - type: string
1696
+ - format: double
1697
+ type: number
1698
+ - type: boolean
1691
1699
description: The key-value pairs for each group-by.
1692
1700
example:
1693
1701
'@test.service': web-ui-tests
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class CIAppPipelinesBucketResponse {
14
14
/**
15
15
* The key-value pairs for each group-by.
16
16
*/
17
- "by" ?: { [ key : string ] : string } ;
17
+ "by" ?: { [ key : string ] : any } ;
18
18
/**
19
19
* A map of the metric name to value for regular compute, or a list of values for a timeseries.
20
20
*/
@@ -31,7 +31,7 @@ export class CIAppPipelinesBucketResponse {
31
31
static readonly attributeTypeMap : AttributeTypeMap = {
32
32
by : {
33
33
baseName : "by" ,
34
- type : "{ [key: string]: string ; }" ,
34
+ type : "{ [key: string]: any ; }" ,
35
35
} ,
36
36
computes : {
37
37
baseName : "computes" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class CIAppTestsBucketResponse {
14
14
/**
15
15
* The key-value pairs for each group-by.
16
16
*/
17
- "by" ?: { [ key : string ] : string } ;
17
+ "by" ?: { [ key : string ] : any } ;
18
18
/**
19
19
* A map of the metric name to value for regular compute, or a list of values for a timeseries.
20
20
*/
@@ -31,7 +31,7 @@ export class CIAppTestsBucketResponse {
31
31
static readonly attributeTypeMap : AttributeTypeMap = {
32
32
by : {
33
33
baseName : "by" ,
34
- type : "{ [key: string]: string ; }" ,
34
+ type : "{ [key: string]: any ; }" ,
35
35
} ,
36
36
computes : {
37
37
baseName : "computes" ,
You can’t perform that action at this time.
0 commit comments