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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-18 16:20:36.363534",
"spec_repo_commit": "78376979"
"regenerated": "2025-03-20 15:01:18.145313",
"spec_repo_commit": "0f5c928e"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-18 16:20:36.379301",
"spec_repo_commit": "78376979"
"regenerated": "2025-03-20 15:01:18.161824",
"spec_repo_commit": "0f5c928e"
}
}
}
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20315,6 +20315,11 @@ components:
Plus over all hours in the current date for the given org.
format: int64
type: integer
error_tracking_apm_error_events_sum:
description: Shows the sum of all Error Tracking APM error events over all
hours in the current date for the given org.
format: int64
type: integer
error_tracking_error_events_sum:
description: Shows the sum of all Error Tracking error events over all hours
in the current date for the given org.
Expand Down Expand Up @@ -21200,6 +21205,11 @@ components:
Plus over all hours in the current date for the given org.
format: int64
type: integer
error_tracking_apm_error_events_sum:
description: Shows the sum of all Error Tracking APM error events over all
hours in the current date for the given org.
format: int64
type: integer
error_tracking_error_events_sum:
description: Shows the sum of all Error Tracking error events over all hours
in the current date for the given org.
Expand Down Expand Up @@ -22090,6 +22100,11 @@ components:
Plus over all hours in the current month for all organizations.
format: int64
type: integer
error_tracking_apm_error_events_agg_sum:
description: Shows the sum of all Error Tracking APM error events over all
hours in the current month for all organizations.
format: int64
type: integer
error_tracking_error_events_agg_sum:
description: Shows the sum of all Error Tracking error events over all hours
in the current month for all organizations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
UsageSummaryDate.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_SUM,
UsageSummaryDate.JSON_PROPERTY_EPH_INFRA_HOST_PRO_SUM,
UsageSummaryDate.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_SUM,
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM,
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM,
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM,
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM,
Expand Down Expand Up @@ -438,6 +439,10 @@ public class UsageSummaryDate {
"eph_infra_host_proplus_sum";
private Long ephInfraHostProplusSum;

public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM =
"error_tracking_apm_error_events_sum";
private Long errorTrackingApmErrorEventsSum;

public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM =
"error_tracking_error_events_sum";
private Long errorTrackingErrorEventsSum;
Expand Down Expand Up @@ -2376,6 +2381,28 @@ public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) {
this.ephInfraHostProplusSum = ephInfraHostProplusSum;
}

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

/**
* Shows the sum of all Error Tracking APM error events over all hours in the current date for the
* given org.
*
* @return errorTrackingApmErrorEventsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getErrorTrackingApmErrorEventsSum() {
return errorTrackingApmErrorEventsSum;
}

public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
}

public UsageSummaryDate errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) {
this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum;
return this;
Expand Down Expand Up @@ -4605,6 +4632,8 @@ public boolean equals(Object o) {
this.ephInfraHostOpentelemetrySum, usageSummaryDate.ephInfraHostOpentelemetrySum)
&& Objects.equals(this.ephInfraHostProSum, usageSummaryDate.ephInfraHostProSum)
&& Objects.equals(this.ephInfraHostProplusSum, usageSummaryDate.ephInfraHostProplusSum)
&& Objects.equals(
this.errorTrackingApmErrorEventsSum, usageSummaryDate.errorTrackingApmErrorEventsSum)
&& Objects.equals(
this.errorTrackingErrorEventsSum, usageSummaryDate.errorTrackingErrorEventsSum)
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDate.errorTrackingEventsSum)
Expand Down Expand Up @@ -4848,6 +4877,7 @@ public int hashCode() {
ephInfraHostOpentelemetrySum,
ephInfraHostProSum,
ephInfraHostProplusSum,
errorTrackingApmErrorEventsSum,
errorTrackingErrorEventsSum,
errorTrackingEventsSum,
errorTrackingRumErrorEventsSum,
Expand Down Expand Up @@ -5109,6 +5139,9 @@ public String toString() {
sb.append(" ephInfraHostProplusSum: ")
.append(toIndentedString(ephInfraHostProplusSum))
.append("\n");
sb.append(" errorTrackingApmErrorEventsSum: ")
.append(toIndentedString(errorTrackingApmErrorEventsSum))
.append("\n");
sb.append(" errorTrackingErrorEventsSum: ")
.append(toIndentedString(errorTrackingErrorEventsSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_EPH_INFRA_HOST_PRO_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM,
Expand Down Expand Up @@ -450,6 +451,10 @@ public class UsageSummaryDateOrg {
"eph_infra_host_proplus_sum";
private Long ephInfraHostProplusSum;

public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM =
"error_tracking_apm_error_events_sum";
private Long errorTrackingApmErrorEventsSum;

public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM =
"error_tracking_error_events_sum";
private Long errorTrackingErrorEventsSum;
Expand Down Expand Up @@ -2460,6 +2465,28 @@ public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) {
this.ephInfraHostProplusSum = ephInfraHostProplusSum;
}

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

/**
* Shows the sum of all Error Tracking APM error events over all hours in the current date for the
* given org.
*
* @return errorTrackingApmErrorEventsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getErrorTrackingApmErrorEventsSum() {
return errorTrackingApmErrorEventsSum;
}

public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
}

public UsageSummaryDateOrg errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) {
this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum;
return this;
Expand Down Expand Up @@ -4749,6 +4776,8 @@ public boolean equals(Object o) {
this.ephInfraHostOpentelemetrySum, usageSummaryDateOrg.ephInfraHostOpentelemetrySum)
&& Objects.equals(this.ephInfraHostProSum, usageSummaryDateOrg.ephInfraHostProSum)
&& Objects.equals(this.ephInfraHostProplusSum, usageSummaryDateOrg.ephInfraHostProplusSum)
&& Objects.equals(
this.errorTrackingApmErrorEventsSum, usageSummaryDateOrg.errorTrackingApmErrorEventsSum)
&& Objects.equals(
this.errorTrackingErrorEventsSum, usageSummaryDateOrg.errorTrackingErrorEventsSum)
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDateOrg.errorTrackingEventsSum)
Expand Down Expand Up @@ -5010,6 +5039,7 @@ public int hashCode() {
ephInfraHostOpentelemetrySum,
ephInfraHostProSum,
ephInfraHostProplusSum,
errorTrackingApmErrorEventsSum,
errorTrackingErrorEventsSum,
errorTrackingEventsSum,
errorTrackingRumErrorEventsSum,
Expand Down Expand Up @@ -5279,6 +5309,9 @@ public String toString() {
sb.append(" ephInfraHostProplusSum: ")
.append(toIndentedString(ephInfraHostProplusSum))
.append("\n");
sb.append(" errorTrackingApmErrorEventsSum: ")
.append(toIndentedString(errorTrackingApmErrorEventsSum))
.append("\n");
sb.append(" errorTrackingErrorEventsSum: ")
.append(toIndentedString(errorTrackingErrorEventsSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PRO_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_EVENTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_AGG_SUM,
Expand Down Expand Up @@ -476,6 +477,10 @@ public class UsageSummaryResponse {
"eph_infra_host_proplus_agg_sum";
private Long ephInfraHostProplusAggSum;

public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM =
"error_tracking_apm_error_events_agg_sum";
private Long errorTrackingApmErrorEventsAggSum;

public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM =
"error_tracking_error_events_agg_sum";
private Long errorTrackingErrorEventsAggSum;
Expand Down Expand Up @@ -2538,6 +2543,29 @@ public void setEphInfraHostProplusAggSum(Long ephInfraHostProplusAggSum) {
this.ephInfraHostProplusAggSum = ephInfraHostProplusAggSum;
}

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

/**
* Shows the sum of all Error Tracking APM error events over all hours in the current month for
* all organizations.
*
* @return errorTrackingApmErrorEventsAggSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getErrorTrackingApmErrorEventsAggSum() {
return errorTrackingApmErrorEventsAggSum;
}

public void setErrorTrackingApmErrorEventsAggSum(Long errorTrackingApmErrorEventsAggSum) {
this.errorTrackingApmErrorEventsAggSum = errorTrackingApmErrorEventsAggSum;
}

public UsageSummaryResponse errorTrackingErrorEventsAggSum(Long errorTrackingErrorEventsAggSum) {
this.errorTrackingErrorEventsAggSum = errorTrackingErrorEventsAggSum;
return this;
Expand Down Expand Up @@ -5018,6 +5046,9 @@ public boolean equals(Object o) {
&& Objects.equals(this.ephInfraHostProAggSum, usageSummaryResponse.ephInfraHostProAggSum)
&& Objects.equals(
this.ephInfraHostProplusAggSum, usageSummaryResponse.ephInfraHostProplusAggSum)
&& Objects.equals(
this.errorTrackingApmErrorEventsAggSum,
usageSummaryResponse.errorTrackingApmErrorEventsAggSum)
&& Objects.equals(
this.errorTrackingErrorEventsAggSum,
usageSummaryResponse.errorTrackingErrorEventsAggSum)
Expand Down Expand Up @@ -5319,6 +5350,7 @@ public int hashCode() {
ephInfraHostOpentelemetryApmAggSum,
ephInfraHostProAggSum,
ephInfraHostProplusAggSum,
errorTrackingApmErrorEventsAggSum,
errorTrackingErrorEventsAggSum,
errorTrackingEventsAggSum,
errorTrackingRumErrorEventsAggSum,
Expand Down Expand Up @@ -5619,6 +5651,9 @@ public String toString() {
sb.append(" ephInfraHostProplusAggSum: ")
.append(toIndentedString(ephInfraHostProplusAggSum))
.append("\n");
sb.append(" errorTrackingApmErrorEventsAggSum: ")
.append(toIndentedString(errorTrackingApmErrorEventsAggSum))
.append("\n");
sb.append(" errorTrackingErrorEventsAggSum: ")
.append(toIndentedString(errorTrackingErrorEventsAggSum))
.append("\n");
Expand Down