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 @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -6421,6 +6451,7 @@ public int hashCode() {
incidentManagementMonthlyActiveUsersHwm,
incidentManagementSeatsHwm,
indexedEventsCountSum,
infraEdgeMonitoringDevicesTop99p,
infraHostTop99p,
ingestedEventsBytesSum,
iotDeviceSum,
Expand Down Expand Up @@ -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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -6591,6 +6622,7 @@ public int hashCode() {
incidentManagementMonthlyActiveUsersHwm,
incidentManagementSeatsHwm,
indexedEventsCountSum,
infraEdgeMonitoringDevicesTop99p,
infraHostTop99p,
ingestedEventsBytesSum,
iotDeviceAggSum,
Expand Down Expand Up @@ -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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -6939,6 +6970,7 @@ public int hashCode() {
incidentManagementMonthlyActiveUsersHwmSum,
incidentManagementSeatsHwmSum,
indexedEventsCountAggSum,
infraEdgeMonitoringDevicesTop99pSum,
infraHostTop99pSum,
ingestedEventsBytesAggSum,
iotDeviceAggSum,
Expand Down Expand Up @@ -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))
Expand Down
Loading