Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -6438,6 +6465,7 @@ public int hashCode() {
ndmNetflowEventsSum,
netflowIndexedEventsCountSum,
networkDeviceWirelessTop99p,
networkPathSum,
npmHostTop99p,
observabilityPipelinesBytesProcessedSum,
ociHostSum,
Expand Down Expand Up @@ -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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -6609,6 +6636,7 @@ public int hashCode() {
ndmNetflowEventsSum,
netflowIndexedEventsCountSum,
networkDeviceWirelessTop99p,
networkPathSum,
npmHostTop99p,
observabilityPipelinesBytesProcessedSum,
ociHostSum,
Expand Down Expand Up @@ -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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -6960,6 +6987,7 @@ public int hashCode() {
ndmNetflowEventsAggSum,
netflowIndexedEventsCountAggSum,
networkDeviceWirelessTop99pSum,
networkPathSumSum,
npmHostTop99pSum,
observabilityPipelinesBytesProcessedAggSum,
ociHostAggSum,
Expand Down Expand Up @@ -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))
Expand Down
Loading