|
126 | 126 | UsageSummaryResponse.JSON_PROPERTY_GCP_HOST_TOP99P_SUM, |
127 | 127 | UsageSummaryResponse.JSON_PROPERTY_HEROKU_HOST_TOP99P_SUM, |
128 | 128 | UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_HWM_SUM, |
| 129 | + UsageSummaryResponse.JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM, |
129 | 130 | UsageSummaryResponse.JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM, |
130 | 131 | UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM, |
131 | 132 | UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM, |
@@ -634,6 +635,10 @@ public class UsageSummaryResponse { |
634 | 635 | "incident_management_monthly_active_users_hwm_sum"; |
635 | 636 | private Long incidentManagementMonthlyActiveUsersHwmSum; |
636 | 637 |
|
| 638 | + public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM = |
| 639 | + "incident_management_seats_hwm_sum"; |
| 640 | + private Long incidentManagementSeatsHwmSum; |
| 641 | + |
637 | 642 | public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM = |
638 | 643 | "indexed_events_count_agg_sum"; |
639 | 644 | private Long indexedEventsCountAggSum; |
@@ -3395,6 +3400,28 @@ public void setIncidentManagementMonthlyActiveUsersHwmSum( |
3395 | 3400 | this.incidentManagementMonthlyActiveUsersHwmSum = incidentManagementMonthlyActiveUsersHwmSum; |
3396 | 3401 | } |
3397 | 3402 |
|
| 3403 | + public UsageSummaryResponse incidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) { |
| 3404 | + this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum; |
| 3405 | + return this; |
| 3406 | + } |
| 3407 | + |
| 3408 | + /** |
| 3409 | + * Shows the sum of the high-water marks of Incident Management seats over all hours in the |
| 3410 | + * current month for all organizations. |
| 3411 | + * |
| 3412 | + * @return incidentManagementSeatsHwmSum |
| 3413 | + */ |
| 3414 | + @jakarta.annotation.Nullable |
| 3415 | + @JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM) |
| 3416 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 3417 | + public Long getIncidentManagementSeatsHwmSum() { |
| 3418 | + return incidentManagementSeatsHwmSum; |
| 3419 | + } |
| 3420 | + |
| 3421 | + public void setIncidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) { |
| 3422 | + this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum; |
| 3423 | + } |
| 3424 | + |
3398 | 3425 | public UsageSummaryResponse indexedEventsCountAggSum(Long indexedEventsCountAggSum) { |
3399 | 3426 | this.indexedEventsCountAggSum = indexedEventsCountAggSum; |
3400 | 3427 | return this; |
@@ -6356,6 +6383,8 @@ public boolean equals(Object o) { |
6356 | 6383 | && Objects.equals( |
6357 | 6384 | this.incidentManagementMonthlyActiveUsersHwmSum, |
6358 | 6385 | usageSummaryResponse.incidentManagementMonthlyActiveUsersHwmSum) |
| 6386 | + && Objects.equals( |
| 6387 | + this.incidentManagementSeatsHwmSum, usageSummaryResponse.incidentManagementSeatsHwmSum) |
6359 | 6388 | && Objects.equals( |
6360 | 6389 | this.indexedEventsCountAggSum, usageSummaryResponse.indexedEventsCountAggSum) |
6361 | 6390 | && Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum) |
@@ -6734,6 +6763,7 @@ public int hashCode() { |
6734 | 6763 | gcpHostTop99pSum, |
6735 | 6764 | herokuHostTop99pSum, |
6736 | 6765 | incidentManagementMonthlyActiveUsersHwmSum, |
| 6766 | + incidentManagementSeatsHwmSum, |
6737 | 6767 | indexedEventsCountAggSum, |
6738 | 6768 | infraHostTop99pSum, |
6739 | 6769 | ingestedEventsBytesAggSum, |
@@ -7129,6 +7159,9 @@ public String toString() { |
7129 | 7159 | sb.append(" incidentManagementMonthlyActiveUsersHwmSum: ") |
7130 | 7160 | .append(toIndentedString(incidentManagementMonthlyActiveUsersHwmSum)) |
7131 | 7161 | .append("\n"); |
| 7162 | + sb.append(" incidentManagementSeatsHwmSum: ") |
| 7163 | + .append(toIndentedString(incidentManagementSeatsHwmSum)) |
| 7164 | + .append("\n"); |
7132 | 7165 | sb.append(" indexedEventsCountAggSum: ") |
7133 | 7166 | .append(toIndentedString(indexedEventsCountAggSum)) |
7134 | 7167 | .append("\n"); |
|
0 commit comments