File tree Expand file tree Collapse file tree 6 files changed +4
-45
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 6 files changed +4
-45
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": "2023-01-06 07:37:00.902912 ",
8
- "spec_repo_commit": "fe3267e8 "
7
+ "regenerated": "2023-01-06 10:15:14.873059 ",
8
+ "spec_repo_commit": "03622159 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2023-01-06 07:37:00.915435 ",
13
- "spec_repo_commit": "fe3267e8 "
12
+ "regenerated": "2023-01-06 10:15:14.885883 ",
13
+ "spec_repo_commit": "03622159 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3662,7 +3662,6 @@ components:
3662
3662
- estimated_ingested_spans_usage
3663
3663
- fargate_usage
3664
3664
- functions_usage
3665
- - indexed_logs_usage
3666
3665
- infra_host_usage
3667
3666
- invocations_usage
3668
3667
- npm_host_usage
@@ -3693,7 +3692,6 @@ components:
3693
3692
- ESTIMATED_INGESTED_SPANS_USAGE
3694
3693
- FARGATE_USAGE
3695
3694
- FUNCTIONS_USAGE
3696
- - INDEXED_LOGS_USAGE
3697
3695
- INFRA_HOST_USAGE
3698
3696
- INVOCATIONS_USAGE
3699
3697
- NPM_HOST_USAGE
@@ -7014,8 +7012,6 @@ components:
7014
7012
- fargate_percentage
7015
7013
- functions_usage
7016
7014
- functions_percentage
7017
- - indexed_logs_usage
7018
- - indexed_logs_percentage
7019
7015
- infra_host_usage
7020
7016
- infra_host_percentage
7021
7017
- invocations_usage
@@ -7075,8 +7071,6 @@ components:
7075
7071
- FARGATE_PERCENTAGE
7076
7072
- FUNCTIONS_USAGE
7077
7073
- FUNCTIONS_PERCENTAGE
7078
- - INDEXED_LOGS_USAGE
7079
- - INDEXED_LOGS_PERCENTAGE
7080
7074
- INFRA_HOST_USAGE
7081
7075
- INFRA_HOST_PERCENTAGE
7082
7076
- INVOCATIONS_USAGE
@@ -7288,14 +7282,6 @@ components:
7288
7282
description: The Lambda function usage by tag(s).
7289
7283
format: double
7290
7284
type: number
7291
- indexed_logs_percentage:
7292
- description: The percentage of indexed logs usage by tags.
7293
- format: double
7294
- type: number
7295
- indexed_logs_usage:
7296
- description: The indexed logs usage by tags.
7297
- format: double
7298
- type: number
7299
7285
infra_host_percentage:
7300
7286
description: The percentage of infrastructure host usage by tag(s).
7301
7287
format: double
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ export type HourlyUsageAttributionUsageType =
31
31
| typeof ESTIMATED_INGESTED_SPANS_USAGE
32
32
| typeof FARGATE_USAGE
33
33
| typeof FUNCTIONS_USAGE
34
- | typeof INDEXED_LOGS_USAGE
35
34
| typeof INFRA_HOST_USAGE
36
35
| typeof INVOCATIONS_USAGE
37
36
| typeof NPM_HOST_USAGE
@@ -61,7 +60,6 @@ export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage";
61
60
export const ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage" ;
62
61
export const FARGATE_USAGE = "fargate_usage" ;
63
62
export const FUNCTIONS_USAGE = "functions_usage" ;
64
- export const INDEXED_LOGS_USAGE = "indexed_logs_usage" ;
65
63
export const INFRA_HOST_USAGE = "infra_host_usage" ;
66
64
export const INVOCATIONS_USAGE = "invocations_usage" ;
67
65
export const NPM_HOST_USAGE = "npm_host_usage" ;
Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ export type MonthlyUsageAttributionSupportedMetrics =
51
51
| typeof FARGATE_PERCENTAGE
52
52
| typeof FUNCTIONS_USAGE
53
53
| typeof FUNCTIONS_PERCENTAGE
54
- | typeof INDEXED_LOGS_USAGE
55
- | typeof INDEXED_LOGS_PERCENTAGE
56
54
| typeof INFRA_HOST_USAGE
57
55
| typeof INFRA_HOST_PERCENTAGE
58
56
| typeof INVOCATIONS_USAGE
@@ -115,8 +113,6 @@ export const FARGATE_USAGE = "fargate_usage";
115
113
export const FARGATE_PERCENTAGE = "fargate_percentage" ;
116
114
export const FUNCTIONS_USAGE = "functions_usage" ;
117
115
export const FUNCTIONS_PERCENTAGE = "functions_percentage" ;
118
- export const INDEXED_LOGS_USAGE = "indexed_logs_usage" ;
119
- export const INDEXED_LOGS_PERCENTAGE = "indexed_logs_percentage" ;
120
116
export const INFRA_HOST_USAGE = "infra_host_usage" ;
121
117
export const INFRA_HOST_PERCENTAGE = "infra_host_percentage" ;
122
118
export const INVOCATIONS_USAGE = "invocations_usage" ;
Original file line number Diff line number Diff line change @@ -186,14 +186,6 @@ export class MonthlyUsageAttributionValues {
186
186
* The Lambda function usage by tag(s).
187
187
*/
188
188
"functionsUsage" ?: number ;
189
- /**
190
- * The percentage of indexed logs usage by tags.
191
- */
192
- "indexedLogsPercentage" ?: number ;
193
- /**
194
- * The indexed logs usage by tags.
195
- */
196
- "indexedLogsUsage" ?: number ;
197
189
/**
198
190
* The percentage of infrastructure host usage by tag(s).
199
191
*/
@@ -472,16 +464,6 @@ export class MonthlyUsageAttributionValues {
472
464
type : "number" ,
473
465
format : "double" ,
474
466
} ,
475
- indexedLogsPercentage : {
476
- baseName : "indexed_logs_percentage" ,
477
- type : "number" ,
478
- format : "double" ,
479
- } ,
480
- indexedLogsUsage : {
481
- baseName : "indexed_logs_usage" ,
482
- type : "number" ,
483
- format : "double" ,
484
- } ,
485
467
infraHostPercentage : {
486
468
baseName : "infra_host_percentage" ,
487
469
type : "number" ,
Original file line number Diff line number Diff line change @@ -699,7 +699,6 @@ const enumsMap: { [key: string]: any[] } = {
699
699
"estimated_ingested_spans_usage" ,
700
700
"fargate_usage" ,
701
701
"functions_usage" ,
702
- "indexed_logs_usage" ,
703
702
"infra_host_usage" ,
704
703
"invocations_usage" ,
705
704
"npm_host_usage" ,
@@ -843,8 +842,6 @@ const enumsMap: { [key: string]: any[] } = {
843
842
"fargate_percentage" ,
844
843
"functions_usage" ,
845
844
"functions_percentage" ,
846
- "indexed_logs_usage" ,
847
- "indexed_logs_percentage" ,
848
845
"infra_host_usage" ,
849
846
"infra_host_percentage" ,
850
847
"invocations_usage" ,
You can’t perform that action at this time.
0 commit comments