Skip to content

Commit 967a91e

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4085ff4 of spec repo
1 parent d7ed682 commit 967a91e

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

services/usage_metering/src/v1/models/HourlyUsageAttributionUsageType.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export type HourlyUsageAttributionUsageType =
3838
| typeof ESTIMATED_INDEXED_SPANS_USAGE
3939
| typeof ESTIMATED_INGESTED_SPANS_USAGE
4040
| typeof FARGATE_USAGE
41+
| typeof FLEX_STORED_LOGS
4142
| typeof FUNCTIONS_USAGE
4243
| typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
4344
| typeof INDEXED_SPANS_USAGE
@@ -122,6 +123,7 @@ export const ERROR_TRACKING_PERCENTAGE = "error_tracking_percentage";
122123
export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage";
123124
export const ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage";
124125
export const FARGATE_USAGE = "fargate_usage";
126+
export const FLEX_STORED_LOGS = "flex_stored_logs";
125127
export const FUNCTIONS_USAGE = "functions_usage";
126128
export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE =
127129
"incident_management_monthly_active_users_usage";

services/usage_metering/src/v1/models/MonthlyUsageAttributionSupportedMetrics.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
6060
| typeof ESTIMATED_INGESTED_SPANS_PERCENTAGE
6161
| typeof FARGATE_USAGE
6262
| typeof FARGATE_PERCENTAGE
63+
| typeof FLEX_STORED_LOGS_USAGE
64+
| typeof FLEX_STORED_LOGS_PERCENTAGE
6365
| typeof FUNCTIONS_USAGE
6466
| typeof FUNCTIONS_PERCENTAGE
6567
| typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
@@ -225,6 +227,8 @@ export const ESTIMATED_INGESTED_SPANS_PERCENTAGE =
225227
"estimated_ingested_spans_percentage";
226228
export const FARGATE_USAGE = "fargate_usage";
227229
export const FARGATE_PERCENTAGE = "fargate_percentage";
230+
export const FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage";
231+
export const FLEX_STORED_LOGS_PERCENTAGE = "flex_stored_logs_percentage";
228232
export const FUNCTIONS_USAGE = "functions_usage";
229233
export const FUNCTIONS_PERCENTAGE = "functions_percentage";
230234
export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE =

services/usage_metering/src/v1/models/MonthlyUsageAttributionValues.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,14 @@ export class MonthlyUsageAttributionValues {
245245
* The Fargate usage by tags.
246246
*/
247247
"fargateUsage"?: number;
248+
/**
249+
* The percentage of Flex Stored Logs usage by tag(s).
250+
*/
251+
"flexStoredLogsPercentage"?: number;
252+
/**
253+
* The Flex Stored Logs usage by tag(s).
254+
*/
255+
"flexStoredLogsUsage"?: number;
248256
/**
249257
* The percentage of Lambda function usage by tag(s).
250258
*/
@@ -928,6 +936,16 @@ export class MonthlyUsageAttributionValues {
928936
type: "number",
929937
format: "double",
930938
},
939+
flexStoredLogsPercentage: {
940+
baseName: "flex_stored_logs_percentage",
941+
type: "number",
942+
format: "double",
943+
},
944+
flexStoredLogsUsage: {
945+
baseName: "flex_stored_logs_usage",
946+
type: "number",
947+
format: "double",
948+
},
931949
functionsPercentage: {
932950
baseName: "functions_percentage",
933951
type: "number",

services/usage_metering/src/v1/models/TypingInfo.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export const TypingInfo: ModelTypingInfo = {
131131
"estimated_indexed_spans_usage",
132132
"estimated_ingested_spans_usage",
133133
"fargate_usage",
134+
"flex_stored_logs",
134135
"functions_usage",
135136
"incident_management_monthly_active_users_usage",
136137
"indexed_spans_usage",
@@ -235,6 +236,8 @@ export const TypingInfo: ModelTypingInfo = {
235236
"estimated_ingested_spans_percentage",
236237
"fargate_usage",
237238
"fargate_percentage",
239+
"flex_stored_logs_usage",
240+
"flex_stored_logs_percentage",
238241
"functions_usage",
239242
"functions_percentage",
240243
"incident_management_monthly_active_users_usage",

0 commit comments

Comments
 (0)