|
36 | 36 | UsageSummaryDate.JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM, |
37 | 37 | UsageSummaryDate.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P, |
38 | 38 | UsageSummaryDate.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM, |
| 39 | + UsageSummaryDate.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM, |
39 | 40 | UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM, |
40 | 41 | UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM, |
41 | 42 | UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM, |
|
139 | 140 | UsageSummaryDate.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM, |
140 | 141 | UsageSummaryDate.JSON_PROPERTY_OCI_HOST_SUM, |
141 | 142 | UsageSummaryDate.JSON_PROPERTY_OCI_HOST_TOP99P, |
| 143 | + UsageSummaryDate.JSON_PROPERTY_ON_CALL_SEAT_HWM, |
142 | 144 | UsageSummaryDate.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM, |
143 | 145 | UsageSummaryDate.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P, |
144 | 146 | UsageSummaryDate.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P, |
@@ -281,6 +283,10 @@ public class UsageSummaryDate { |
281 | 283 | "billable_ingested_bytes_sum"; |
282 | 284 | private Long billableIngestedBytesSum; |
283 | 285 |
|
| 286 | + public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM = |
| 287 | + "bits_ai_investigations_sum"; |
| 288 | + private Long bitsAiInvestigationsSum; |
| 289 | + |
284 | 290 | public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM = |
285 | 291 | "browser_rum_lite_session_count_sum"; |
286 | 292 | private Long browserRumLiteSessionCountSum; |
@@ -648,6 +654,9 @@ public class UsageSummaryDate { |
648 | 654 | public static final String JSON_PROPERTY_OCI_HOST_TOP99P = "oci_host_top99p"; |
649 | 655 | private Long ociHostTop99p; |
650 | 656 |
|
| 657 | + public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM = "on_call_seat_hwm"; |
| 658 | + private Long onCallSeatHwm; |
| 659 | + |
651 | 660 | public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM = |
652 | 661 | "online_archive_events_count_sum"; |
653 | 662 | private Long onlineArchiveEventsCountSum; |
@@ -1307,6 +1316,28 @@ public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) { |
1307 | 1316 | this.billableIngestedBytesSum = billableIngestedBytesSum; |
1308 | 1317 | } |
1309 | 1318 |
|
| 1319 | + public UsageSummaryDate bitsAiInvestigationsSum(Long bitsAiInvestigationsSum) { |
| 1320 | + this.bitsAiInvestigationsSum = bitsAiInvestigationsSum; |
| 1321 | + return this; |
| 1322 | + } |
| 1323 | + |
| 1324 | + /** |
| 1325 | + * Shows the sum of all Bits AI Investigations over all hours in the current date for all |
| 1326 | + * organizations. |
| 1327 | + * |
| 1328 | + * @return bitsAiInvestigationsSum |
| 1329 | + */ |
| 1330 | + @jakarta.annotation.Nullable |
| 1331 | + @JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM) |
| 1332 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1333 | + public Long getBitsAiInvestigationsSum() { |
| 1334 | + return bitsAiInvestigationsSum; |
| 1335 | + } |
| 1336 | + |
| 1337 | + public void setBitsAiInvestigationsSum(Long bitsAiInvestigationsSum) { |
| 1338 | + this.bitsAiInvestigationsSum = bitsAiInvestigationsSum; |
| 1339 | + } |
| 1340 | + |
1310 | 1341 | public UsageSummaryDate browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) { |
1311 | 1342 | this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum; |
1312 | 1343 | return this; |
@@ -3639,6 +3670,28 @@ public void setOciHostTop99p(Long ociHostTop99p) { |
3639 | 3670 | this.ociHostTop99p = ociHostTop99p; |
3640 | 3671 | } |
3641 | 3672 |
|
| 3673 | + public UsageSummaryDate onCallSeatHwm(Long onCallSeatHwm) { |
| 3674 | + this.onCallSeatHwm = onCallSeatHwm; |
| 3675 | + return this; |
| 3676 | + } |
| 3677 | + |
| 3678 | + /** |
| 3679 | + * Shows the high-water mark of On-Call seats over all hours in the current date for all |
| 3680 | + * organizations. |
| 3681 | + * |
| 3682 | + * @return onCallSeatHwm |
| 3683 | + */ |
| 3684 | + @jakarta.annotation.Nullable |
| 3685 | + @JsonProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM) |
| 3686 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 3687 | + public Long getOnCallSeatHwm() { |
| 3688 | + return onCallSeatHwm; |
| 3689 | + } |
| 3690 | + |
| 3691 | + public void setOnCallSeatHwm(Long onCallSeatHwm) { |
| 3692 | + this.onCallSeatHwm = onCallSeatHwm; |
| 3693 | + } |
| 3694 | + |
3642 | 3695 | public UsageSummaryDate onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) { |
3643 | 3696 | this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum; |
3644 | 3697 | return this; |
@@ -5647,6 +5700,7 @@ public boolean equals(Object o) { |
5647 | 5700 | && Objects.equals(this.awsLambdaInvocationsSum, usageSummaryDate.awsLambdaInvocationsSum) |
5648 | 5701 | && Objects.equals(this.azureAppServiceTop99p, usageSummaryDate.azureAppServiceTop99p) |
5649 | 5702 | && Objects.equals(this.billableIngestedBytesSum, usageSummaryDate.billableIngestedBytesSum) |
| 5703 | + && Objects.equals(this.bitsAiInvestigationsSum, usageSummaryDate.bitsAiInvestigationsSum) |
5650 | 5704 | && Objects.equals( |
5651 | 5705 | this.browserRumLiteSessionCountSum, usageSummaryDate.browserRumLiteSessionCountSum) |
5652 | 5706 | && Objects.equals( |
@@ -5819,6 +5873,7 @@ public boolean equals(Object o) { |
5819 | 5873 | usageSummaryDate.observabilityPipelinesBytesProcessedSum) |
5820 | 5874 | && Objects.equals(this.ociHostSum, usageSummaryDate.ociHostSum) |
5821 | 5875 | && Objects.equals(this.ociHostTop99p, usageSummaryDate.ociHostTop99p) |
| 5876 | + && Objects.equals(this.onCallSeatHwm, usageSummaryDate.onCallSeatHwm) |
5822 | 5877 | && Objects.equals( |
5823 | 5878 | this.onlineArchiveEventsCountSum, usageSummaryDate.onlineArchiveEventsCountSum) |
5824 | 5879 | && Objects.equals( |
@@ -6021,6 +6076,7 @@ public int hashCode() { |
6021 | 6076 | awsLambdaInvocationsSum, |
6022 | 6077 | azureAppServiceTop99p, |
6023 | 6078 | billableIngestedBytesSum, |
| 6079 | + bitsAiInvestigationsSum, |
6024 | 6080 | browserRumLiteSessionCountSum, |
6025 | 6081 | browserRumReplaySessionCountSum, |
6026 | 6082 | browserRumUnitsSum, |
@@ -6124,6 +6180,7 @@ public int hashCode() { |
6124 | 6180 | observabilityPipelinesBytesProcessedSum, |
6125 | 6181 | ociHostSum, |
6126 | 6182 | ociHostTop99p, |
| 6183 | + onCallSeatHwm, |
6127 | 6184 | onlineArchiveEventsCountSum, |
6128 | 6185 | opentelemetryApmHostTop99p, |
6129 | 6186 | opentelemetryHostTop99p, |
@@ -6247,6 +6304,9 @@ public String toString() { |
6247 | 6304 | sb.append(" billableIngestedBytesSum: ") |
6248 | 6305 | .append(toIndentedString(billableIngestedBytesSum)) |
6249 | 6306 | .append("\n"); |
| 6307 | + sb.append(" bitsAiInvestigationsSum: ") |
| 6308 | + .append(toIndentedString(bitsAiInvestigationsSum)) |
| 6309 | + .append("\n"); |
6250 | 6310 | sb.append(" browserRumLiteSessionCountSum: ") |
6251 | 6311 | .append(toIndentedString(browserRumLiteSessionCountSum)) |
6252 | 6312 | .append("\n"); |
@@ -6494,6 +6554,7 @@ public String toString() { |
6494 | 6554 | .append("\n"); |
6495 | 6555 | sb.append(" ociHostSum: ").append(toIndentedString(ociHostSum)).append("\n"); |
6496 | 6556 | sb.append(" ociHostTop99p: ").append(toIndentedString(ociHostTop99p)).append("\n"); |
| 6557 | + sb.append(" onCallSeatHwm: ").append(toIndentedString(onCallSeatHwm)).append("\n"); |
6497 | 6558 | sb.append(" onlineArchiveEventsCountSum: ") |
6498 | 6559 | .append(toIndentedString(onlineArchiveEventsCountSum)) |
6499 | 6560 | .append("\n"); |
|
0 commit comments