Skip to content
Merged
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 @@ -21196,6 +21196,11 @@ components:
users over all hours in the current date for all organizations.
format: int64
type: integer
incident_management_seats_hwm:
description: Shows the high-water mark of Incident Management seats over
all hours on the current date for all organizations.
format: int64
type: integer
indexed_events_count_sum:
description: Shows the sum of all log events indexed over all hours in the
current date for all organizations.
Expand Down Expand Up @@ -22312,6 +22317,11 @@ components:
users over all hours in the current date for the given org.
format: int64
type: integer
incident_management_seats_hwm:
description: Shows the high-water mark of Incident Management seats over
all hours on the current date for the given organization.
format: int64
type: integer
indexed_events_count_sum:
deprecated: true
description: Shows the sum of all log events indexed over all hours in the
Expand Down Expand Up @@ -23429,6 +23439,11 @@ components:
active users in the current month for all organizations.
format: int64
type: integer
incident_management_seats_hwm_sum:
description: Shows the sum of the high-water marks of Incident Management
seats over all hours in the current month for all organizations.
format: int64
type: integer
indexed_events_count_agg_sum:
deprecated: true
description: Shows the sum of all log events indexed over all hours in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
UsageSummaryDate.JSON_PROPERTY_GCP_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_HEROKU_HOST_TOP99P,
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_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
Expand Down Expand Up @@ -587,6 +588,10 @@ public class UsageSummaryDate {
"incident_management_monthly_active_users_hwm";
private Long incidentManagementMonthlyActiveUsersHwm;

public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM =
"incident_management_seats_hwm";
private Long incidentManagementSeatsHwm;

public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM = "indexed_events_count_sum";
private Long indexedEventsCountSum;

Expand Down Expand Up @@ -3213,6 +3218,28 @@ public void setIncidentManagementMonthlyActiveUsersHwm(
this.incidentManagementMonthlyActiveUsersHwm = incidentManagementMonthlyActiveUsersHwm;
}

public UsageSummaryDate incidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
return this;
}

/**
* Shows the high-water mark of Incident Management seats over all hours on the current date for
* all organizations.
*
* @return incidentManagementSeatsHwm
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getIncidentManagementSeatsHwm() {
return incidentManagementSeatsHwm;
}

public void setIncidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
}

public UsageSummaryDate indexedEventsCountSum(Long indexedEventsCountSum) {
this.indexedEventsCountSum = indexedEventsCountSum;
return this;
Expand Down Expand Up @@ -5899,6 +5926,8 @@ public boolean equals(Object o) {
&& Objects.equals(
this.incidentManagementMonthlyActiveUsersHwm,
usageSummaryDate.incidentManagementMonthlyActiveUsersHwm)
&& Objects.equals(
this.incidentManagementSeatsHwm, usageSummaryDate.incidentManagementSeatsHwm)
&& Objects.equals(this.indexedEventsCountSum, usageSummaryDate.indexedEventsCountSum)
&& Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p)
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum)
Expand Down Expand Up @@ -6220,6 +6249,7 @@ public int hashCode() {
gcpHostTop99p,
herokuHostTop99p,
incidentManagementMonthlyActiveUsersHwm,
incidentManagementSeatsHwm,
indexedEventsCountSum,
infraHostTop99p,
ingestedEventsBytesSum,
Expand Down Expand Up @@ -6570,6 +6600,9 @@ public String toString() {
sb.append(" incidentManagementMonthlyActiveUsersHwm: ")
.append(toIndentedString(incidentManagementMonthlyActiveUsersHwm))
.append("\n");
sb.append(" incidentManagementSeatsHwm: ")
.append(toIndentedString(incidentManagementSeatsHwm))
.append("\n");
sb.append(" indexedEventsCountSum: ")
.append(toIndentedString(indexedEventsCountSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_HEROKU_HOST_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_ID,
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_HOST_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
Expand Down Expand Up @@ -603,6 +604,10 @@ public class UsageSummaryDateOrg {
"incident_management_monthly_active_users_hwm";
private Long incidentManagementMonthlyActiveUsersHwm;

public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM =
"incident_management_seats_hwm";
private Long incidentManagementSeatsHwm;

public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_SUM = "indexed_events_count_sum";
private Long indexedEventsCountSum;

Expand Down Expand Up @@ -3317,6 +3322,28 @@ public void setIncidentManagementMonthlyActiveUsersHwm(
this.incidentManagementMonthlyActiveUsersHwm = incidentManagementMonthlyActiveUsersHwm;
}

public UsageSummaryDateOrg incidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
return this;
}

/**
* Shows the high-water mark of Incident Management seats over all hours on the current date for
* the given organization.
*
* @return incidentManagementSeatsHwm
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getIncidentManagementSeatsHwm() {
return incidentManagementSeatsHwm;
}

public void setIncidentManagementSeatsHwm(Long incidentManagementSeatsHwm) {
this.incidentManagementSeatsHwm = incidentManagementSeatsHwm;
}

public UsageSummaryDateOrg indexedEventsCountSum(Long indexedEventsCountSum) {
this.indexedEventsCountSum = indexedEventsCountSum;
return this;
Expand Down Expand Up @@ -6049,6 +6076,8 @@ public boolean equals(Object o) {
&& Objects.equals(
this.incidentManagementMonthlyActiveUsersHwm,
usageSummaryDateOrg.incidentManagementMonthlyActiveUsersHwm)
&& Objects.equals(
this.incidentManagementSeatsHwm, usageSummaryDateOrg.incidentManagementSeatsHwm)
&& Objects.equals(this.indexedEventsCountSum, usageSummaryDateOrg.indexedEventsCountSum)
&& Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p)
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum)
Expand Down Expand Up @@ -6387,6 +6416,7 @@ public int hashCode() {
herokuHostTop99p,
id,
incidentManagementMonthlyActiveUsersHwm,
incidentManagementSeatsHwm,
indexedEventsCountSum,
infraHostTop99p,
ingestedEventsBytesSum,
Expand Down Expand Up @@ -6745,6 +6775,9 @@ public String toString() {
sb.append(" incidentManagementMonthlyActiveUsersHwm: ")
.append(toIndentedString(incidentManagementMonthlyActiveUsersHwm))
.append("\n");
sb.append(" incidentManagementSeatsHwm: ")
.append(toIndentedString(incidentManagementSeatsHwm))
.append("\n");
sb.append(" indexedEventsCountSum: ")
.append(toIndentedString(indexedEventsCountSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
UsageSummaryResponse.JSON_PROPERTY_GCP_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_HEROKU_HOST_TOP99P_SUM,
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_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM,
Expand Down Expand Up @@ -634,6 +635,10 @@ public class UsageSummaryResponse {
"incident_management_monthly_active_users_hwm_sum";
private Long incidentManagementMonthlyActiveUsersHwmSum;

public static final String JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM =
"incident_management_seats_hwm_sum";
private Long incidentManagementSeatsHwmSum;

public static final String JSON_PROPERTY_INDEXED_EVENTS_COUNT_AGG_SUM =
"indexed_events_count_agg_sum";
private Long indexedEventsCountAggSum;
Expand Down Expand Up @@ -3395,6 +3400,28 @@ public void setIncidentManagementMonthlyActiveUsersHwmSum(
this.incidentManagementMonthlyActiveUsersHwmSum = incidentManagementMonthlyActiveUsersHwmSum;
}

public UsageSummaryResponse incidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) {
this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum;
return this;
}

/**
* Shows the sum of the high-water marks of Incident Management seats over all hours in the
* current month for all organizations.
*
* @return incidentManagementSeatsHwmSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INCIDENT_MANAGEMENT_SEATS_HWM_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getIncidentManagementSeatsHwmSum() {
return incidentManagementSeatsHwmSum;
}

public void setIncidentManagementSeatsHwmSum(Long incidentManagementSeatsHwmSum) {
this.incidentManagementSeatsHwmSum = incidentManagementSeatsHwmSum;
}

public UsageSummaryResponse indexedEventsCountAggSum(Long indexedEventsCountAggSum) {
this.indexedEventsCountAggSum = indexedEventsCountAggSum;
return this;
Expand Down Expand Up @@ -6356,6 +6383,8 @@ public boolean equals(Object o) {
&& Objects.equals(
this.incidentManagementMonthlyActiveUsersHwmSum,
usageSummaryResponse.incidentManagementMonthlyActiveUsersHwmSum)
&& Objects.equals(
this.incidentManagementSeatsHwmSum, usageSummaryResponse.incidentManagementSeatsHwmSum)
&& Objects.equals(
this.indexedEventsCountAggSum, usageSummaryResponse.indexedEventsCountAggSum)
&& Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum)
Expand Down Expand Up @@ -6734,6 +6763,7 @@ public int hashCode() {
gcpHostTop99pSum,
herokuHostTop99pSum,
incidentManagementMonthlyActiveUsersHwmSum,
incidentManagementSeatsHwmSum,
indexedEventsCountAggSum,
infraHostTop99pSum,
ingestedEventsBytesAggSum,
Expand Down Expand Up @@ -7129,6 +7159,9 @@ public String toString() {
sb.append(" incidentManagementMonthlyActiveUsersHwmSum: ")
.append(toIndentedString(incidentManagementMonthlyActiveUsersHwmSum))
.append("\n");
sb.append(" incidentManagementSeatsHwmSum: ")
.append(toIndentedString(incidentManagementSeatsHwmSum))
.append("\n");
sb.append(" indexedEventsCountAggSum: ")
.append(toIndentedString(indexedEventsCountAggSum))
.append("\n");
Expand Down
Loading