|
156 | 156 | UsageSummaryResponse.JSON_PROPERTY_NDM_NETFLOW_EVENTS_AGG_SUM, |
157 | 157 | UsageSummaryResponse.JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_AGG_SUM, |
158 | 158 | UsageSummaryResponse.JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P_SUM, |
| 159 | + UsageSummaryResponse.JSON_PROPERTY_NETWORK_PATH_AGG_SUM, |
159 | 160 | UsageSummaryResponse.JSON_PROPERTY_NPM_HOST_TOP99P_SUM, |
160 | 161 | UsageSummaryResponse.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_AGG_SUM, |
161 | 162 | UsageSummaryResponse.JSON_PROPERTY_OCI_HOST_AGG_SUM, |
@@ -757,6 +758,9 @@ public class UsageSummaryResponse { |
757 | 758 | "network_device_wireless_top99p_sum"; |
758 | 759 | private Long networkDeviceWirelessTop99pSum; |
759 | 760 |
|
| 761 | + public static final String JSON_PROPERTY_NETWORK_PATH_AGG_SUM = "network_path_agg_sum"; |
| 762 | + private Long networkPathAggSum; |
| 763 | + |
760 | 764 | public static final String JSON_PROPERTY_NPM_HOST_TOP99P_SUM = "npm_host_top99p_sum"; |
761 | 765 | private Long npmHostTop99pSum; |
762 | 766 |
|
@@ -4145,6 +4149,28 @@ public void setNetworkDeviceWirelessTop99pSum(Long networkDeviceWirelessTop99pSu |
4145 | 4149 | this.networkDeviceWirelessTop99pSum = networkDeviceWirelessTop99pSum; |
4146 | 4150 | } |
4147 | 4151 |
|
| 4152 | + public UsageSummaryResponse networkPathAggSum(Long networkPathAggSum) { |
| 4153 | + this.networkPathAggSum = networkPathAggSum; |
| 4154 | + return this; |
| 4155 | + } |
| 4156 | + |
| 4157 | + /** |
| 4158 | + * Shows the sum of all Network Path scheduled tests over all hours in the current month for all |
| 4159 | + * organizations. |
| 4160 | + * |
| 4161 | + * @return networkPathAggSum |
| 4162 | + */ |
| 4163 | + @jakarta.annotation.Nullable |
| 4164 | + @JsonProperty(JSON_PROPERTY_NETWORK_PATH_AGG_SUM) |
| 4165 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 4166 | + public Long getNetworkPathAggSum() { |
| 4167 | + return networkPathAggSum; |
| 4168 | + } |
| 4169 | + |
| 4170 | + public void setNetworkPathAggSum(Long networkPathAggSum) { |
| 4171 | + this.networkPathAggSum = networkPathAggSum; |
| 4172 | + } |
| 4173 | + |
4148 | 4174 | public UsageSummaryResponse npmHostTop99pSum(Long npmHostTop99pSum) { |
4149 | 4175 | this.npmHostTop99pSum = npmHostTop99pSum; |
4150 | 4176 | return this; |
@@ -6692,6 +6718,7 @@ public boolean equals(Object o) { |
6692 | 6718 | && Objects.equals( |
6693 | 6719 | this.networkDeviceWirelessTop99pSum, |
6694 | 6720 | usageSummaryResponse.networkDeviceWirelessTop99pSum) |
| 6721 | + && Objects.equals(this.networkPathAggSum, usageSummaryResponse.networkPathAggSum) |
6695 | 6722 | && Objects.equals(this.npmHostTop99pSum, usageSummaryResponse.npmHostTop99pSum) |
6696 | 6723 | && Objects.equals( |
6697 | 6724 | this.observabilityPipelinesBytesProcessedAggSum, |
@@ -7057,6 +7084,7 @@ public int hashCode() { |
7057 | 7084 | ndmNetflowEventsAggSum, |
7058 | 7085 | netflowIndexedEventsCountAggSum, |
7059 | 7086 | networkDeviceWirelessTop99pSum, |
| 7087 | + networkPathAggSum, |
7060 | 7088 | npmHostTop99pSum, |
7061 | 7089 | observabilityPipelinesBytesProcessedAggSum, |
7062 | 7090 | ociHostAggSum, |
@@ -7512,6 +7540,7 @@ public String toString() { |
7512 | 7540 | sb.append(" networkDeviceWirelessTop99pSum: ") |
7513 | 7541 | .append(toIndentedString(networkDeviceWirelessTop99pSum)) |
7514 | 7542 | .append("\n"); |
| 7543 | + sb.append(" networkPathAggSum: ").append(toIndentedString(networkPathAggSum)).append("\n"); |
7515 | 7544 | sb.append(" npmHostTop99pSum: ").append(toIndentedString(npmHostTop99pSum)).append("\n"); |
7516 | 7545 | sb.append(" observabilityPipelinesBytesProcessedAggSum: ") |
7517 | 7546 | .append(toIndentedString(observabilityPipelinesBytesProcessedAggSum)) |
|
0 commit comments