|
157 | 157 | UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P_SUM, |
158 | 158 | UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P_SUM, |
159 | 159 | UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM, |
| 160 | + UsageSummaryResponse.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM, |
160 | 161 | UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, |
161 | 162 | UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, |
162 | 163 | UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, |
@@ -787,6 +788,10 @@ public class UsageSummaryResponse { |
787 | 788 | public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum"; |
788 | 789 | private Long infraHostTop99pSum; |
789 | 790 |
|
| 791 | + public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM = |
| 792 | + "infra_storage_mgmt_objects_count_avg_sum"; |
| 793 | + private Long infraStorageMgmtObjectsCountAvgSum; |
| 794 | + |
790 | 795 | public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM = |
791 | 796 | "ingested_events_bytes_agg_sum"; |
792 | 797 | private Long ingestedEventsBytesAggSum; |
@@ -4266,6 +4271,29 @@ public void setInfraHostTop99pSum(Long infraHostTop99pSum) { |
4266 | 4271 | this.infraHostTop99pSum = infraHostTop99pSum; |
4267 | 4272 | } |
4268 | 4273 |
|
| 4274 | + public UsageSummaryResponse infraStorageMgmtObjectsCountAvgSum( |
| 4275 | + Long infraStorageMgmtObjectsCountAvgSum) { |
| 4276 | + this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum; |
| 4277 | + return this; |
| 4278 | + } |
| 4279 | + |
| 4280 | + /** |
| 4281 | + * Shows the average number of storage management objects over all hours in the current month for |
| 4282 | + * all organizations. |
| 4283 | + * |
| 4284 | + * @return infraStorageMgmtObjectsCountAvgSum |
| 4285 | + */ |
| 4286 | + @jakarta.annotation.Nullable |
| 4287 | + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM) |
| 4288 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 4289 | + public Long getInfraStorageMgmtObjectsCountAvgSum() { |
| 4290 | + return infraStorageMgmtObjectsCountAvgSum; |
| 4291 | + } |
| 4292 | + |
| 4293 | + public void setInfraStorageMgmtObjectsCountAvgSum(Long infraStorageMgmtObjectsCountAvgSum) { |
| 4294 | + this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum; |
| 4295 | + } |
| 4296 | + |
4269 | 4297 | public UsageSummaryResponse ingestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) { |
4270 | 4298 | this.ingestedEventsBytesAggSum = ingestedEventsBytesAggSum; |
4271 | 4299 | return this; |
@@ -7409,6 +7437,9 @@ public boolean equals(Object o) { |
7409 | 7437 | && Objects.equals( |
7410 | 7438 | this.infraHostBasicTop99pSum, usageSummaryResponse.infraHostBasicTop99pSum) |
7411 | 7439 | && Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum) |
| 7440 | + && Objects.equals( |
| 7441 | + this.infraStorageMgmtObjectsCountAvgSum, |
| 7442 | + usageSummaryResponse.infraStorageMgmtObjectsCountAvgSum) |
7412 | 7443 | && Objects.equals( |
7413 | 7444 | this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum) |
7414 | 7445 | && Objects.equals(this.iotDeviceAggSum, usageSummaryResponse.iotDeviceAggSum) |
@@ -7830,6 +7861,7 @@ public int hashCode() { |
7830 | 7861 | infraHostBasicInfraBasicVsphereTop99pSum, |
7831 | 7862 | infraHostBasicTop99pSum, |
7832 | 7863 | infraHostTop99pSum, |
| 7864 | + infraStorageMgmtObjectsCountAvgSum, |
7833 | 7865 | ingestedEventsBytesAggSum, |
7834 | 7866 | iotDeviceAggSum, |
7835 | 7867 | iotDeviceTop99pSum, |
@@ -8315,6 +8347,9 @@ public String toString() { |
8315 | 8347 | .append(toIndentedString(infraHostBasicTop99pSum)) |
8316 | 8348 | .append("\n"); |
8317 | 8349 | sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n"); |
| 8350 | + sb.append(" infraStorageMgmtObjectsCountAvgSum: ") |
| 8351 | + .append(toIndentedString(infraStorageMgmtObjectsCountAvgSum)) |
| 8352 | + .append("\n"); |
8318 | 8353 | sb.append(" ingestedEventsBytesAggSum: ") |
8319 | 8354 | .append(toIndentedString(ingestedEventsBytesAggSum)) |
8320 | 8355 | .append("\n"); |
|
0 commit comments