diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 48f45d0bc2b..bdd4c6538ae 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -21924,6 +21924,11 @@ components: current date for all organizations. format: int64 type: integer + infra_edge_monitoring_devices_top99p: + description: Shows the 99th percentile of all Edge Devices Monitoring devices + over all hours in the current date for all organizations. + format: int64 + type: integer infra_host_top99p: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations. @@ -23076,6 +23081,11 @@ components: current date for the given org (To be deprecated on October 1st, 2024). format: int64 type: integer + infra_edge_monitoring_devices_top99p: + description: Shows the 99th percentile of all Edge Devices Monitoring devices + over all hours in the current date for the given org. + format: int64 + type: integer infra_host_top99p: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org. @@ -24229,6 +24239,11 @@ components: 2024). format: int64 type: integer + infra_edge_monitoring_devices_top99p_sum: + description: Shows the 99th percentile of all Edge Devices Monitoring devices + over all hours in the current month for all organizations. + format: int64 + type: integer infra_host_top99p_sum: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations. 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 004fdc47d90..e8dc0d9185d 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 @@ -126,6 +126,7 @@ UsageSummaryDate.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM, UsageSummaryDate.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM, UsageSummaryDate.JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM, + UsageSummaryDate.JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P, UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_TOP99P, UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM, @@ -617,6 +618,10 @@ public class UsageSummaryDate { public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM = "indexed_events_count_sum"; private Long indexedEventsCountSum; + public static final String JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P = + "infra_edge_monitoring_devices_top99p"; + private Long infraEdgeMonitoringDevicesTop99p; + public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p"; private Long infraHostTop99p; @@ -3378,6 +3383,28 @@ public void setIndexedEventsCountSum(Long indexedEventsCountSum) { this.indexedEventsCountSum = indexedEventsCountSum; } + public UsageSummaryDate infraEdgeMonitoringDevicesTop99p(Long infraEdgeMonitoringDevicesTop99p) { + this.infraEdgeMonitoringDevicesTop99p = infraEdgeMonitoringDevicesTop99p; + return this; + } + + /** + * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current + * date for all organizations. + * + * @return infraEdgeMonitoringDevicesTop99p + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraEdgeMonitoringDevicesTop99p() { + return infraEdgeMonitoringDevicesTop99p; + } + + public void setInfraEdgeMonitoringDevicesTop99p(Long infraEdgeMonitoringDevicesTop99p) { + this.infraEdgeMonitoringDevicesTop99p = infraEdgeMonitoringDevicesTop99p; + } + public UsageSummaryDate infraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; return this; @@ -6093,6 +6120,9 @@ public boolean equals(Object o) { && Objects.equals( this.incidentManagementSeatsHwm, usageSummaryDate.incidentManagementSeatsHwm) && Objects.equals(this.indexedEventsCountSum, usageSummaryDate.indexedEventsCountSum) + && Objects.equals( + this.infraEdgeMonitoringDevicesTop99p, + usageSummaryDate.infraEdgeMonitoringDevicesTop99p) && Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p) && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum) && Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum) @@ -6421,6 +6451,7 @@ public int hashCode() { incidentManagementMonthlyActiveUsersHwm, incidentManagementSeatsHwm, indexedEventsCountSum, + infraEdgeMonitoringDevicesTop99p, infraHostTop99p, ingestedEventsBytesSum, iotDeviceSum, @@ -6790,6 +6821,9 @@ public String toString() { sb.append(" indexedEventsCountSum: ") .append(toIndentedString(indexedEventsCountSum)) .append("\n"); + sb.append(" infraEdgeMonitoringDevicesTop99p: ") + .append(toIndentedString(infraEdgeMonitoringDevicesTop99p)) + .append("\n"); sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); sb.append(" ingestedEventsBytesSum: ") .append(toIndentedString(ingestedEventsBytesSum)) 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 8eeb69d6175..20c3576ddcc 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 @@ -127,6 +127,7 @@ UsageSummaryDateOrg.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM, UsageSummaryDateOrg.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM, UsageSummaryDateOrg.JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM, + UsageSummaryDateOrg.JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P, UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_TOP99P, UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, @@ -633,6 +634,10 @@ public class UsageSummaryDateOrg { public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM = "indexed_events_count_sum"; private Long indexedEventsCountSum; + public static final String JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P = + "infra_edge_monitoring_devices_top99p"; + private Long infraEdgeMonitoringDevicesTop99p; + public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p"; private Long infraHostTop99p; @@ -3485,6 +3490,29 @@ public void setIndexedEventsCountSum(Long indexedEventsCountSum) { this.indexedEventsCountSum = indexedEventsCountSum; } + public UsageSummaryDateOrg infraEdgeMonitoringDevicesTop99p( + Long infraEdgeMonitoringDevicesTop99p) { + this.infraEdgeMonitoringDevicesTop99p = infraEdgeMonitoringDevicesTop99p; + return this; + } + + /** + * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current + * date for the given org. + * + * @return infraEdgeMonitoringDevicesTop99p + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraEdgeMonitoringDevicesTop99p() { + return infraEdgeMonitoringDevicesTop99p; + } + + public void setInfraEdgeMonitoringDevicesTop99p(Long infraEdgeMonitoringDevicesTop99p) { + this.infraEdgeMonitoringDevicesTop99p = infraEdgeMonitoringDevicesTop99p; + } + public UsageSummaryDateOrg infraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; return this; @@ -6246,6 +6274,9 @@ public boolean equals(Object o) { && Objects.equals( this.incidentManagementSeatsHwm, usageSummaryDateOrg.incidentManagementSeatsHwm) && Objects.equals(this.indexedEventsCountSum, usageSummaryDateOrg.indexedEventsCountSum) + && Objects.equals( + this.infraEdgeMonitoringDevicesTop99p, + usageSummaryDateOrg.infraEdgeMonitoringDevicesTop99p) && Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p) && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum) && Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum) @@ -6591,6 +6622,7 @@ public int hashCode() { incidentManagementMonthlyActiveUsersHwm, incidentManagementSeatsHwm, indexedEventsCountSum, + infraEdgeMonitoringDevicesTop99p, infraHostTop99p, ingestedEventsBytesSum, iotDeviceAggSum, @@ -6968,6 +7000,9 @@ public String toString() { sb.append(" indexedEventsCountSum: ") .append(toIndentedString(indexedEventsCountSum)) .append("\n"); + sb.append(" infraEdgeMonitoringDevicesTop99p: ") + .append(toIndentedString(infraEdgeMonitoringDevicesTop99p)) + .append("\n"); sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); sb.append(" ingestedEventsBytesSum: ") .append(toIndentedString(ingestedEventsBytesSum)) 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 1f4385fa1fc..9fd4bfc7bf2 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 @@ -132,6 +132,7 @@ UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM, UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM, UsageSummaryResponse.JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM, + UsageSummaryResponse.JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM, UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM, UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, @@ -665,6 +666,10 @@ public class UsageSummaryResponse { "indexed_events_count_agg_sum"; private Long indexedEventsCountAggSum; + public static final String JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM = + "infra_edge_monitoring_devices_top99p_sum"; + private Long infraEdgeMonitoringDevicesTop99pSum; + public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum"; private Long infraHostTop99pSum; @@ -3563,6 +3568,29 @@ public void setIndexedEventsCountAggSum(Long indexedEventsCountAggSum) { this.indexedEventsCountAggSum = indexedEventsCountAggSum; } + public UsageSummaryResponse infraEdgeMonitoringDevicesTop99pSum( + Long infraEdgeMonitoringDevicesTop99pSum) { + this.infraEdgeMonitoringDevicesTop99pSum = infraEdgeMonitoringDevicesTop99pSum; + return this; + } + + /** + * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current + * month for all organizations. + * + * @return infraEdgeMonitoringDevicesTop99pSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_EDGE_MONITORING_DEVICES_TOP99P_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraEdgeMonitoringDevicesTop99pSum() { + return infraEdgeMonitoringDevicesTop99pSum; + } + + public void setInfraEdgeMonitoringDevicesTop99pSum(Long infraEdgeMonitoringDevicesTop99pSum) { + this.infraEdgeMonitoringDevicesTop99pSum = infraEdgeMonitoringDevicesTop99pSum; + } + public UsageSummaryResponse infraHostTop99pSum(Long infraHostTop99pSum) { this.infraHostTop99pSum = infraHostTop99pSum; return this; @@ -6555,6 +6583,9 @@ public boolean equals(Object o) { this.incidentManagementSeatsHwmSum, usageSummaryResponse.incidentManagementSeatsHwmSum) && Objects.equals( this.indexedEventsCountAggSum, usageSummaryResponse.indexedEventsCountAggSum) + && Objects.equals( + this.infraEdgeMonitoringDevicesTop99pSum, + usageSummaryResponse.infraEdgeMonitoringDevicesTop99pSum) && Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum) && Objects.equals( this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum) @@ -6939,6 +6970,7 @@ public int hashCode() { incidentManagementMonthlyActiveUsersHwmSum, incidentManagementSeatsHwmSum, indexedEventsCountAggSum, + infraEdgeMonitoringDevicesTop99pSum, infraHostTop99pSum, ingestedEventsBytesAggSum, iotDeviceAggSum, @@ -7353,6 +7385,9 @@ public String toString() { sb.append(" indexedEventsCountAggSum: ") .append(toIndentedString(indexedEventsCountAggSum)) .append("\n"); + sb.append(" infraEdgeMonitoringDevicesTop99pSum: ") + .append(toIndentedString(infraEdgeMonitoringDevicesTop99pSum)) + .append("\n"); sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n"); sb.append(" ingestedEventsBytesAggSum: ") .append(toIndentedString(ingestedEventsBytesAggSum))