|
134 | 134 | UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM, |
135 | 135 | UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM, |
136 | 136 | UsageSummaryResponse.JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM, |
| 137 | + UsageSummaryResponse.JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM, |
137 | 138 | UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM, |
138 | 139 | UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, |
139 | 140 | UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, |
@@ -675,6 +676,10 @@ public class UsageSummaryResponse { |
675 | 676 | "indexed_events_count_agg_sum"; |
676 | 677 | private Long indexedEventsCountAggSum; |
677 | 678 |
|
| 679 | + public static final String JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM = |
| 680 | + "infra_edge_monitoring_devices_top99p_sum"; |
| 681 | + private Long infraEdgeMonitoringDevicesTop99pSum; |
| 682 | + |
678 | 683 | public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum"; |
679 | 684 | private Long infraHostTop99pSum; |
680 | 685 |
|
@@ -3620,6 +3625,29 @@ public void setIndexedEventsCountAggSum(Long indexedEventsCountAggSum) { |
3620 | 3625 | this.indexedEventsCountAggSum = indexedEventsCountAggSum; |
3621 | 3626 | } |
3622 | 3627 |
|
| 3628 | + public UsageSummaryResponse infraEdgeMonitoringDevicesTop99pSum( |
| 3629 | + Long infraEdgeMonitoringDevicesTop99pSum) { |
| 3630 | + this.infraEdgeMonitoringDevicesTop99pSum = infraEdgeMonitoringDevicesTop99pSum; |
| 3631 | + return this; |
| 3632 | + } |
| 3633 | + |
| 3634 | + /** |
| 3635 | + * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current |
| 3636 | + * month for all organizations. |
| 3637 | + * |
| 3638 | + * @return infraEdgeMonitoringDevicesTop99pSum |
| 3639 | + */ |
| 3640 | + @jakarta.annotation.Nullable |
| 3641 | + @JsonProperty(JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM) |
| 3642 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 3643 | + public Long getInfraEdgeMonitoringDevicesTop99pSum() { |
| 3644 | + return infraEdgeMonitoringDevicesTop99pSum; |
| 3645 | + } |
| 3646 | + |
| 3647 | + public void setInfraEdgeMonitoringDevicesTop99pSum(Long infraEdgeMonitoringDevicesTop99pSum) { |
| 3648 | + this.infraEdgeMonitoringDevicesTop99pSum = infraEdgeMonitoringDevicesTop99pSum; |
| 3649 | + } |
| 3650 | + |
3623 | 3651 | public UsageSummaryResponse infraHostTop99pSum(Long infraHostTop99pSum) { |
3624 | 3652 | this.infraHostTop99pSum = infraHostTop99pSum; |
3625 | 3653 | return this; |
@@ -6618,6 +6646,9 @@ public boolean equals(Object o) { |
6618 | 6646 | this.incidentManagementSeatsHwmSum, usageSummaryResponse.incidentManagementSeatsHwmSum) |
6619 | 6647 | && Objects.equals( |
6620 | 6648 | this.indexedEventsCountAggSum, usageSummaryResponse.indexedEventsCountAggSum) |
| 6649 | + && Objects.equals( |
| 6650 | + this.infraEdgeMonitoringDevicesTop99pSum, |
| 6651 | + usageSummaryResponse.infraEdgeMonitoringDevicesTop99pSum) |
6621 | 6652 | && Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum) |
6622 | 6653 | && Objects.equals( |
6623 | 6654 | this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum) |
@@ -7004,6 +7035,7 @@ public int hashCode() { |
7004 | 7035 | incidentManagementMonthlyActiveUsersHwmSum, |
7005 | 7036 | incidentManagementSeatsHwmSum, |
7006 | 7037 | indexedEventsCountAggSum, |
| 7038 | + infraEdgeMonitoringDevicesTop99pSum, |
7007 | 7039 | infraHostTop99pSum, |
7008 | 7040 | ingestedEventsBytesAggSum, |
7009 | 7041 | iotDeviceAggSum, |
@@ -7424,6 +7456,9 @@ public String toString() { |
7424 | 7456 | sb.append(" indexedEventsCountAggSum: ") |
7425 | 7457 | .append(toIndentedString(indexedEventsCountAggSum)) |
7426 | 7458 | .append("\n"); |
| 7459 | + sb.append(" infraEdgeMonitoringDevicesTop99pSum: ") |
| 7460 | + .append(toIndentedString(infraEdgeMonitoringDevicesTop99pSum)) |
| 7461 | + .append("\n"); |
7427 | 7462 | sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n"); |
7428 | 7463 | sb.append(" ingestedEventsBytesAggSum: ") |
7429 | 7464 | .append(toIndentedString(ingestedEventsBytesAggSum)) |
|
0 commit comments