From 1ed8cb4a53d90cfd29f8cfc4e81dc2d451053133 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Thu, 7 May 2026 15:42:00 +0000 Subject: [PATCH] Regenerate client from commit 198de0e of spec repo --- .generator/schemas/v1/openapi.yaml | 12 +++++++ .../api/client/v1/model/UsageSummaryDate.java | 33 +++++++++++++++++ .../client/v1/model/UsageSummaryDateOrg.java | 34 ++++++++++++++++++ .../client/v1/model/UsageSummaryResponse.java | 35 +++++++++++++++++++ 4 files changed, 114 insertions(+) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 1756c3d2d6c..cfaba2a4826 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -22439,6 +22439,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_count_avg: + description: Shows the average number of 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 @@ -23436,6 +23440,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_count_avg: + description: Shows the average number of 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 @@ -24436,6 +24444,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_count_avg_sum: + description: Shows the average number of 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 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..30e517f1d61 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_COUNT_AVG, UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM, UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_TOP99P, @@ -729,6 +730,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_COUNT_AVG = + "infra_storage_mgmt_objects_count_avg"; + private Long infraStorageMgmtObjectsCountAvg; + public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum"; private Long ingestedEventsBytesSum; @@ -4063,6 +4068,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; } + public UsageSummaryDate infraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { + this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg; + return this; + } + + /** + * Shows the average number of storage management objects over all hours in the current date for + * all organizations. + * + * @return infraStorageMgmtObjectsCountAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraStorageMgmtObjectsCountAvg() { + return infraStorageMgmtObjectsCountAvg; + } + + public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { + this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg; + } + public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) { this.ingestedEventsBytesSum = ingestedEventsBytesSum; return this; @@ -6917,6 +6944,8 @@ public boolean equals(Object o) { usageSummaryDate.infraHostBasicInfraBasicVsphereTop99p) && Objects.equals(this.infraHostBasicTop99p, usageSummaryDate.infraHostBasicTop99p) && Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p) + && Objects.equals( + this.infraStorageMgmtObjectsCountAvg, usageSummaryDate.infraStorageMgmtObjectsCountAvg) && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum) && Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum) && Objects.equals(this.iotDeviceTop99p, usageSummaryDate.iotDeviceTop99p) @@ -7282,6 +7311,7 @@ public int hashCode() { infraHostBasicInfraBasicVsphereTop99p, infraHostBasicTop99p, infraHostTop99p, + infraStorageMgmtObjectsCountAvg, ingestedEventsBytesSum, iotDeviceSum, iotDeviceTop99p, @@ -7712,6 +7742,9 @@ public String toString() { .append(toIndentedString(infraHostBasicTop99p)) .append("\n"); sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); + sb.append(" infraStorageMgmtObjectsCountAvg: ") + .append(toIndentedString(infraStorageMgmtObjectsCountAvg)) + .append("\n"); sb.append(" ingestedEventsBytesSum: ") .append(toIndentedString(ingestedEventsBytesSum)) .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..628231a7383 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_COUNT_AVG, UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM, UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, @@ -745,6 +746,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_COUNT_AVG = + "infra_storage_mgmt_objects_count_avg"; + private Long infraStorageMgmtObjectsCountAvg; + public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum"; private Long ingestedEventsBytesSum; @@ -4171,6 +4176,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) { this.infraHostTop99p = infraHostTop99p; } + public UsageSummaryDateOrg infraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { + this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg; + return this; + } + + /** + * Shows the average number of storage management objects over all hours in the current date for + * the given org. + * + * @return infraStorageMgmtObjectsCountAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraStorageMgmtObjectsCountAvg() { + return infraStorageMgmtObjectsCountAvg; + } + + public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) { + this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg; + } + public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) { this.ingestedEventsBytesSum = ingestedEventsBytesSum; return this; @@ -7071,6 +7098,9 @@ public boolean equals(Object o) { usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p) && Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p) && Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p) + && Objects.equals( + this.infraStorageMgmtObjectsCountAvg, + usageSummaryDateOrg.infraStorageMgmtObjectsCountAvg) && Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum) && Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum) && Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum) @@ -7453,6 +7483,7 @@ public int hashCode() { infraHostBasicInfraBasicVsphereTop99p, infraHostBasicTop99p, infraHostTop99p, + infraStorageMgmtObjectsCountAvg, ingestedEventsBytesSum, iotDeviceAggSum, iotDeviceTop99pSum, @@ -7891,6 +7922,9 @@ public String toString() { .append(toIndentedString(infraHostBasicTop99p)) .append("\n"); sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n"); + sb.append(" infraStorageMgmtObjectsCountAvg: ") + .append(toIndentedString(infraStorageMgmtObjectsCountAvg)) + .append("\n"); sb.append(" ingestedEventsBytesSum: ") .append(toIndentedString(ingestedEventsBytesSum)) .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..0258a5fdd51 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_COUNT_AVG_SUM, UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM, @@ -787,6 +788,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_COUNT_AVG_SUM = + "infra_storage_mgmt_objects_count_avg_sum"; + private Long infraStorageMgmtObjectsCountAvgSum; + public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM = "ingested_events_bytes_agg_sum"; private Long ingestedEventsBytesAggSum; @@ -4266,6 +4271,29 @@ public void setInfraHostTop99pSum(Long infraHostTop99pSum) { this.infraHostTop99pSum = infraHostTop99pSum; } + public UsageSummaryResponse infraStorageMgmtObjectsCountAvgSum( + Long infraStorageMgmtObjectsCountAvgSum) { + this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum; + return this; + } + + /** + * Shows the average number of storage management objects over all hours in the current month for + * all organizations. + * + * @return infraStorageMgmtObjectsCountAvgSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getInfraStorageMgmtObjectsCountAvgSum() { + return infraStorageMgmtObjectsCountAvgSum; + } + + public void setInfraStorageMgmtObjectsCountAvgSum(Long infraStorageMgmtObjectsCountAvgSum) { + this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum; + } + public UsageSummaryResponse ingestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) { this.ingestedEventsBytesAggSum = ingestedEventsBytesAggSum; return this; @@ -7409,6 +7437,9 @@ public boolean equals(Object o) { && Objects.equals( this.infraHostBasicTop99pSum, usageSummaryResponse.infraHostBasicTop99pSum) && Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum) + && Objects.equals( + this.infraStorageMgmtObjectsCountAvgSum, + usageSummaryResponse.infraStorageMgmtObjectsCountAvgSum) && Objects.equals( this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum) && Objects.equals(this.iotDeviceAggSum, usageSummaryResponse.iotDeviceAggSum) @@ -7830,6 +7861,7 @@ public int hashCode() { infraHostBasicInfraBasicVsphereTop99pSum, infraHostBasicTop99pSum, infraHostTop99pSum, + infraStorageMgmtObjectsCountAvgSum, ingestedEventsBytesAggSum, iotDeviceAggSum, iotDeviceTop99pSum, @@ -8315,6 +8347,9 @@ public String toString() { .append(toIndentedString(infraHostBasicTop99pSum)) .append("\n"); sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n"); + sb.append(" infraStorageMgmtObjectsCountAvgSum: ") + .append(toIndentedString(infraStorageMgmtObjectsCountAvgSum)) + .append("\n"); sb.append(" ingestedEventsBytesAggSum: ") .append(toIndentedString(ingestedEventsBytesAggSum)) .append("\n");