Skip to content

Commit 6b8d85a

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4085ff4 of spec repo
1 parent c2d004b commit 6b8d85a

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4306,6 +4306,7 @@ components:
43064306
- estimated_indexed_spans_usage
43074307
- estimated_ingested_spans_usage
43084308
- fargate_usage
4309+
- flex_stored_logs
43094310
- functions_usage
43104311
- incident_management_monthly_active_users_usage
43114312
- indexed_spans_usage
@@ -4387,6 +4388,7 @@ components:
43874388
- ESTIMATED_INDEXED_SPANS_USAGE
43884389
- ESTIMATED_INGESTED_SPANS_USAGE
43894390
- FARGATE_USAGE
4391+
- FLEX_STORED_LOGS
43904392
- FUNCTIONS_USAGE
43914393
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
43924394
- INDEXED_SPANS_USAGE
@@ -8740,6 +8742,8 @@ components:
87408742
- estimated_ingested_spans_percentage
87418743
- fargate_usage
87428744
- fargate_percentage
8745+
- flex_stored_logs_usage
8746+
- flex_stored_logs_percentage
87438747
- functions_usage
87448748
- functions_percentage
87458749
- incident_management_monthly_active_users_usage
@@ -8897,6 +8901,8 @@ components:
88978901
- ESTIMATED_INGESTED_SPANS_PERCENTAGE
88988902
- FARGATE_USAGE
88998903
- FARGATE_PERCENTAGE
8904+
- FLEX_STORED_LOGS_USAGE
8905+
- FLEX_STORED_LOGS_PERCENTAGE
89008906
- FUNCTIONS_USAGE
89018907
- FUNCTIONS_PERCENTAGE
89028908
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
@@ -9256,6 +9262,14 @@ components:
92569262
description: The Fargate usage by tags.
92579263
format: double
92589264
type: number
9265+
flex_stored_logs_percentage:
9266+
description: The percentage of Flex Stored Logs usage by tag(s).
9267+
format: double
9268+
type: number
9269+
flex_stored_logs_usage:
9270+
description: The Flex Stored Logs usage by tag(s).
9271+
format: double
9272+
type: number
92599273
functions_percentage:
92609274
description: The percentage of Lambda function usage by tag(s).
92619275
format: double

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export type HourlyUsageAttributionUsageType =
4545
| typeof ESTIMATED_INDEXED_SPANS_USAGE
4646
| typeof ESTIMATED_INGESTED_SPANS_USAGE
4747
| typeof FARGATE_USAGE
48+
| typeof FLEX_STORED_LOGS
4849
| typeof FUNCTIONS_USAGE
4950
| typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
5051
| typeof INDEXED_SPANS_USAGE
@@ -129,6 +130,7 @@ export const ERROR_TRACKING_PERCENTAGE = "error_tracking_percentage";
129130
export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage";
130131
export const ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage";
131132
export const FARGATE_USAGE = "fargate_usage";
133+
export const FLEX_STORED_LOGS = "flex_stored_logs";
132134
export const FUNCTIONS_USAGE = "functions_usage";
133135
export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE =
134136
"incident_management_monthly_active_users_usage";

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
6767
| typeof ESTIMATED_INGESTED_SPANS_PERCENTAGE
6868
| typeof FARGATE_USAGE
6969
| typeof FARGATE_PERCENTAGE
70+
| typeof FLEX_STORED_LOGS_USAGE
71+
| typeof FLEX_STORED_LOGS_PERCENTAGE
7072
| typeof FUNCTIONS_USAGE
7173
| typeof FUNCTIONS_PERCENTAGE
7274
| typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
@@ -232,6 +234,8 @@ export const ESTIMATED_INGESTED_SPANS_PERCENTAGE =
232234
"estimated_ingested_spans_percentage";
233235
export const FARGATE_USAGE = "fargate_usage";
234236
export const FARGATE_PERCENTAGE = "fargate_percentage";
237+
export const FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage";
238+
export const FLEX_STORED_LOGS_PERCENTAGE = "flex_stored_logs_percentage";
235239
export const FUNCTIONS_USAGE = "functions_usage";
236240
export const FUNCTIONS_PERCENTAGE = "functions_percentage";
237241
export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE =

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,14 @@ export class MonthlyUsageAttributionValues {
251251
* The Fargate usage by tags.
252252
*/
253253
"fargateUsage"?: number;
254+
/**
255+
* The percentage of Flex Stored Logs usage by tag(s).
256+
*/
257+
"flexStoredLogsPercentage"?: number;
258+
/**
259+
* The Flex Stored Logs usage by tag(s).
260+
*/
261+
"flexStoredLogsUsage"?: number;
254262
/**
255263
* The percentage of Lambda function usage by tag(s).
256264
*/
@@ -936,6 +944,16 @@ export class MonthlyUsageAttributionValues {
936944
type: "number",
937945
format: "double",
938946
},
947+
flexStoredLogsPercentage: {
948+
baseName: "flex_stored_logs_percentage",
949+
type: "number",
950+
format: "double",
951+
},
952+
flexStoredLogsUsage: {
953+
baseName: "flex_stored_logs_usage",
954+
type: "number",
955+
format: "double",
956+
},
939957
functionsPercentage: {
940958
baseName: "functions_percentage",
941959
type: "number",

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -861,6 +861,7 @@ const enumsMap: { [key: string]: any[] } = {
861861
"estimated_indexed_spans_usage",
862862
"estimated_ingested_spans_usage",
863863
"fargate_usage",
864+
"flex_stored_logs",
864865
"functions_usage",
865866
"incident_management_monthly_active_users_usage",
866867
"indexed_spans_usage",
@@ -1124,6 +1125,8 @@ const enumsMap: { [key: string]: any[] } = {
11241125
"estimated_ingested_spans_percentage",
11251126
"fargate_usage",
11261127
"fargate_percentage",
1128+
"flex_stored_logs_usage",
1129+
"flex_stored_logs_percentage",
11271130
"functions_usage",
11281131
"functions_percentage",
11291132
"incident_management_monthly_active_users_usage",

0 commit comments

Comments
 (0)