diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index d9bb88a10f27..21d6360c1130 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -4306,6 +4306,7 @@ components: - estimated_indexed_spans_usage - estimated_ingested_spans_usage - fargate_usage + - flex_stored_logs - functions_usage - incident_management_monthly_active_users_usage - indexed_spans_usage @@ -4387,6 +4388,7 @@ components: - ESTIMATED_INDEXED_SPANS_USAGE - ESTIMATED_INGESTED_SPANS_USAGE - FARGATE_USAGE + - FLEX_STORED_LOGS - FUNCTIONS_USAGE - INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE - INDEXED_SPANS_USAGE @@ -8740,6 +8742,8 @@ components: - estimated_ingested_spans_percentage - fargate_usage - fargate_percentage + - flex_stored_logs_usage + - flex_stored_logs_percentage - functions_usage - functions_percentage - incident_management_monthly_active_users_usage @@ -8897,6 +8901,8 @@ components: - ESTIMATED_INGESTED_SPANS_PERCENTAGE - FARGATE_USAGE - FARGATE_PERCENTAGE + - FLEX_STORED_LOGS_USAGE + - FLEX_STORED_LOGS_PERCENTAGE - FUNCTIONS_USAGE - FUNCTIONS_PERCENTAGE - INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE @@ -9256,6 +9262,14 @@ components: description: The Fargate usage by tags. format: double type: number + flex_stored_logs_percentage: + description: The percentage of Flex Stored Logs usage by tags. + format: double + type: number + flex_stored_logs_usage: + description: The Flex Stored Logs usage by tags. + format: double + type: number functions_percentage: description: The percentage of Lambda function usage by tag(s). format: double diff --git a/packages/datadog-api-client-v1/models/HourlyUsageAttributionUsageType.ts b/packages/datadog-api-client-v1/models/HourlyUsageAttributionUsageType.ts index 02fe65705e4e..bd4f6785ef89 100644 --- a/packages/datadog-api-client-v1/models/HourlyUsageAttributionUsageType.ts +++ b/packages/datadog-api-client-v1/models/HourlyUsageAttributionUsageType.ts @@ -45,6 +45,7 @@ export type HourlyUsageAttributionUsageType = | typeof ESTIMATED_INDEXED_SPANS_USAGE | typeof ESTIMATED_INGESTED_SPANS_USAGE | typeof FARGATE_USAGE + | typeof FLEX_STORED_LOGS | typeof FUNCTIONS_USAGE | typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE | typeof INDEXED_SPANS_USAGE @@ -129,6 +130,7 @@ export const ERROR_TRACKING_PERCENTAGE = "error_tracking_percentage"; export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage"; export const ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage"; export const FARGATE_USAGE = "fargate_usage"; +export const FLEX_STORED_LOGS = "flex_stored_logs"; export const FUNCTIONS_USAGE = "functions_usage"; export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE = "incident_management_monthly_active_users_usage"; diff --git a/packages/datadog-api-client-v1/models/MonthlyUsageAttributionSupportedMetrics.ts b/packages/datadog-api-client-v1/models/MonthlyUsageAttributionSupportedMetrics.ts index 56a89f9b8377..7c8beadc613b 100644 --- a/packages/datadog-api-client-v1/models/MonthlyUsageAttributionSupportedMetrics.ts +++ b/packages/datadog-api-client-v1/models/MonthlyUsageAttributionSupportedMetrics.ts @@ -67,6 +67,8 @@ export type MonthlyUsageAttributionSupportedMetrics = | typeof ESTIMATED_INGESTED_SPANS_PERCENTAGE | typeof FARGATE_USAGE | typeof FARGATE_PERCENTAGE + | typeof FLEX_STORED_LOGS_USAGE + | typeof FLEX_STORED_LOGS_PERCENTAGE | typeof FUNCTIONS_USAGE | typeof FUNCTIONS_PERCENTAGE | typeof INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE @@ -232,6 +234,8 @@ export const ESTIMATED_INGESTED_SPANS_PERCENTAGE = "estimated_ingested_spans_percentage"; export const FARGATE_USAGE = "fargate_usage"; export const FARGATE_PERCENTAGE = "fargate_percentage"; +export const FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage"; +export const FLEX_STORED_LOGS_PERCENTAGE = "flex_stored_logs_percentage"; export const FUNCTIONS_USAGE = "functions_usage"; export const FUNCTIONS_PERCENTAGE = "functions_percentage"; export const INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE = diff --git a/packages/datadog-api-client-v1/models/MonthlyUsageAttributionValues.ts b/packages/datadog-api-client-v1/models/MonthlyUsageAttributionValues.ts index 0799751a13bc..c3e47d4eda64 100644 --- a/packages/datadog-api-client-v1/models/MonthlyUsageAttributionValues.ts +++ b/packages/datadog-api-client-v1/models/MonthlyUsageAttributionValues.ts @@ -251,6 +251,14 @@ export class MonthlyUsageAttributionValues { * The Fargate usage by tags. */ "fargateUsage"?: number; + /** + * The percentage of Flex Stored Logs usage by tags. + */ + "flexStoredLogsPercentage"?: number; + /** + * The Flex Stored Logs usage by tags. + */ + "flexStoredLogsUsage"?: number; /** * The percentage of Lambda function usage by tag(s). */ @@ -936,6 +944,16 @@ export class MonthlyUsageAttributionValues { type: "number", format: "double", }, + flexStoredLogsPercentage: { + baseName: "flex_stored_logs_percentage", + type: "number", + format: "double", + }, + flexStoredLogsUsage: { + baseName: "flex_stored_logs_usage", + type: "number", + format: "double", + }, functionsPercentage: { baseName: "functions_percentage", type: "number", diff --git a/packages/datadog-api-client-v1/models/ObjectSerializer.ts b/packages/datadog-api-client-v1/models/ObjectSerializer.ts index 353dc1d85e2b..c966a2783c7a 100644 --- a/packages/datadog-api-client-v1/models/ObjectSerializer.ts +++ b/packages/datadog-api-client-v1/models/ObjectSerializer.ts @@ -861,6 +861,7 @@ const enumsMap: { [key: string]: any[] } = { "estimated_indexed_spans_usage", "estimated_ingested_spans_usage", "fargate_usage", + "flex_stored_logs", "functions_usage", "incident_management_monthly_active_users_usage", "indexed_spans_usage", @@ -1124,6 +1125,8 @@ const enumsMap: { [key: string]: any[] } = { "estimated_ingested_spans_percentage", "fargate_usage", "fargate_percentage", + "flex_stored_logs_usage", + "flex_stored_logs_percentage", "functions_usage", "functions_percentage", "incident_management_monthly_active_users_usage",