|
24 | 24 | UsageSummaryDate.JSON_PROPERTY_AGENT_HOST_TOP99P, |
25 | 25 | UsageSummaryDate.JSON_PROPERTY_APM_AZURE_APP_SERVICE_HOST_TOP99P, |
26 | 26 | UsageSummaryDate.JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P, |
| 27 | + UsageSummaryDate.JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P, |
27 | 28 | UsageSummaryDate.JSON_PROPERTY_APM_FARGATE_COUNT_AVG, |
28 | 29 | UsageSummaryDate.JSON_PROPERTY_APM_HOST_TOP99P, |
| 30 | + UsageSummaryDate.JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P, |
29 | 31 | UsageSummaryDate.JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG, |
30 | 32 | UsageSummaryDate.JSON_PROPERTY_ASM_SERVERLESS_SUM, |
31 | 33 | UsageSummaryDate.JSON_PROPERTY_AUDIT_LOGS_LINES_INDEXED_SUM, |
@@ -243,12 +245,20 @@ public class UsageSummaryDate { |
243 | 245 | public static final String JSON_PROPERTY_APM_DEVSECOPS_HOST_TOP99P = "apm_devsecops_host_top99p"; |
244 | 246 | private Long apmDevsecopsHostTop99p; |
245 | 247 |
|
| 248 | + public static final String JSON_PROPERTY_APM_ENTERPRISE_STANDALONE_HOSTS_TOP99P = |
| 249 | + "apm_enterprise_standalone_hosts_top99p"; |
| 250 | + private Long apmEnterpriseStandaloneHostsTop99p; |
| 251 | + |
246 | 252 | public static final String JSON_PROPERTY_APM_FARGATE_COUNT_AVG = "apm_fargate_count_avg"; |
247 | 253 | private Long apmFargateCountAvg; |
248 | 254 |
|
249 | 255 | public static final String JSON_PROPERTY_APM_HOST_TOP99P = "apm_host_top99p"; |
250 | 256 | private Long apmHostTop99p; |
251 | 257 |
|
| 258 | + public static final String JSON_PROPERTY_APM_PRO_STANDALONE_HOSTS_TOP99P = |
| 259 | + "apm_pro_standalone_hosts_top99p"; |
| 260 | + private Long apmProStandaloneHostsTop99p; |
| 261 | + |
252 | 262 | public static final String JSON_PROPERTY_APPSEC_FARGATE_COUNT_AVG = "appsec_fargate_count_avg"; |
253 | 263 | private Long appsecFargateCountAvg; |
254 | 264 |
|
@@ -1050,6 +1060,29 @@ public void setApmDevsecopsHostTop99p(Long apmDevsecopsHostTop99p) { |
1050 | 1060 | this.apmDevsecopsHostTop99p = apmDevsecopsHostTop99p; |
1051 | 1061 | } |
1052 | 1062 |
|
| 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 | + |
1053 | 1086 | public UsageSummaryDate apmFargateCountAvg(Long apmFargateCountAvg) { |
1054 | 1087 | this.apmFargateCountAvg = apmFargateCountAvg; |
1055 | 1088 | return this; |
@@ -1094,6 +1127,28 @@ public void setApmHostTop99p(Long apmHostTop99p) { |
1094 | 1127 | this.apmHostTop99p = apmHostTop99p; |
1095 | 1128 | } |
1096 | 1129 |
|
| 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 | + |
1097 | 1152 | public UsageSummaryDate appsecFargateCountAvg(Long appsecFargateCountAvg) { |
1098 | 1153 | this.appsecFargateCountAvg = appsecFargateCountAvg; |
1099 | 1154 | return this; |
@@ -5688,8 +5743,13 @@ public boolean equals(Object o) { |
5688 | 5743 | && Objects.equals( |
5689 | 5744 | this.apmAzureAppServiceHostTop99p, usageSummaryDate.apmAzureAppServiceHostTop99p) |
5690 | 5745 | && Objects.equals(this.apmDevsecopsHostTop99p, usageSummaryDate.apmDevsecopsHostTop99p) |
| 5746 | + && Objects.equals( |
| 5747 | + this.apmEnterpriseStandaloneHostsTop99p, |
| 5748 | + usageSummaryDate.apmEnterpriseStandaloneHostsTop99p) |
5691 | 5749 | && Objects.equals(this.apmFargateCountAvg, usageSummaryDate.apmFargateCountAvg) |
5692 | 5750 | && Objects.equals(this.apmHostTop99p, usageSummaryDate.apmHostTop99p) |
| 5751 | + && Objects.equals( |
| 5752 | + this.apmProStandaloneHostsTop99p, usageSummaryDate.apmProStandaloneHostsTop99p) |
5693 | 5753 | && Objects.equals(this.appsecFargateCountAvg, usageSummaryDate.appsecFargateCountAvg) |
5694 | 5754 | && Objects.equals(this.asmServerlessSum, usageSummaryDate.asmServerlessSum) |
5695 | 5755 | && Objects.equals(this.auditLogsLinesIndexedSum, usageSummaryDate.auditLogsLinesIndexedSum) |
@@ -6064,8 +6124,10 @@ public int hashCode() { |
6064 | 6124 | agentHostTop99p, |
6065 | 6125 | apmAzureAppServiceHostTop99p, |
6066 | 6126 | apmDevsecopsHostTop99p, |
| 6127 | + apmEnterpriseStandaloneHostsTop99p, |
6067 | 6128 | apmFargateCountAvg, |
6068 | 6129 | apmHostTop99p, |
| 6130 | + apmProStandaloneHostsTop99p, |
6069 | 6131 | appsecFargateCountAvg, |
6070 | 6132 | asmServerlessSum, |
6071 | 6133 | auditLogsLinesIndexedSum, |
@@ -6278,8 +6340,14 @@ public String toString() { |
6278 | 6340 | sb.append(" apmDevsecopsHostTop99p: ") |
6279 | 6341 | .append(toIndentedString(apmDevsecopsHostTop99p)) |
6280 | 6342 | .append("\n"); |
| 6343 | + sb.append(" apmEnterpriseStandaloneHostsTop99p: ") |
| 6344 | + .append(toIndentedString(apmEnterpriseStandaloneHostsTop99p)) |
| 6345 | + .append("\n"); |
6281 | 6346 | sb.append(" apmFargateCountAvg: ").append(toIndentedString(apmFargateCountAvg)).append("\n"); |
6282 | 6347 | sb.append(" apmHostTop99p: ").append(toIndentedString(apmHostTop99p)).append("\n"); |
| 6348 | + sb.append(" apmProStandaloneHostsTop99p: ") |
| 6349 | + .append(toIndentedString(apmProStandaloneHostsTop99p)) |
| 6350 | + .append("\n"); |
6283 | 6351 | sb.append(" appsecFargateCountAvg: ") |
6284 | 6352 | .append(toIndentedString(appsecFargateCountAvg)) |
6285 | 6353 | .append("\n"); |
|
0 commit comments