Skip to content

Commit 699a4f5

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Adding new API keys in summary endpoint for APM Standalone new billing dimensions (#2980)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent c752789 commit 699a4f5

File tree

4 files changed

+84
-0
lines changed

4 files changed

+84
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20700,6 +20700,11 @@ components:
2070020700
hours in the current date for the given org.
2070120701
format: int64
2070220702
type: integer
20703+
apm_enterprise_standalone_hosts_top99p:
20704+
description: Shows the 99th percentile of all distinct standalone Enterprise
20705+
hosts over all hours in the current date for all organizations.
20706+
format: int64
20707+
type: integer
2070320708
apm_fargate_count_avg:
2070420709
description: Shows the average of all APM ECS Fargate tasks over all hours
2070520710
in the current date for all organizations.
@@ -20710,6 +20715,11 @@ components:
2071020715
hours in the current date for all organizations.
2071120716
format: int64
2071220717
type: integer
20718+
apm_pro_standalone_hosts_top99p:
20719+
description: Shows the 99th percentile of all distinct standalone Pro hosts
20720+
over all hours in the current date for all organizations.
20721+
format: int64
20722+
type: integer
2071320723
appsec_fargate_count_avg:
2071420724
description: Shows the average of all Application Security Monitoring ECS
2071520725
Fargate tasks over all hours in the current date for all organizations.
@@ -21798,6 +21808,11 @@ components:
2179821808
hours in the current date for the given org.
2179921809
format: int64
2180021810
type: integer
21811+
apm_enterprise_standalone_hosts_top99p:
21812+
description: Shows the 99th percentile of all distinct standalone Enterprise
21813+
hosts over all hours in the current date for the given org.
21814+
format: int64
21815+
type: integer
2180121816
apm_fargate_count_avg:
2180221817
description: Shows the average of all APM ECS Fargate tasks over all hours
2180321818
in the current month for the given org.
@@ -21808,6 +21823,11 @@ components:
2180821823
hours in the current date for the given org.
2180921824
format: int64
2181021825
type: integer
21826+
apm_pro_standalone_hosts_top99p:
21827+
description: Shows the 99th percentile of all distinct standalone Pro hosts
21828+
over all hours in the current date for the given org.
21829+
format: int64
21830+
type: integer
2181121831
appsec_fargate_count_avg:
2181221832
description: Shows the average of all Application Security Monitoring ECS
2181321833
Fargate tasks over all hours in the current month for the given org.
@@ -22900,6 +22920,11 @@ components:
2290022920
hours in the current month for all organizations.
2290122921
format: int64
2290222922
type: integer
22923+
apm_enterprise_standalone_hosts_top99p_sum:
22924+
description: Shows the sum of the 99th percentile of all distinct standalone
22925+
Enterprise hosts over all hours in the current month for all organizations.
22926+
format: int64
22927+
type: integer
2290322928
apm_fargate_count_avg_sum:
2290422929
description: Shows the average of all APM ECS Fargate tasks over all hours
2290522930
in the current month for all organizations.
@@ -22910,6 +22935,11 @@ components:
2291022935
hours in the current month for all organizations.
2291122936
format: int64
2291222937
type: integer
22938+
apm_pro_standalone_hosts_top99p_sum:
22939+
description: Shows the sum of the 99th percentile of all distinct standalone
22940+
Pro hosts over all hours in the current month for all organizations.
22941+
format: int64
22942+
type: integer
2291322943
appsec_fargate_count_avg_sum:
2291422944
description: Shows the average of all Application Security Monitoring ECS
2291522945
Fargate tasks over all hours in the current month for all organizations.

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export class UsageSummaryDate {
2323
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
2424
*/
2525
"apmDevsecopsHostTop99P"?: number;
26+
/**
27+
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations.
28+
*/
29+
"apmEnterpriseStandaloneHostsTop99P"?: number;
2630
/**
2731
* Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
2832
*/
@@ -31,6 +35,10 @@ export class UsageSummaryDate {
3135
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
3236
*/
3337
"apmHostTop99P"?: number;
38+
/**
39+
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations.
40+
*/
41+
"apmProStandaloneHostsTop99P"?: number;
3442
/**
3543
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations.
3644
*/
@@ -855,6 +863,11 @@ export class UsageSummaryDate {
855863
type: "number",
856864
format: "int64",
857865
},
866+
apmEnterpriseStandaloneHostsTop99P: {
867+
baseName: "apm_enterprise_standalone_hosts_top99p",
868+
type: "number",
869+
format: "int64",
870+
},
858871
apmFargateCountAvg: {
859872
baseName: "apm_fargate_count_avg",
860873
type: "number",
@@ -865,6 +878,11 @@ export class UsageSummaryDate {
865878
type: "number",
866879
format: "int64",
867880
},
881+
apmProStandaloneHostsTop99P: {
882+
baseName: "apm_pro_standalone_hosts_top99p",
883+
type: "number",
884+
format: "int64",
885+
},
868886
appsecFargateCountAvg: {
869887
baseName: "appsec_fargate_count_avg",
870888
type: "number",

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ export class UsageSummaryDateOrg {
3030
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
3131
*/
3232
"apmDevsecopsHostTop99P"?: number;
33+
/**
34+
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for the given org.
35+
*/
36+
"apmEnterpriseStandaloneHostsTop99P"?: number;
3337
/**
3438
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org.
3539
*/
@@ -38,6 +42,10 @@ export class UsageSummaryDateOrg {
3842
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
3943
*/
4044
"apmHostTop99P"?: number;
45+
/**
46+
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for the given org.
47+
*/
48+
"apmProStandaloneHostsTop99P"?: number;
4149
/**
4250
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org.
4351
*/
@@ -886,6 +894,11 @@ export class UsageSummaryDateOrg {
886894
type: "number",
887895
format: "int64",
888896
},
897+
apmEnterpriseStandaloneHostsTop99P: {
898+
baseName: "apm_enterprise_standalone_hosts_top99p",
899+
type: "number",
900+
format: "int64",
901+
},
889902
apmFargateCountAvg: {
890903
baseName: "apm_fargate_count_avg",
891904
type: "number",
@@ -896,6 +909,11 @@ export class UsageSummaryDateOrg {
896909
type: "number",
897910
format: "int64",
898911
},
912+
apmProStandaloneHostsTop99P: {
913+
baseName: "apm_pro_standalone_hosts_top99p",
914+
type: "number",
915+
format: "int64",
916+
},
899917
appsecFargateCountAvg: {
900918
baseName: "appsec_fargate_count_avg",
901919
type: "number",

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export class UsageSummaryResponse {
2424
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations.
2525
*/
2626
"apmDevsecopsHostTop99PSum"?: number;
27+
/**
28+
* Shows the sum of the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current month for all organizations.
29+
*/
30+
"apmEnterpriseStandaloneHostsTop99PSum"?: number;
2731
/**
2832
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations.
2933
*/
@@ -32,6 +36,10 @@ export class UsageSummaryResponse {
3236
* Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations.
3337
*/
3438
"apmHostTop99PSum"?: number;
39+
/**
40+
* Shows the sum of the 99th percentile of all distinct standalone Pro hosts over all hours in the current month for all organizations.
41+
*/
42+
"apmProStandaloneHostsTop99PSum"?: number;
3543
/**
3644
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations.
3745
*/
@@ -900,6 +908,11 @@ export class UsageSummaryResponse {
900908
type: "number",
901909
format: "int64",
902910
},
911+
apmEnterpriseStandaloneHostsTop99PSum: {
912+
baseName: "apm_enterprise_standalone_hosts_top99p_sum",
913+
type: "number",
914+
format: "int64",
915+
},
903916
apmFargateCountAvgSum: {
904917
baseName: "apm_fargate_count_avg_sum",
905918
type: "number",
@@ -910,6 +923,11 @@ export class UsageSummaryResponse {
910923
type: "number",
911924
format: "int64",
912925
},
926+
apmProStandaloneHostsTop99PSum: {
927+
baseName: "apm_pro_standalone_hosts_top99p_sum",
928+
type: "number",
929+
format: "int64",
930+
},
913931
appsecFargateCountAvgSum: {
914932
baseName: "appsec_fargate_count_avg_sum",
915933
type: "number",

0 commit comments

Comments
 (0)