Skip to content

Commit 749a81d

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 (#3235)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent c226c9e commit 749a81d

File tree

4 files changed

+235
-0
lines changed

4 files changed

+235
-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.

src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@
2424
UsageSummaryDate.JSON_PROPERTY_AGENT_HOST_TOP99P,
2525
UsageSummaryDate.JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P,
2626
UsageSummaryDate.JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P,
27+
UsageSummaryDate.JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P,
2728
UsageSummaryDate.JSON_PROPERTY_APM_FARGATE_COUNT_AVG,
2829
UsageSummaryDate.JSON_PROPERTY_APM_HOST_TOP99P,
30+
UsageSummaryDate.JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P,
2931
UsageSummaryDate.JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG,
3032
UsageSummaryDate.JSON_PROPERTY_ASM_SERVERLESS_SUM,
3133
UsageSummaryDate.JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_SUM,
@@ -243,12 +245,20 @@ public class UsageSummaryDate {
243245
public static final String JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P = "apm_devsecops_host_top99p";
244246
private Long apmDevsecopsHostTop99p;
245247

248+
public static final String JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P =
249+
"apm_enterprise_standalone_hosts_top99p";
250+
private Long apmEnterpriseStandaloneHostsTop99p;
251+
246252
public static final String JSON_PROPERTY_APM_FARGATE_COUNT_AVG = "apm_fargate_count_avg";
247253
private Long apmFargateCountAvg;
248254

249255
public static final String JSON_PROPERTY_APM_HOST_TOP99P = "apm_host_top99p";
250256
private Long apmHostTop99p;
251257

258+
public static final String JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P =
259+
"apm_pro_standalone_hosts_top99p";
260+
private Long apmProStandaloneHostsTop99p;
261+
252262
public static final String JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG = "appsec_fargate_count_avg";
253263
private Long appsecFargateCountAvg;
254264

@@ -1050,6 +1060,29 @@ public void setApmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) {
10501060
this.apmDevsecopsHostTop99p = apmDevsecopsHostTop99p;
10511061
}
10521062

1063+
public UsageSummaryDate apmEnterpriseStandaloneHostsTop99p(
1064+
Long apmEnterpriseStandaloneHostsTop99p) {
1065+
this.apmEnterpriseStandaloneHostsTop99p = apmEnterpriseStandaloneHostsTop99p;
1066+
return this;
1067+
}
1068+
1069+
/**
1070+
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the
1071+
* current date for all organizations.
1072+
*
1073+
* @return apmEnterpriseStandaloneHostsTop99p
1074+
*/
1075+
@jakarta.annotation.Nullable
1076+
@JsonProperty(JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P)
1077+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
1078+
public Long getApmEnterpriseStandaloneHostsTop99p() {
1079+
return apmEnterpriseStandaloneHostsTop99p;
1080+
}
1081+
1082+
public void setApmEnterpriseStandaloneHostsTop99p(Long apmEnterpriseStandaloneHostsTop99p) {
1083+
this.apmEnterpriseStandaloneHostsTop99p = apmEnterpriseStandaloneHostsTop99p;
1084+
}
1085+
10531086
public UsageSummaryDate apmFargateCountAvg(Long apmFargateCountAvg) {
10541087
this.apmFargateCountAvg = apmFargateCountAvg;
10551088
return this;
@@ -1094,6 +1127,28 @@ public void setApmHostTop99p(Long apmHostTop99p) {
10941127
this.apmHostTop99p = apmHostTop99p;
10951128
}
10961129

1130+
public UsageSummaryDate apmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) {
1131+
this.apmProStandaloneHostsTop99p = apmProStandaloneHostsTop99p;
1132+
return this;
1133+
}
1134+
1135+
/**
1136+
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current
1137+
* date for all organizations.
1138+
*
1139+
* @return apmProStandaloneHostsTop99p
1140+
*/
1141+
@jakarta.annotation.Nullable
1142+
@JsonProperty(JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P)
1143+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
1144+
public Long getApmProStandaloneHostsTop99p() {
1145+
return apmProStandaloneHostsTop99p;
1146+
}
1147+
1148+
public void setApmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) {
1149+
this.apmProStandaloneHostsTop99p = apmProStandaloneHostsTop99p;
1150+
}
1151+
10971152
public UsageSummaryDate appsecFargateCountAvg(Long appsecFargateCountAvg) {
10981153
this.appsecFargateCountAvg = appsecFargateCountAvg;
10991154
return this;
@@ -5688,8 +5743,13 @@ public boolean equals(Object o) {
56885743
&& Objects.equals(
56895744
this.apmAzureAppServiceHostTop99p, usageSummaryDate.apmAzureAppServiceHostTop99p)
56905745
&& Objects.equals(this.apmDevsecopsHostTop99p, usageSummaryDate.apmDevsecopsHostTop99p)
5746+
&& Objects.equals(
5747+
this.apmEnterpriseStandaloneHostsTop99p,
5748+
usageSummaryDate.apmEnterpriseStandaloneHostsTop99p)
56915749
&& Objects.equals(this.apmFargateCountAvg, usageSummaryDate.apmFargateCountAvg)
56925750
&& Objects.equals(this.apmHostTop99p, usageSummaryDate.apmHostTop99p)
5751+
&& Objects.equals(
5752+
this.apmProStandaloneHostsTop99p, usageSummaryDate.apmProStandaloneHostsTop99p)
56935753
&& Objects.equals(this.appsecFargateCountAvg, usageSummaryDate.appsecFargateCountAvg)
56945754
&& Objects.equals(this.asmServerlessSum, usageSummaryDate.asmServerlessSum)
56955755
&& Objects.equals(this.auditLogsLinesIndexedSum, usageSummaryDate.auditLogsLinesIndexedSum)
@@ -6064,8 +6124,10 @@ public int hashCode() {
60646124
agentHostTop99p,
60656125
apmAzureAppServiceHostTop99p,
60666126
apmDevsecopsHostTop99p,
6127+
apmEnterpriseStandaloneHostsTop99p,
60676128
apmFargateCountAvg,
60686129
apmHostTop99p,
6130+
apmProStandaloneHostsTop99p,
60696131
appsecFargateCountAvg,
60706132
asmServerlessSum,
60716133
auditLogsLinesIndexedSum,
@@ -6278,8 +6340,14 @@ public String toString() {
62786340
sb.append(" apmDevsecopsHostTop99p: ")
62796341
.append(toIndentedString(apmDevsecopsHostTop99p))
62806342
.append("\n");
6343+
sb.append(" apmEnterpriseStandaloneHostsTop99p: ")
6344+
.append(toIndentedString(apmEnterpriseStandaloneHostsTop99p))
6345+
.append("\n");
62816346
sb.append(" apmFargateCountAvg: ").append(toIndentedString(apmFargateCountAvg)).append("\n");
62826347
sb.append(" apmHostTop99p: ").append(toIndentedString(apmHostTop99p)).append("\n");
6348+
sb.append(" apmProStandaloneHostsTop99p: ")
6349+
.append(toIndentedString(apmProStandaloneHostsTop99p))
6350+
.append("\n");
62836351
sb.append(" appsecFargateCountAvg: ")
62846352
.append(toIndentedString(appsecFargateCountAvg))
62856353
.append("\n");

src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
UsageSummaryDateOrg.JSON_PROPERTY_AGENT_HOST_TOP99P,
2424
UsageSummaryDateOrg.JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P,
2525
UsageSummaryDateOrg.JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P,
26+
UsageSummaryDateOrg.JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P,
2627
UsageSummaryDateOrg.JSON_PROPERTY_APM_FARGATE_COUNT_AVG,
2728
UsageSummaryDateOrg.JSON_PROPERTY_APM_HOST_TOP99P,
29+
UsageSummaryDateOrg.JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P,
2830
UsageSummaryDateOrg.JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG,
2931
UsageSummaryDateOrg.JSON_PROPERTY_ASM_SERVERLESS_SUM,
3032
UsageSummaryDateOrg.JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_SUM,
@@ -253,12 +255,20 @@ public class UsageSummaryDateOrg {
253255
public static final String JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P = "apm_devsecops_host_top99p";
254256
private Long apmDevsecopsHostTop99p;
255257

258+
public static final String JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P =
259+
"apm_enterprise_standalone_hosts_top99p";
260+
private Long apmEnterpriseStandaloneHostsTop99p;
261+
256262
public static final String JSON_PROPERTY_APM_FARGATE_COUNT_AVG = "apm_fargate_count_avg";
257263
private Long apmFargateCountAvg;
258264

259265
public static final String JSON_PROPERTY_APM_HOST_TOP99P = "apm_host_top99p";
260266
private Long apmHostTop99p;
261267

268+
public static final String JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P =
269+
"apm_pro_standalone_hosts_top99p";
270+
private Long apmProStandaloneHostsTop99p;
271+
262272
public static final String JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG = "appsec_fargate_count_avg";
263273
private Long appsecFargateCountAvg;
264274

@@ -1114,6 +1124,29 @@ public void setApmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) {
11141124
this.apmDevsecopsHostTop99p = apmDevsecopsHostTop99p;
11151125
}
11161126

1127+
public UsageSummaryDateOrg apmEnterpriseStandaloneHostsTop99p(
1128+
Long apmEnterpriseStandaloneHostsTop99p) {
1129+
this.apmEnterpriseStandaloneHostsTop99p = apmEnterpriseStandaloneHostsTop99p;
1130+
return this;
1131+
}
1132+
1133+
/**
1134+
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the
1135+
* current date for the given org.
1136+
*
1137+
* @return apmEnterpriseStandaloneHostsTop99p
1138+
*/
1139+
@jakarta.annotation.Nullable
1140+
@JsonProperty(JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P)
1141+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
1142+
public Long getApmEnterpriseStandaloneHostsTop99p() {
1143+
return apmEnterpriseStandaloneHostsTop99p;
1144+
}
1145+
1146+
public void setApmEnterpriseStandaloneHostsTop99p(Long apmEnterpriseStandaloneHostsTop99p) {
1147+
this.apmEnterpriseStandaloneHostsTop99p = apmEnterpriseStandaloneHostsTop99p;
1148+
}
1149+
11171150
public UsageSummaryDateOrg apmFargateCountAvg(Long apmFargateCountAvg) {
11181151
this.apmFargateCountAvg = apmFargateCountAvg;
11191152
return this;
@@ -1158,6 +1191,28 @@ public void setApmHostTop99p(Long apmHostTop99p) {
11581191
this.apmHostTop99p = apmHostTop99p;
11591192
}
11601193

1194+
public UsageSummaryDateOrg apmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) {
1195+
this.apmProStandaloneHostsTop99p = apmProStandaloneHostsTop99p;
1196+
return this;
1197+
}
1198+
1199+
/**
1200+
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current
1201+
* date for the given org.
1202+
*
1203+
* @return apmProStandaloneHostsTop99p
1204+
*/
1205+
@jakarta.annotation.Nullable
1206+
@JsonProperty(JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P)
1207+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
1208+
public Long getApmProStandaloneHostsTop99p() {
1209+
return apmProStandaloneHostsTop99p;
1210+
}
1211+
1212+
public void setApmProStandaloneHostsTop99p(Long apmProStandaloneHostsTop99p) {
1213+
this.apmProStandaloneHostsTop99p = apmProStandaloneHostsTop99p;
1214+
}
1215+
11611216
public UsageSummaryDateOrg appsecFargateCountAvg(Long appsecFargateCountAvg) {
11621217
this.appsecFargateCountAvg = appsecFargateCountAvg;
11631218
return this;
@@ -5827,8 +5882,13 @@ public boolean equals(Object o) {
58275882
&& Objects.equals(
58285883
this.apmAzureAppServiceHostTop99p, usageSummaryDateOrg.apmAzureAppServiceHostTop99p)
58295884
&& Objects.equals(this.apmDevsecopsHostTop99p, usageSummaryDateOrg.apmDevsecopsHostTop99p)
5885+
&& Objects.equals(
5886+
this.apmEnterpriseStandaloneHostsTop99p,
5887+
usageSummaryDateOrg.apmEnterpriseStandaloneHostsTop99p)
58305888
&& Objects.equals(this.apmFargateCountAvg, usageSummaryDateOrg.apmFargateCountAvg)
58315889
&& Objects.equals(this.apmHostTop99p, usageSummaryDateOrg.apmHostTop99p)
5890+
&& Objects.equals(
5891+
this.apmProStandaloneHostsTop99p, usageSummaryDateOrg.apmProStandaloneHostsTop99p)
58325892
&& Objects.equals(this.appsecFargateCountAvg, usageSummaryDateOrg.appsecFargateCountAvg)
58335893
&& Objects.equals(this.asmServerlessSum, usageSummaryDateOrg.asmServerlessSum)
58345894
&& Objects.equals(
@@ -6229,8 +6289,10 @@ public int hashCode() {
62296289
agentHostTop99p,
62306290
apmAzureAppServiceHostTop99p,
62316291
apmDevsecopsHostTop99p,
6292+
apmEnterpriseStandaloneHostsTop99p,
62326293
apmFargateCountAvg,
62336294
apmHostTop99p,
6295+
apmProStandaloneHostsTop99p,
62346296
appsecFargateCountAvg,
62356297
asmServerlessSum,
62366298
auditLogsLinesIndexedSum,
@@ -6449,8 +6511,14 @@ public String toString() {
64496511
sb.append(" apmDevsecopsHostTop99p: ")
64506512
.append(toIndentedString(apmDevsecopsHostTop99p))
64516513
.append("\n");
6514+
sb.append(" apmEnterpriseStandaloneHostsTop99p: ")
6515+
.append(toIndentedString(apmEnterpriseStandaloneHostsTop99p))
6516+
.append("\n");
64526517
sb.append(" apmFargateCountAvg: ").append(toIndentedString(apmFargateCountAvg)).append("\n");
64536518
sb.append(" apmHostTop99p: ").append(toIndentedString(apmHostTop99p)).append("\n");
6519+
sb.append(" apmProStandaloneHostsTop99p: ")
6520+
.append(toIndentedString(apmProStandaloneHostsTop99p))
6521+
.append("\n");
64546522
sb.append(" appsecFargateCountAvg: ")
64556523
.append(toIndentedString(appsecFargateCountAvg))
64566524
.append("\n");

0 commit comments

Comments
 (0)