diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 4707c147e8b..e09723c3d4a 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -22615,6 +22615,10 @@ components: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations. format: int64 type: integer + infra_storage_mgmt_objects_avg: + description: Shows the average of all storage management objects over all hours in the current date for all organizations. + format: int64 + type: integer ingested_events_bytes_sum: description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations. format: int64 @@ -23031,6 +23035,10 @@ components: description: Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org. format: int64 type: integer + storage_management_object_count_avg: + description: Shows the average of all storage management objects over all hours in the current date for all organizations. + format: int64 + type: integer synthetics_browser_check_calls_count_sum: description: Shows the sum of all Synthetic browser tests over all hours in the current date for all organizations. format: int64 @@ -23612,6 +23620,10 @@ components: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org. format: int64 type: integer + infra_storage_mgmt_objects_avg: + description: Shows the average of all storage management objects over all hours in the current date for the given org. + format: int64 + type: integer ingested_events_bytes_sum: description: Shows the sum of all log bytes ingested over all hours in the current date for the given org. format: int64 @@ -24032,6 +24044,10 @@ components: description: Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org. format: int64 type: integer + storage_management_object_count_avg: + description: Shows the average of all storage management objects over all hours in the current date for the given org. + format: int64 + type: integer synthetics_browser_check_calls_count_sum: description: Shows the sum of all Synthetic browser tests over all hours in the current date for the given org. format: int64 @@ -24612,6 +24628,10 @@ components: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations. format: int64 type: integer + infra_storage_mgmt_objects_avg_sum: + description: Shows the average of all storage management objects over all hours in the current month for all organizations. + format: int64 + type: integer ingested_events_bytes_agg_sum: description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations. format: int64 @@ -25055,6 +25075,10 @@ components: description: Shows the first date of usage in the current month for all organizations. format: date-time type: string + storage_management_object_count_avg_sum: + description: Shows the average of all storage management objects over all hours in the current month for all organizations. + format: int64 + type: integer synthetics_browser_check_calls_count_agg_sum: description: Shows the sum of all Synthetic browser tests over all hours in the current month for all organizations. format: int64 diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java index 5fc16fa8721..4733fd1aa35 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java @@ -151,6 +151,7 @@ UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P, UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P, UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_TOP99P, + UsageSummaryDate.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG, UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM, UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_TOP99P, @@ -256,6 +257,7 @@ UsageSummaryDate.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, UsageSummaryDate.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG, UsageSummaryDate.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM, + UsageSummaryDate.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG, UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM, UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM, UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM, @@ -729,6 +731,10 @@ public class UsageSummaryDate { public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p"; private Long infraHostTop99p; + public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG = + "infra_storage_mgmt_objects_avg"; + private Long infraStorageMgmtObjectsAvg; + public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum"; private Long ingestedEventsBytesSum; @@ -1118,6 +1124,10 @@ public class UsageSummaryDate { "siem_analyzed_logs_add_on_count_sum"; private Long siemAnalyzedLogsAddOnCountSum; + public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG = + "storage_management_object_count_avg"; + private Long storageManagementObjectCountAvg; + public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM = "synthetics_browser_check_calls_count_sum"; private Long syntheticsBrowserCheckCallsCountSum; @@ -4063,6 +4073,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; } + public UsageSummaryDate infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) { + this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg; + return this; + } + + /** + * Shows the average of all storage management objects over all hours in the current date for all + * organizations. + * + * @return infraStorageMgmtObjectsAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraStorageMgmtObjectsAvg() { + return infraStorageMgmtObjectsAvg; + } + + public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) { + this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg; + } + public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) { this.ingestedEventsBytesSum = ingestedEventsBytesSum; return this; @@ -6431,6 +6463,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum; } + public UsageSummaryDate storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) { + this.storageManagementObjectCountAvg = storageManagementObjectCountAvg; + return this; + } + + /** + * Shows the average of all storage management objects over all hours in the current date for all + * organizations. + * + * @return storageManagementObjectCountAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getStorageManagementObjectCountAvg() { + return storageManagementObjectCountAvg; + } + + public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) { + this.storageManagementObjectCountAvg = storageManagementObjectCountAvg; + } + public UsageSummaryDate syntheticsBrowserCheckCallsCountSum( Long syntheticsBrowserCheckCallsCountSum) { this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum; @@ -6917,6 +6971,8 @@ public boolean equals(Object o) { usageSummaryDate.infraHostBasicInfraBasicVsphereTop99p) && Objects.equals(this.infraHostBasicTop99p, usageSummaryDate.infraHostBasicTop99p) && Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p) + && Objects.equals( + this.infraStorageMgmtObjectsAvg, usageSummaryDate.infraStorageMgmtObjectsAvg) && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum) && Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum) && Objects.equals(this.iotDeviceTop99p, usageSummaryDate.iotDeviceTop99p) @@ -7123,6 +7179,8 @@ public boolean equals(Object o) { this.serverlessAppsTotalCountAvg, usageSummaryDate.serverlessAppsTotalCountAvg) && Objects.equals( this.siemAnalyzedLogsAddOnCountSum, usageSummaryDate.siemAnalyzedLogsAddOnCountSum) + && Objects.equals( + this.storageManagementObjectCountAvg, usageSummaryDate.storageManagementObjectCountAvg) && Objects.equals( this.syntheticsBrowserCheckCallsCountSum, usageSummaryDate.syntheticsBrowserCheckCallsCountSum) @@ -7282,6 +7340,7 @@ public int hashCode() { infraHostBasicInfraBasicVsphereTop99p, infraHostBasicTop99p, infraHostTop99p, + infraStorageMgmtObjectsAvg, ingestedEventsBytesSum, iotDeviceSum, iotDeviceTop99p, @@ -7383,6 +7442,7 @@ public int hashCode() { serverlessAppsInfraGcpGkeAutopilotPodsAvg, serverlessAppsTotalCountAvg, siemAnalyzedLogsAddOnCountSum, + storageManagementObjectCountAvg, syntheticsBrowserCheckCallsCountSum, syntheticsCheckCallsCountSum, syntheticsMobileTestRunsSum, @@ -7712,6 +7772,9 @@ public String toString() { .append(toIndentedString(infraHostBasicTop99p)) .append("\n"); sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); + sb.append(" infraStorageMgmtObjectsAvg: ") + .append(toIndentedString(infraStorageMgmtObjectsAvg)) + .append("\n"); sb.append(" ingestedEventsBytesSum: ") .append(toIndentedString(ingestedEventsBytesSum)) .append("\n"); @@ -7983,6 +8046,9 @@ public String toString() { sb.append(" siemAnalyzedLogsAddOnCountSum: ") .append(toIndentedString(siemAnalyzedLogsAddOnCountSum)) .append("\n"); + sb.append(" storageManagementObjectCountAvg: ") + .append(toIndentedString(storageManagementObjectCountAvg)) + .append("\n"); sb.append(" syntheticsBrowserCheckCallsCountSum: ") .append(toIndentedString(syntheticsBrowserCheckCallsCountSum)) .append("\n"); diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java index fb04175e1b0..3762c86baa5 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java @@ -152,6 +152,7 @@ UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P, UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P, UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_TOP99P, + UsageSummaryDateOrg.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG, UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, @@ -260,6 +261,7 @@ UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG, UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG, UsageSummaryDateOrg.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM, + UsageSummaryDateOrg.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG, UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM, UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM, UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM, @@ -745,6 +747,10 @@ public class UsageSummaryDateOrg { public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p"; private Long infraHostTop99p; + public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG = + "infra_storage_mgmt_objects_avg"; + private Long infraStorageMgmtObjectsAvg; + public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum"; private Long ingestedEventsBytesSum; @@ -1140,6 +1146,10 @@ public class UsageSummaryDateOrg { "siem_analyzed_logs_add_on_count_sum"; private Long siemAnalyzedLogsAddOnCountSum; + public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG = + "storage_management_object_count_avg"; + private Long storageManagementObjectCountAvg; + public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM = "synthetics_browser_check_calls_count_sum"; private Long syntheticsBrowserCheckCallsCountSum; @@ -4171,6 +4181,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; } + public UsageSummaryDateOrg infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) { + this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg; + return this; + } + + /** + * Shows the average of all storage management objects over all hours in the current date for the + * given org. + * + * @return infraStorageMgmtObjectsAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraStorageMgmtObjectsAvg() { + return infraStorageMgmtObjectsAvg; + } + + public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) { + this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg; + } + public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) { this.ingestedEventsBytesSum = ingestedEventsBytesSum; return this; @@ -6570,6 +6602,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum) this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum; } + public UsageSummaryDateOrg storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) { + this.storageManagementObjectCountAvg = storageManagementObjectCountAvg; + return this; + } + + /** + * Shows the average of all storage management objects over all hours in the current date for the + * given org. + * + * @return storageManagementObjectCountAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getStorageManagementObjectCountAvg() { + return storageManagementObjectCountAvg; + } + + public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) { + this.storageManagementObjectCountAvg = storageManagementObjectCountAvg; + } + public UsageSummaryDateOrg syntheticsBrowserCheckCallsCountSum( Long syntheticsBrowserCheckCallsCountSum) { this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum; @@ -7071,6 +7125,8 @@ public boolean equals(Object o) { usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p) && Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p) && Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p) + && Objects.equals( + this.infraStorageMgmtObjectsAvg, usageSummaryDateOrg.infraStorageMgmtObjectsAvg) && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum) && Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum) && Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum) @@ -7290,6 +7346,9 @@ public boolean equals(Object o) { this.serverlessAppsTotalCountAvg, usageSummaryDateOrg.serverlessAppsTotalCountAvg) && Objects.equals( this.siemAnalyzedLogsAddOnCountSum, usageSummaryDateOrg.siemAnalyzedLogsAddOnCountSum) + && Objects.equals( + this.storageManagementObjectCountAvg, + usageSummaryDateOrg.storageManagementObjectCountAvg) && Objects.equals( this.syntheticsBrowserCheckCallsCountSum, usageSummaryDateOrg.syntheticsBrowserCheckCallsCountSum) @@ -7453,6 +7512,7 @@ public int hashCode() { infraHostBasicInfraBasicVsphereTop99p, infraHostBasicTop99p, infraHostTop99p, + infraStorageMgmtObjectsAvg, ingestedEventsBytesSum, iotDeviceAggSum, iotDeviceTop99pSum, @@ -7556,6 +7616,7 @@ public int hashCode() { serverlessAppsInfraGcpGkeAutopilotPodsAvg, serverlessAppsTotalCountAvg, siemAnalyzedLogsAddOnCountSum, + storageManagementObjectCountAvg, syntheticsBrowserCheckCallsCountSum, syntheticsCheckCallsCountSum, syntheticsMobileTestRunsSum, @@ -7891,6 +7952,9 @@ public String toString() { .append(toIndentedString(infraHostBasicTop99p)) .append("\n"); sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); + sb.append(" infraStorageMgmtObjectsAvg: ") + .append(toIndentedString(infraStorageMgmtObjectsAvg)) + .append("\n"); sb.append(" ingestedEventsBytesSum: ") .append(toIndentedString(ingestedEventsBytesSum)) .append("\n"); @@ -8164,6 +8228,9 @@ public String toString() { sb.append(" siemAnalyzedLogsAddOnCountSum: ") .append(toIndentedString(siemAnalyzedLogsAddOnCountSum)) .append("\n"); + sb.append(" storageManagementObjectCountAvg: ") + .append(toIndentedString(storageManagementObjectCountAvg)) + .append("\n"); sb.append(" syntheticsBrowserCheckCallsCountSum: ") .append(toIndentedString(syntheticsBrowserCheckCallsCountSum)) .append("\n"); diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java index 2aa2eedab64..09f90b9880d 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java @@ -157,6 +157,7 @@ UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P_SUM, UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P_SUM, UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM, + UsageSummaryResponse.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG_SUM, UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, @@ -276,6 +277,7 @@ UsageSummaryResponse.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG_SUM, UsageSummaryResponse.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_START_DATE, + UsageSummaryResponse.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG_SUM, UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_AGG_SUM, @@ -787,6 +789,10 @@ public class UsageSummaryResponse { public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum"; private Long infraHostTop99pSum; + public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG_SUM = + "infra_storage_mgmt_objects_avg_sum"; + private Long infraStorageMgmtObjectsAvgSum; + public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM = "ingested_events_bytes_agg_sum"; private Long ingestedEventsBytesAggSum; @@ -1216,6 +1222,10 @@ public class UsageSummaryResponse { public static final String JSON_PROPERTY_START_DATE = "start_date"; private OffsetDateTime startDate; + public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG_SUM = + "storage_management_object_count_avg_sum"; + private Long storageManagementObjectCountAvgSum; + public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_AGG_SUM = "synthetics_browser_check_calls_count_agg_sum"; private Long syntheticsBrowserCheckCallsCountAggSum; @@ -4266,6 +4276,28 @@ public void setInfraHostTop99pSum(Long infraHostTop99pSum) { this.infraHostTop99pSum = infraHostTop99pSum; } + public UsageSummaryResponse infraStorageMgmtObjectsAvgSum(Long infraStorageMgmtObjectsAvgSum) { + this.infraStorageMgmtObjectsAvgSum = infraStorageMgmtObjectsAvgSum; + return this; + } + + /** + * Shows the average of all storage management objects over all hours in the current month for all + * organizations. + * + * @return infraStorageMgmtObjectsAvgSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraStorageMgmtObjectsAvgSum() { + return infraStorageMgmtObjectsAvgSum; + } + + public void setInfraStorageMgmtObjectsAvgSum(Long infraStorageMgmtObjectsAvgSum) { + this.infraStorageMgmtObjectsAvgSum = infraStorageMgmtObjectsAvgSum; + } + public UsageSummaryResponse ingestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) { this.ingestedEventsBytesAggSum = ingestedEventsBytesAggSum; return this; @@ -6825,6 +6857,29 @@ public void setStartDate(OffsetDateTime startDate) { this.startDate = startDate; } + public UsageSummaryResponse storageManagementObjectCountAvgSum( + Long storageManagementObjectCountAvgSum) { + this.storageManagementObjectCountAvgSum = storageManagementObjectCountAvgSum; + return this; + } + + /** + * Shows the average of all storage management objects over all hours in the current month for all + * organizations. + * + * @return storageManagementObjectCountAvgSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getStorageManagementObjectCountAvgSum() { + return storageManagementObjectCountAvgSum; + } + + public void setStorageManagementObjectCountAvgSum(Long storageManagementObjectCountAvgSum) { + this.storageManagementObjectCountAvgSum = storageManagementObjectCountAvgSum; + } + public UsageSummaryResponse syntheticsBrowserCheckCallsCountAggSum( Long syntheticsBrowserCheckCallsCountAggSum) { this.syntheticsBrowserCheckCallsCountAggSum = syntheticsBrowserCheckCallsCountAggSum; @@ -7409,6 +7464,8 @@ public boolean equals(Object o) { && Objects.equals( this.infraHostBasicTop99pSum, usageSummaryResponse.infraHostBasicTop99pSum) && Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum) + && Objects.equals( + this.infraStorageMgmtObjectsAvgSum, usageSummaryResponse.infraStorageMgmtObjectsAvgSum) && Objects.equals( this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum) && Objects.equals(this.iotDeviceAggSum, usageSummaryResponse.iotDeviceAggSum) @@ -7664,6 +7721,9 @@ public boolean equals(Object o) { this.siemAnalyzedLogsAddOnCountAggSum, usageSummaryResponse.siemAnalyzedLogsAddOnCountAggSum) && Objects.equals(this.startDate, usageSummaryResponse.startDate) + && Objects.equals( + this.storageManagementObjectCountAvgSum, + usageSummaryResponse.storageManagementObjectCountAvgSum) && Objects.equals( this.syntheticsBrowserCheckCallsCountAggSum, usageSummaryResponse.syntheticsBrowserCheckCallsCountAggSum) @@ -7830,6 +7890,7 @@ public int hashCode() { infraHostBasicInfraBasicVsphereTop99pSum, infraHostBasicTop99pSum, infraHostTop99pSum, + infraStorageMgmtObjectsAvgSum, ingestedEventsBytesAggSum, iotDeviceAggSum, iotDeviceTop99pSum, @@ -7938,6 +7999,7 @@ public int hashCode() { serverlessAppsTotalCountAvgSum, siemAnalyzedLogsAddOnCountAggSum, startDate, + storageManagementObjectCountAvgSum, syntheticsBrowserCheckCallsCountAggSum, syntheticsCheckCallsCountAggSum, syntheticsMobileTestRunsAggSum, @@ -8315,6 +8377,9 @@ public String toString() { .append(toIndentedString(infraHostBasicTop99pSum)) .append("\n"); sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n"); + sb.append(" infraStorageMgmtObjectsAvgSum: ") + .append(toIndentedString(infraStorageMgmtObjectsAvgSum)) + .append("\n"); sb.append(" ingestedEventsBytesAggSum: ") .append(toIndentedString(ingestedEventsBytesAggSum)) .append("\n"); @@ -8613,6 +8678,9 @@ public String toString() { .append(toIndentedString(siemAnalyzedLogsAddOnCountAggSum)) .append("\n"); sb.append(" startDate: ").append(toIndentedString(startDate)).append("\n"); + sb.append(" storageManagementObjectCountAvgSum: ") + .append(toIndentedString(storageManagementObjectCountAvgSum)) + .append("\n"); sb.append(" syntheticsBrowserCheckCallsCountAggSum: ") .append(toIndentedString(syntheticsBrowserCheckCallsCountAggSum)) .append("\n");