From 1cc11ab21144208d428da8c62f484292fdff27d6 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 3 Mar 2026 14:45:13 +0000 Subject: [PATCH] Regenerate client from commit 4c7bafd of spec repo --- .generator/schemas/v1/openapi.yaml | 15 ++++++++++ .../api/client/v1/model/UsageSummaryDate.java | 29 +++++++++++++++++++ .../client/v1/model/UsageSummaryDateOrg.java | 29 +++++++++++++++++++ .../client/v1/model/UsageSummaryResponse.java | 29 +++++++++++++++++++ 4 files changed, 102 insertions(+) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 48f45d0bc2b..78cb683bb01 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -22026,6 +22026,11 @@ components: wireless devices over all hours in the current date for all organizations. format: int64 type: integer + network_path_sum: + description: Shows the sum of all Network Path scheduled tests over all + hours in the current date for all organizations. + format: int64 + type: integer npm_host_top99p: description: Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current @@ -23178,6 +23183,11 @@ components: wireless devices over all hours in the current date for the given org. format: int64 type: integer + network_path_sum: + description: Shows the sum of all Network Path scheduled tests over all + hours in the current date for the given org. + format: int64 + type: integer npm_host_top99p: description: Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current @@ -24351,6 +24361,11 @@ components: wireless devices over all hours in the current month for all organizations. format: int64 type: integer + network_path_sum_sum: + description: Shows the sum of all Network Path scheduled tests over all + hours in the current month for all organizations. + format: int64 + type: integer npm_host_top99p_sum: description: Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current 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..319316ddaba 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 @@ -143,6 +143,7 @@ UsageSummaryDate.JSON_PROPERTY_NDM_NETFLOW_EVENTS_SUM, UsageSummaryDate.JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_SUM, UsageSummaryDate.JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P, + UsageSummaryDate.JSON_PROPERTY_NETWORK_PATH_SUM, UsageSummaryDate.JSON_PROPERTY_NPM_HOST_TOP99P, UsageSummaryDate.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM, UsageSummaryDate.JSON_PROPERTY_OCI_HOST_SUM, @@ -678,6 +679,9 @@ public class UsageSummaryDate { "network_device_wireless_top99p"; private Long networkDeviceWirelessTop99p; + public static final String JSON_PROPERTY_NETWORK_PATH_SUM = "network_path_sum"; + private Long networkPathSum; + public static final String JSON_PROPERTY_NPM_HOST_TOP99P = "npm_host_top99p"; private Long npmHostTop99p; @@ -3778,6 +3782,28 @@ public void setNetworkDeviceWirelessTop99p(Long networkDeviceWirelessTop99p) { this.networkDeviceWirelessTop99p = networkDeviceWirelessTop99p; } + public UsageSummaryDate networkPathSum(Long networkPathSum) { + this.networkPathSum = networkPathSum; + return this; + } + + /** + * Shows the sum of all Network Path scheduled tests over all hours in the current date for all + * organizations. + * + * @return networkPathSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_NETWORK_PATH_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getNetworkPathSum() { + return networkPathSum; + } + + public void setNetworkPathSum(Long networkPathSum) { + this.networkPathSum = networkPathSum; + } + public UsageSummaryDate npmHostTop99p(Long npmHostTop99p) { this.npmHostTop99p = npmHostTop99p; return this; @@ -6120,6 +6146,7 @@ public boolean equals(Object o) { this.netflowIndexedEventsCountSum, usageSummaryDate.netflowIndexedEventsCountSum) && Objects.equals( this.networkDeviceWirelessTop99p, usageSummaryDate.networkDeviceWirelessTop99p) + && Objects.equals(this.networkPathSum, usageSummaryDate.networkPathSum) && Objects.equals(this.npmHostTop99p, usageSummaryDate.npmHostTop99p) && Objects.equals( this.observabilityPipelinesBytesProcessedSum, @@ -6438,6 +6465,7 @@ public int hashCode() { ndmNetflowEventsSum, netflowIndexedEventsCountSum, networkDeviceWirelessTop99p, + networkPathSum, npmHostTop99p, observabilityPipelinesBytesProcessedSum, ociHostSum, @@ -6833,6 +6861,7 @@ public String toString() { sb.append(" networkDeviceWirelessTop99p: ") .append(toIndentedString(networkDeviceWirelessTop99p)) .append("\n"); + sb.append(" networkPathSum: ").append(toIndentedString(networkPathSum)).append("\n"); sb.append(" npmHostTop99p: ").append(toIndentedString(npmHostTop99p)).append("\n"); sb.append(" observabilityPipelinesBytesProcessedSum: ") .append(toIndentedString(observabilityPipelinesBytesProcessedSum)) 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..b09c5f6eb87 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 @@ -145,6 +145,7 @@ UsageSummaryDateOrg.JSON_PROPERTY_NDM_NETFLOW_EVENTS_SUM, UsageSummaryDateOrg.JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_SUM, UsageSummaryDateOrg.JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P, + UsageSummaryDateOrg.JSON_PROPERTY_NETWORK_PATH_SUM, UsageSummaryDateOrg.JSON_PROPERTY_NPM_HOST_TOP99P, UsageSummaryDateOrg.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM, UsageSummaryDateOrg.JSON_PROPERTY_OCI_HOST_SUM, @@ -697,6 +698,9 @@ public class UsageSummaryDateOrg { "network_device_wireless_top99p"; private Long networkDeviceWirelessTop99p; + public static final String JSON_PROPERTY_NETWORK_PATH_SUM = "network_path_sum"; + private Long networkPathSum; + public static final String JSON_PROPERTY_NPM_HOST_TOP99P = "npm_host_top99p"; private Long npmHostTop99p; @@ -3906,6 +3910,28 @@ public void setNetworkDeviceWirelessTop99p(Long networkDeviceWirelessTop99p) { this.networkDeviceWirelessTop99p = networkDeviceWirelessTop99p; } + public UsageSummaryDateOrg networkPathSum(Long networkPathSum) { + this.networkPathSum = networkPathSum; + return this; + } + + /** + * Shows the sum of all Network Path scheduled tests over all hours in the current date for the + * given org. + * + * @return networkPathSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_NETWORK_PATH_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getNetworkPathSum() { + return networkPathSum; + } + + public void setNetworkPathSum(Long networkPathSum) { + this.networkPathSum = networkPathSum; + } + public UsageSummaryDateOrg npmHostTop99p(Long npmHostTop99p) { this.npmHostTop99p = npmHostTop99p; return this; @@ -6277,6 +6303,7 @@ public boolean equals(Object o) { this.netflowIndexedEventsCountSum, usageSummaryDateOrg.netflowIndexedEventsCountSum) && Objects.equals( this.networkDeviceWirelessTop99p, usageSummaryDateOrg.networkDeviceWirelessTop99p) + && Objects.equals(this.networkPathSum, usageSummaryDateOrg.networkPathSum) && Objects.equals(this.npmHostTop99p, usageSummaryDateOrg.npmHostTop99p) && Objects.equals( this.observabilityPipelinesBytesProcessedSum, @@ -6609,6 +6636,7 @@ public int hashCode() { ndmNetflowEventsSum, netflowIndexedEventsCountSum, networkDeviceWirelessTop99p, + networkPathSum, npmHostTop99p, observabilityPipelinesBytesProcessedSum, ociHostSum, @@ -7012,6 +7040,7 @@ public String toString() { sb.append(" networkDeviceWirelessTop99p: ") .append(toIndentedString(networkDeviceWirelessTop99p)) .append("\n"); + sb.append(" networkPathSum: ").append(toIndentedString(networkPathSum)).append("\n"); sb.append(" npmHostTop99p: ").append(toIndentedString(npmHostTop99p)).append("\n"); sb.append(" observabilityPipelinesBytesProcessedSum: ") .append(toIndentedString(observabilityPipelinesBytesProcessedSum)) 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..51ad1e8184c 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 @@ -153,6 +153,7 @@ UsageSummaryResponse.JSON_PROPERTY_NDM_NETFLOW_EVENTS_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_NETFLOW_INDEXED_EVENTS_COUNT_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_NETWORK_DEVICE_WIRELESS_TOP99P_SUM, + UsageSummaryResponse.JSON_PROPERTY_NETWORK_PATH_SUM_SUM, UsageSummaryResponse.JSON_PROPERTY_NPM_HOST_TOP99P_SUM, UsageSummaryResponse.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_OCI_HOST_AGG_SUM, @@ -742,6 +743,9 @@ public class UsageSummaryResponse { "network_device_wireless_top99p_sum"; private Long networkDeviceWirelessTop99pSum; + public static final String JSON_PROPERTY_NETWORK_PATH_SUM_SUM = "network_path_sum_sum"; + private Long networkPathSumSum; + public static final String JSON_PROPERTY_NPM_HOST_TOP99P_SUM = "npm_host_top99p_sum"; private Long npmHostTop99pSum; @@ -4060,6 +4064,28 @@ public void setNetworkDeviceWirelessTop99pSum(Long networkDeviceWirelessTop99pSu this.networkDeviceWirelessTop99pSum = networkDeviceWirelessTop99pSum; } + public UsageSummaryResponse networkPathSumSum(Long networkPathSumSum) { + this.networkPathSumSum = networkPathSumSum; + return this; + } + + /** + * Shows the sum of all Network Path scheduled tests over all hours in the current month for all + * organizations. + * + * @return networkPathSumSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_NETWORK_PATH_SUM_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getNetworkPathSumSum() { + return networkPathSumSum; + } + + public void setNetworkPathSumSum(Long networkPathSumSum) { + this.networkPathSumSum = networkPathSumSum; + } + public UsageSummaryResponse npmHostTop99pSum(Long npmHostTop99pSum) { this.npmHostTop99pSum = npmHostTop99pSum; return this; @@ -6598,6 +6624,7 @@ public boolean equals(Object o) { && Objects.equals( this.networkDeviceWirelessTop99pSum, usageSummaryResponse.networkDeviceWirelessTop99pSum) + && Objects.equals(this.networkPathSumSum, usageSummaryResponse.networkPathSumSum) && Objects.equals(this.npmHostTop99pSum, usageSummaryResponse.npmHostTop99pSum) && Objects.equals( this.observabilityPipelinesBytesProcessedAggSum, @@ -6960,6 +6987,7 @@ public int hashCode() { ndmNetflowEventsAggSum, netflowIndexedEventsCountAggSum, networkDeviceWirelessTop99pSum, + networkPathSumSum, npmHostTop99pSum, observabilityPipelinesBytesProcessedAggSum, ociHostAggSum, @@ -7406,6 +7434,7 @@ public String toString() { sb.append(" networkDeviceWirelessTop99pSum: ") .append(toIndentedString(networkDeviceWirelessTop99pSum)) .append("\n"); + sb.append(" networkPathSumSum: ").append(toIndentedString(networkPathSumSum)).append("\n"); sb.append(" npmHostTop99pSum: ").append(toIndentedString(npmHostTop99pSum)).append("\n"); sb.append(" observabilityPipelinesBytesProcessedAggSum: ") .append(toIndentedString(observabilityPipelinesBytesProcessedAggSum))