|
152 | 152 | UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P, |
153 | 153 | UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P, |
154 | 154 | UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_TOP99P, |
| 155 | + UsageSummaryDateOrg.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG, |
155 | 156 | UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, |
156 | 157 | UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, |
157 | 158 | UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, |
|
260 | 261 | UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, |
261 | 262 | UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG, |
262 | 263 | UsageSummaryDateOrg.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM, |
| 264 | + UsageSummaryDateOrg.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG, |
263 | 265 | UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM, |
264 | 266 | UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM, |
265 | 267 | UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM, |
@@ -745,6 +747,10 @@ public class UsageSummaryDateOrg { |
745 | 747 | public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p"; |
746 | 748 | private Long infraHostTop99p; |
747 | 749 |
|
| 750 | + public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG = |
| 751 | + "infra_storage_mgmt_objects_avg"; |
| 752 | + private Long infraStorageMgmtObjectsAvg; |
| 753 | + |
748 | 754 | public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum"; |
749 | 755 | private Long ingestedEventsBytesSum; |
750 | 756 |
|
@@ -1140,6 +1146,10 @@ public class UsageSummaryDateOrg { |
1140 | 1146 | "siem_analyzed_logs_add_on_count_sum"; |
1141 | 1147 | private Long siemAnalyzedLogsAddOnCountSum; |
1142 | 1148 |
|
| 1149 | + public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG = |
| 1150 | + "storage_management_object_count_avg"; |
| 1151 | + private Long storageManagementObjectCountAvg; |
| 1152 | + |
1143 | 1153 | public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM = |
1144 | 1154 | "synthetics_browser_check_calls_count_sum"; |
1145 | 1155 | private Long syntheticsBrowserCheckCallsCountSum; |
@@ -4171,6 +4181,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) { |
4171 | 4181 | this.infraHostTop99p = infraHostTop99p; |
4172 | 4182 | } |
4173 | 4183 |
|
| 4184 | + public UsageSummaryDateOrg infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) { |
| 4185 | + this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg; |
| 4186 | + return this; |
| 4187 | + } |
| 4188 | + |
| 4189 | + /** |
| 4190 | + * Shows the average of all storage management objects over all hours in the current date for the |
| 4191 | + * given org. |
| 4192 | + * |
| 4193 | + * @return infraStorageMgmtObjectsAvg |
| 4194 | + */ |
| 4195 | + @jakarta.annotation.Nullable |
| 4196 | + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG) |
| 4197 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 4198 | + public Long getInfraStorageMgmtObjectsAvg() { |
| 4199 | + return infraStorageMgmtObjectsAvg; |
| 4200 | + } |
| 4201 | + |
| 4202 | + public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) { |
| 4203 | + this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg; |
| 4204 | + } |
| 4205 | + |
4174 | 4206 | public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) { |
4175 | 4207 | this.ingestedEventsBytesSum = ingestedEventsBytesSum; |
4176 | 4208 | return this; |
@@ -6570,6 +6602,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) |
6570 | 6602 | this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum; |
6571 | 6603 | } |
6572 | 6604 |
|
| 6605 | + public UsageSummaryDateOrg storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) { |
| 6606 | + this.storageManagementObjectCountAvg = storageManagementObjectCountAvg; |
| 6607 | + return this; |
| 6608 | + } |
| 6609 | + |
| 6610 | + /** |
| 6611 | + * Shows the average of all storage management objects over all hours in the current date for the |
| 6612 | + * given org. |
| 6613 | + * |
| 6614 | + * @return storageManagementObjectCountAvg |
| 6615 | + */ |
| 6616 | + @jakarta.annotation.Nullable |
| 6617 | + @JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG) |
| 6618 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 6619 | + public Long getStorageManagementObjectCountAvg() { |
| 6620 | + return storageManagementObjectCountAvg; |
| 6621 | + } |
| 6622 | + |
| 6623 | + public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) { |
| 6624 | + this.storageManagementObjectCountAvg = storageManagementObjectCountAvg; |
| 6625 | + } |
| 6626 | + |
6573 | 6627 | public UsageSummaryDateOrg syntheticsBrowserCheckCallsCountSum( |
6574 | 6628 | Long syntheticsBrowserCheckCallsCountSum) { |
6575 | 6629 | this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum; |
@@ -7071,6 +7125,8 @@ public boolean equals(Object o) { |
7071 | 7125 | usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p) |
7072 | 7126 | && Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p) |
7073 | 7127 | && Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p) |
| 7128 | + && Objects.equals( |
| 7129 | + this.infraStorageMgmtObjectsAvg, usageSummaryDateOrg.infraStorageMgmtObjectsAvg) |
7074 | 7130 | && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum) |
7075 | 7131 | && Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum) |
7076 | 7132 | && Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum) |
@@ -7290,6 +7346,9 @@ public boolean equals(Object o) { |
7290 | 7346 | this.serverlessAppsTotalCountAvg, usageSummaryDateOrg.serverlessAppsTotalCountAvg) |
7291 | 7347 | && Objects.equals( |
7292 | 7348 | this.siemAnalyzedLogsAddOnCountSum, usageSummaryDateOrg.siemAnalyzedLogsAddOnCountSum) |
| 7349 | + && Objects.equals( |
| 7350 | + this.storageManagementObjectCountAvg, |
| 7351 | + usageSummaryDateOrg.storageManagementObjectCountAvg) |
7293 | 7352 | && Objects.equals( |
7294 | 7353 | this.syntheticsBrowserCheckCallsCountSum, |
7295 | 7354 | usageSummaryDateOrg.syntheticsBrowserCheckCallsCountSum) |
@@ -7453,6 +7512,7 @@ public int hashCode() { |
7453 | 7512 | infraHostBasicInfraBasicVsphereTop99p, |
7454 | 7513 | infraHostBasicTop99p, |
7455 | 7514 | infraHostTop99p, |
| 7515 | + infraStorageMgmtObjectsAvg, |
7456 | 7516 | ingestedEventsBytesSum, |
7457 | 7517 | iotDeviceAggSum, |
7458 | 7518 | iotDeviceTop99pSum, |
@@ -7556,6 +7616,7 @@ public int hashCode() { |
7556 | 7616 | serverlessAppsInfraGcpGkeAutopilotPodsAvg, |
7557 | 7617 | serverlessAppsTotalCountAvg, |
7558 | 7618 | siemAnalyzedLogsAddOnCountSum, |
| 7619 | + storageManagementObjectCountAvg, |
7559 | 7620 | syntheticsBrowserCheckCallsCountSum, |
7560 | 7621 | syntheticsCheckCallsCountSum, |
7561 | 7622 | syntheticsMobileTestRunsSum, |
@@ -7891,6 +7952,9 @@ public String toString() { |
7891 | 7952 | .append(toIndentedString(infraHostBasicTop99p)) |
7892 | 7953 | .append("\n"); |
7893 | 7954 | sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); |
| 7955 | + sb.append(" infraStorageMgmtObjectsAvg: ") |
| 7956 | + .append(toIndentedString(infraStorageMgmtObjectsAvg)) |
| 7957 | + .append("\n"); |
7894 | 7958 | sb.append(" ingestedEventsBytesSum: ") |
7895 | 7959 | .append(toIndentedString(ingestedEventsBytesSum)) |
7896 | 7960 | .append("\n"); |
@@ -8164,6 +8228,9 @@ public String toString() { |
8164 | 8228 | sb.append(" siemAnalyzedLogsAddOnCountSum: ") |
8165 | 8229 | .append(toIndentedString(siemAnalyzedLogsAddOnCountSum)) |
8166 | 8230 | .append("\n"); |
| 8231 | + sb.append(" storageManagementObjectCountAvg: ") |
| 8232 | + .append(toIndentedString(storageManagementObjectCountAvg)) |
| 8233 | + .append("\n"); |
8167 | 8234 | sb.append(" syntheticsBrowserCheckCallsCountSum: ") |
8168 | 8235 | .append(toIndentedString(syntheticsBrowserCheckCallsCountSum)) |
8169 | 8236 | .append("\n"); |
|
0 commit comments