diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 11bca0724fa2..81bb22eb0b97 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -20700,6 +20700,11 @@ components: hours in the current date for the given org. format: int64 type: integer + apm_enterprise_standalone_hosts_top99p: + description: Shows the 99th percentile of all distinct standalone Enterprise + hosts over all hours in the current date for all organizations. + format: int64 + type: integer apm_fargate_count_avg: description: Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations. @@ -20710,6 +20715,11 @@ components: hours in the current date for all organizations. format: int64 type: integer + apm_pro_standalone_hosts_top99p: + description: Shows the 99th percentile of all distinct standalone Pro hosts + over all hours in the current date for all organizations. + format: int64 + type: integer appsec_fargate_count_avg: description: Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations. @@ -21798,6 +21808,11 @@ components: hours in the current date for the given org. format: int64 type: integer + apm_enterprise_standalone_hosts_top99p: + description: Shows the 99th percentile of all distinct standalone Enterprise + hosts over all hours in the current date for the given org. + format: int64 + type: integer apm_fargate_count_avg: description: Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org. @@ -21808,6 +21823,11 @@ components: hours in the current date for the given org. format: int64 type: integer + apm_pro_standalone_hosts_top99p: + description: Shows the 99th percentile of all distinct standalone Pro hosts + over all hours in the current date for the given org. + format: int64 + type: integer appsec_fargate_count_avg: description: Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org. @@ -22900,6 +22920,11 @@ components: hours in the current month for all organizations. format: int64 type: integer + apm_enterprise_standalone_hosts_top99p_sum: + description: Shows the sum of the 99th percentile of all distinct standalone + Enterprise hosts over all hours in the current month for all organizations. + format: int64 + type: integer apm_fargate_count_avg_sum: description: Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations. @@ -22910,6 +22935,11 @@ components: hours in the current month for all organizations. format: int64 type: integer + apm_pro_standalone_hosts_top99p_sum: + description: Shows the sum of the 99th percentile of all distinct standalone + Pro hosts over all hours in the current month for all organizations. + format: int64 + type: integer appsec_fargate_count_avg_sum: description: Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations. diff --git a/packages/datadog-api-client-v1/models/UsageSummaryDate.ts b/packages/datadog-api-client-v1/models/UsageSummaryDate.ts index 7a6a7bdf682f..44191fdced2c 100644 --- a/packages/datadog-api-client-v1/models/UsageSummaryDate.ts +++ b/packages/datadog-api-client-v1/models/UsageSummaryDate.ts @@ -23,6 +23,10 @@ export class UsageSummaryDate { * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org. */ "apmDevsecopsHostTop99P"?: number; + /** + * Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations. + */ + "apmEnterpriseStandaloneHostsTop99P"?: number; /** * Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations. */ @@ -31,6 +35,10 @@ export class UsageSummaryDate { * Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations. */ "apmHostTop99P"?: number; + /** + * Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations. + */ + "apmProStandaloneHostsTop99P"?: number; /** * Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations. */ @@ -855,6 +863,11 @@ export class UsageSummaryDate { type: "number", format: "int64", }, + apmEnterpriseStandaloneHostsTop99P: { + baseName: "apm_enterprise_standalone_hosts_top99p", + type: "number", + format: "int64", + }, apmFargateCountAvg: { baseName: "apm_fargate_count_avg", type: "number", @@ -865,6 +878,11 @@ export class UsageSummaryDate { type: "number", format: "int64", }, + apmProStandaloneHostsTop99P: { + baseName: "apm_pro_standalone_hosts_top99p", + type: "number", + format: "int64", + }, appsecFargateCountAvg: { baseName: "appsec_fargate_count_avg", type: "number", diff --git a/packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts b/packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts index eeef6438fe1f..36fb9f947c1c 100644 --- a/packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts +++ b/packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts @@ -30,6 +30,10 @@ export class UsageSummaryDateOrg { * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org. */ "apmDevsecopsHostTop99P"?: number; + /** + * Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for the given org. + */ + "apmEnterpriseStandaloneHostsTop99P"?: number; /** * Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org. */ @@ -38,6 +42,10 @@ export class UsageSummaryDateOrg { * Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org. */ "apmHostTop99P"?: number; + /** + * Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for the given org. + */ + "apmProStandaloneHostsTop99P"?: number; /** * Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org. */ @@ -886,6 +894,11 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, + apmEnterpriseStandaloneHostsTop99P: { + baseName: "apm_enterprise_standalone_hosts_top99p", + type: "number", + format: "int64", + }, apmFargateCountAvg: { baseName: "apm_fargate_count_avg", type: "number", @@ -896,6 +909,11 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, + apmProStandaloneHostsTop99P: { + baseName: "apm_pro_standalone_hosts_top99p", + type: "number", + format: "int64", + }, appsecFargateCountAvg: { baseName: "appsec_fargate_count_avg", type: "number", diff --git a/packages/datadog-api-client-v1/models/UsageSummaryResponse.ts b/packages/datadog-api-client-v1/models/UsageSummaryResponse.ts index 8b5bcd81e540..f9b92b78746e 100644 --- a/packages/datadog-api-client-v1/models/UsageSummaryResponse.ts +++ b/packages/datadog-api-client-v1/models/UsageSummaryResponse.ts @@ -24,6 +24,10 @@ export class UsageSummaryResponse { * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations. */ "apmDevsecopsHostTop99PSum"?: number; + /** + * Shows the sum of the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current month for all organizations. + */ + "apmEnterpriseStandaloneHostsTop99PSum"?: number; /** * Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations. */ @@ -32,6 +36,10 @@ export class UsageSummaryResponse { * Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations. */ "apmHostTop99PSum"?: number; + /** + * Shows the sum of the 99th percentile of all distinct standalone Pro hosts over all hours in the current month for all organizations. + */ + "apmProStandaloneHostsTop99PSum"?: number; /** * Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations. */ @@ -900,6 +908,11 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, + apmEnterpriseStandaloneHostsTop99PSum: { + baseName: "apm_enterprise_standalone_hosts_top99p_sum", + type: "number", + format: "int64", + }, apmFargateCountAvgSum: { baseName: "apm_fargate_count_avg_sum", type: "number", @@ -910,6 +923,11 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, + apmProStandaloneHostsTop99PSum: { + baseName: "apm_pro_standalone_hosts_top99p_sum", + type: "number", + format: "int64", + }, appsecFargateCountAvgSum: { baseName: "appsec_fargate_count_avg_sum", type: "number",