Skip to content

Commit a7efd62

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Remove indexed logs from Usage Attribution (#970)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 610ceac commit a7efd62

File tree

6 files changed

+4
-45
lines changed

6 files changed

+4
-45
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.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"
99
},
1010
"v2": {
1111
"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"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3662,7 +3662,6 @@ components:
36623662
- estimated_ingested_spans_usage
36633663
- fargate_usage
36643664
- functions_usage
3665-
- indexed_logs_usage
36663665
- infra_host_usage
36673666
- invocations_usage
36683667
- npm_host_usage
@@ -3693,7 +3692,6 @@ components:
36933692
- ESTIMATED_INGESTED_SPANS_USAGE
36943693
- FARGATE_USAGE
36953694
- FUNCTIONS_USAGE
3696-
- INDEXED_LOGS_USAGE
36973695
- INFRA_HOST_USAGE
36983696
- INVOCATIONS_USAGE
36993697
- NPM_HOST_USAGE
@@ -7014,8 +7012,6 @@ components:
70147012
- fargate_percentage
70157013
- functions_usage
70167014
- functions_percentage
7017-
- indexed_logs_usage
7018-
- indexed_logs_percentage
70197015
- infra_host_usage
70207016
- infra_host_percentage
70217017
- invocations_usage
@@ -7075,8 +7071,6 @@ components:
70757071
- FARGATE_PERCENTAGE
70767072
- FUNCTIONS_USAGE
70777073
- FUNCTIONS_PERCENTAGE
7078-
- INDEXED_LOGS_USAGE
7079-
- INDEXED_LOGS_PERCENTAGE
70807074
- INFRA_HOST_USAGE
70817075
- INFRA_HOST_PERCENTAGE
70827076
- INVOCATIONS_USAGE
@@ -7288,14 +7282,6 @@ components:
72887282
description: The Lambda function usage by tag(s).
72897283
format: double
72907284
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
72997285
infra_host_percentage:
73007286
description: The percentage of infrastructure host usage by tag(s).
73017287
format: double

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ export type HourlyUsageAttributionUsageType =
3131
| typeof ESTIMATED_INGESTED_SPANS_USAGE
3232
| typeof FARGATE_USAGE
3333
| typeof FUNCTIONS_USAGE
34-
| typeof INDEXED_LOGS_USAGE
3534
| typeof INFRA_HOST_USAGE
3635
| typeof INVOCATIONS_USAGE
3736
| typeof NPM_HOST_USAGE
@@ -61,7 +60,6 @@ export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage";
6160
export const ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage";
6261
export const FARGATE_USAGE = "fargate_usage";
6362
export const FUNCTIONS_USAGE = "functions_usage";
64-
export const INDEXED_LOGS_USAGE = "indexed_logs_usage";
6563
export const INFRA_HOST_USAGE = "infra_host_usage";
6664
export const INVOCATIONS_USAGE = "invocations_usage";
6765
export const NPM_HOST_USAGE = "npm_host_usage";

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ export type MonthlyUsageAttributionSupportedMetrics =
5151
| typeof FARGATE_PERCENTAGE
5252
| typeof FUNCTIONS_USAGE
5353
| typeof FUNCTIONS_PERCENTAGE
54-
| typeof INDEXED_LOGS_USAGE
55-
| typeof INDEXED_LOGS_PERCENTAGE
5654
| typeof INFRA_HOST_USAGE
5755
| typeof INFRA_HOST_PERCENTAGE
5856
| typeof INVOCATIONS_USAGE
@@ -115,8 +113,6 @@ export const FARGATE_USAGE = "fargate_usage";
115113
export const FARGATE_PERCENTAGE = "fargate_percentage";
116114
export const FUNCTIONS_USAGE = "functions_usage";
117115
export const FUNCTIONS_PERCENTAGE = "functions_percentage";
118-
export const INDEXED_LOGS_USAGE = "indexed_logs_usage";
119-
export const INDEXED_LOGS_PERCENTAGE = "indexed_logs_percentage";
120116
export const INFRA_HOST_USAGE = "infra_host_usage";
121117
export const INFRA_HOST_PERCENTAGE = "infra_host_percentage";
122118
export const INVOCATIONS_USAGE = "invocations_usage";

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

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,6 @@ export class MonthlyUsageAttributionValues {
186186
* The Lambda function usage by tag(s).
187187
*/
188188
"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;
197189
/**
198190
* The percentage of infrastructure host usage by tag(s).
199191
*/
@@ -472,16 +464,6 @@ export class MonthlyUsageAttributionValues {
472464
type: "number",
473465
format: "double",
474466
},
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-
},
485467
infraHostPercentage: {
486468
baseName: "infra_host_percentage",
487469
type: "number",

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,6 @@ const enumsMap: { [key: string]: any[] } = {
699699
"estimated_ingested_spans_usage",
700700
"fargate_usage",
701701
"functions_usage",
702-
"indexed_logs_usage",
703702
"infra_host_usage",
704703
"invocations_usage",
705704
"npm_host_usage",
@@ -843,8 +842,6 @@ const enumsMap: { [key: string]: any[] } = {
843842
"fargate_percentage",
844843
"functions_usage",
845844
"functions_percentage",
846-
"indexed_logs_usage",
847-
"indexed_logs_percentage",
848845
"infra_host_usage",
849846
"infra_host_percentage",
850847
"invocations_usage",

0 commit comments

Comments
 (0)