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
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20762,6 +20762,11 @@ components:
current date for all organizations.
format: int64
type: integer
bits_ai_investigations_sum:
description: Shows the sum of all Bits AI Investigations over all hours
in the current date for all organizations.
format: int64
type: integer
browser_rum_lite_session_count_sum:
deprecated: true
description: Shows the sum of all browser lite sessions over all hours in
Expand Down Expand Up @@ -21309,6 +21314,11 @@ components:
hosts over all hours in the current date for the given org.
format: int64
type: integer
on_call_seat_hwm:
description: Shows the high-water mark of On-Call seats over all hours in
the current date for all organizations.
format: int64
type: integer
online_archive_events_count_sum:
description: Sum of all online archived events over all hours in the current
date for all organizations.
Expand Down Expand Up @@ -21850,6 +21860,11 @@ components:
current date for the given org.
format: int64
type: integer
bits_ai_investigations_sum:
description: Shows the sum of all Bits AI Investigations over all hours
in the current date for the given org.
format: int64
type: integer
browser_rum_lite_session_count_sum:
deprecated: true
description: Shows the sum of all browser lite sessions over all hours in
Expand Down Expand Up @@ -22406,6 +22421,11 @@ components:
hosts over all hours in the current date for the given org.
format: int64
type: integer
on_call_seat_hwm:
description: Shows the high-water mark of On-Call seats over all hours in
the current date for the given org.
format: int64
type: integer
online_archive_events_count_sum:
description: Sum of all online archived events over all hours in the current
date for the given org.
Expand Down Expand Up @@ -22947,6 +22967,11 @@ components:
current month for all organizations.
format: int64
type: integer
bits_ai_investigations_agg_sum:
description: Shows the sum of all Bits AI Investigations over all hours
in the current month for all organizations.
format: int64
type: integer
browser_rum_lite_session_count_agg_sum:
deprecated: true
description: Shows the sum of all browser lite sessions over all hours in
Expand Down Expand Up @@ -23524,6 +23549,11 @@ components:
over all hours in the current months for all organizations
format: int64
type: integer
on_call_seat_hwm_sum:
description: Shows the sum of the high-water marks of On-Call seats over
all hours in the current month for all organizations.
format: int64
type: integer
online_archive_events_count_agg_sum:
description: Sum of all online archived events over all hours in the current
month for all organizations.
Expand Down
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81263,8 +81263,8 @@ paths:
- description: 'Comma separated list of product families to retrieve. Available
families are `all`, `analyzed_logs`,

`application_security`, `audit_trail`, `serverless`, `ci_app`, `cloud_cost_management`,
`cloud_siem`,
`application_security`, `audit_trail`, `bits_ai`, `serverless`, `ci_app`,
`cloud_cost_management`, `cloud_siem`,

`csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`,
`cws`, `dbm`, `error_tracking`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
UsageSummaryDate.JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM,
UsageSummaryDate.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P,
UsageSummaryDate.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM,
UsageSummaryDate.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM,
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM,
Expand Down Expand Up @@ -139,6 +140,7 @@
UsageSummaryDate.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM,
UsageSummaryDate.JSON_PROPERTY_OCI_HOST_SUM,
UsageSummaryDate.JSON_PROPERTY_OCI_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_ON_CALL_SEAT_HWM,
UsageSummaryDate.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P,
Expand Down Expand Up @@ -281,6 +283,10 @@ public class UsageSummaryDate {
"billable_ingested_bytes_sum";
private Long billableIngestedBytesSum;

public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM =
"bits_ai_investigations_sum";
private Long bitsAiInvestigationsSum;

public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM =
"browser_rum_lite_session_count_sum";
private Long browserRumLiteSessionCountSum;
Expand Down Expand Up @@ -648,6 +654,9 @@ public class UsageSummaryDate {
public static final String JSON_PROPERTY_OCI_HOST_TOP99P = "oci_host_top99p";
private Long ociHostTop99p;

public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM = "on_call_seat_hwm";
private Long onCallSeatHwm;

public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM =
"online_archive_events_count_sum";
private Long onlineArchiveEventsCountSum;
Expand Down Expand Up @@ -1307,6 +1316,28 @@ public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) {
this.billableIngestedBytesSum = billableIngestedBytesSum;
}

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

/**
* Shows the sum of all Bits AI Investigations over all hours in the current date for all
* organizations.
*
* @return bitsAiInvestigationsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getBitsAiInvestigationsSum() {
return bitsAiInvestigationsSum;
}

public void setBitsAiInvestigationsSum(Long bitsAiInvestigationsSum) {
this.bitsAiInvestigationsSum = bitsAiInvestigationsSum;
}

public UsageSummaryDate browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) {
this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum;
return this;
Expand Down Expand Up @@ -3639,6 +3670,28 @@ public void setOciHostTop99p(Long ociHostTop99p) {
this.ociHostTop99p = ociHostTop99p;
}

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

/**
* Shows the high-water mark of On-Call seats over all hours in the current date for all
* organizations.
*
* @return onCallSeatHwm
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getOnCallSeatHwm() {
return onCallSeatHwm;
}

public void setOnCallSeatHwm(Long onCallSeatHwm) {
this.onCallSeatHwm = onCallSeatHwm;
}

public UsageSummaryDate onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) {
this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum;
return this;
Expand Down Expand Up @@ -5647,6 +5700,7 @@ public boolean equals(Object o) {
&& Objects.equals(this.awsLambdaInvocationsSum, usageSummaryDate.awsLambdaInvocationsSum)
&& Objects.equals(this.azureAppServiceTop99p, usageSummaryDate.azureAppServiceTop99p)
&& Objects.equals(this.billableIngestedBytesSum, usageSummaryDate.billableIngestedBytesSum)
&& Objects.equals(this.bitsAiInvestigationsSum, usageSummaryDate.bitsAiInvestigationsSum)
&& Objects.equals(
this.browserRumLiteSessionCountSum, usageSummaryDate.browserRumLiteSessionCountSum)
&& Objects.equals(
Expand Down Expand Up @@ -5819,6 +5873,7 @@ public boolean equals(Object o) {
usageSummaryDate.observabilityPipelinesBytesProcessedSum)
&& Objects.equals(this.ociHostSum, usageSummaryDate.ociHostSum)
&& Objects.equals(this.ociHostTop99p, usageSummaryDate.ociHostTop99p)
&& Objects.equals(this.onCallSeatHwm, usageSummaryDate.onCallSeatHwm)
&& Objects.equals(
this.onlineArchiveEventsCountSum, usageSummaryDate.onlineArchiveEventsCountSum)
&& Objects.equals(
Expand Down Expand Up @@ -6021,6 +6076,7 @@ public int hashCode() {
awsLambdaInvocationsSum,
azureAppServiceTop99p,
billableIngestedBytesSum,
bitsAiInvestigationsSum,
browserRumLiteSessionCountSum,
browserRumReplaySessionCountSum,
browserRumUnitsSum,
Expand Down Expand Up @@ -6124,6 +6180,7 @@ public int hashCode() {
observabilityPipelinesBytesProcessedSum,
ociHostSum,
ociHostTop99p,
onCallSeatHwm,
onlineArchiveEventsCountSum,
opentelemetryApmHostTop99p,
opentelemetryHostTop99p,
Expand Down Expand Up @@ -6247,6 +6304,9 @@ public String toString() {
sb.append(" billableIngestedBytesSum: ")
.append(toIndentedString(billableIngestedBytesSum))
.append("\n");
sb.append(" bitsAiInvestigationsSum: ")
.append(toIndentedString(bitsAiInvestigationsSum))
.append("\n");
sb.append(" browserRumLiteSessionCountSum: ")
.append(toIndentedString(browserRumLiteSessionCountSum))
.append("\n");
Expand Down Expand Up @@ -6494,6 +6554,7 @@ public String toString() {
.append("\n");
sb.append(" ociHostSum: ").append(toIndentedString(ociHostSum)).append("\n");
sb.append(" ociHostTop99p: ").append(toIndentedString(ociHostTop99p)).append("\n");
sb.append(" onCallSeatHwm: ").append(toIndentedString(onCallSeatHwm)).append("\n");
sb.append(" onlineArchiveEventsCountSum: ")
.append(toIndentedString(onlineArchiveEventsCountSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM,
Expand Down Expand Up @@ -141,6 +142,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_OCI_HOST_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_OCI_HOST_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_ON_CALL_SEAT_HWM,
UsageSummaryDateOrg.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P,
Expand Down Expand Up @@ -291,6 +293,10 @@ public class UsageSummaryDateOrg {
"billable_ingested_bytes_sum";
private Long billableIngestedBytesSum;

public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM =
"bits_ai_investigations_sum";
private Long bitsAiInvestigationsSum;

public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM =
"browser_rum_lite_session_count_sum";
private Long browserRumLiteSessionCountSum;
Expand Down Expand Up @@ -667,6 +673,9 @@ public class UsageSummaryDateOrg {
public static final String JSON_PROPERTY_OCI_HOST_TOP99P = "oci_host_top99p";
private Long ociHostTop99p;

public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM = "on_call_seat_hwm";
private Long onCallSeatHwm;

public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM =
"online_archive_events_count_sum";
private Long onlineArchiveEventsCountSum;
Expand Down Expand Up @@ -1370,6 +1379,28 @@ public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) {
this.billableIngestedBytesSum = billableIngestedBytesSum;
}

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

/**
* Shows the sum of all Bits AI Investigations over all hours in the current date for the given
* org.
*
* @return bitsAiInvestigationsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getBitsAiInvestigationsSum() {
return bitsAiInvestigationsSum;
}

public void setBitsAiInvestigationsSum(Long bitsAiInvestigationsSum) {
this.bitsAiInvestigationsSum = bitsAiInvestigationsSum;
}

public UsageSummaryDateOrg browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) {
this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum;
return this;
Expand Down Expand Up @@ -3767,6 +3798,28 @@ public void setOciHostTop99p(Long ociHostTop99p) {
this.ociHostTop99p = ociHostTop99p;
}

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

/**
* Shows the high-water mark of On-Call seats over all hours in the current date for the given
* org.
*
* @return onCallSeatHwm
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getOnCallSeatHwm() {
return onCallSeatHwm;
}

public void setOnCallSeatHwm(Long onCallSeatHwm) {
this.onCallSeatHwm = onCallSeatHwm;
}

public UsageSummaryDateOrg onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) {
this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum;
return this;
Expand Down Expand Up @@ -5788,6 +5841,7 @@ public boolean equals(Object o) {
&& Objects.equals(this.azureAppServiceTop99p, usageSummaryDateOrg.azureAppServiceTop99p)
&& Objects.equals(
this.billableIngestedBytesSum, usageSummaryDateOrg.billableIngestedBytesSum)
&& Objects.equals(this.bitsAiInvestigationsSum, usageSummaryDateOrg.bitsAiInvestigationsSum)
&& Objects.equals(
this.browserRumLiteSessionCountSum, usageSummaryDateOrg.browserRumLiteSessionCountSum)
&& Objects.equals(
Expand Down Expand Up @@ -5973,6 +6027,7 @@ public boolean equals(Object o) {
usageSummaryDateOrg.observabilityPipelinesBytesProcessedSum)
&& Objects.equals(this.ociHostSum, usageSummaryDateOrg.ociHostSum)
&& Objects.equals(this.ociHostTop99p, usageSummaryDateOrg.ociHostTop99p)
&& Objects.equals(this.onCallSeatHwm, usageSummaryDateOrg.onCallSeatHwm)
&& Objects.equals(
this.onlineArchiveEventsCountSum, usageSummaryDateOrg.onlineArchiveEventsCountSum)
&& Objects.equals(
Expand Down Expand Up @@ -6186,6 +6241,7 @@ public int hashCode() {
awsLambdaInvocationsSum,
azureAppServiceTop99p,
billableIngestedBytesSum,
bitsAiInvestigationsSum,
browserRumLiteSessionCountSum,
browserRumReplaySessionCountSum,
browserRumUnitsSum,
Expand Down Expand Up @@ -6292,6 +6348,7 @@ public int hashCode() {
observabilityPipelinesBytesProcessedSum,
ociHostSum,
ociHostTop99p,
onCallSeatHwm,
onlineArchiveEventsCountSum,
opentelemetryApmHostTop99p,
opentelemetryHostTop99p,
Expand Down Expand Up @@ -6418,6 +6475,9 @@ public String toString() {
sb.append(" billableIngestedBytesSum: ")
.append(toIndentedString(billableIngestedBytesSum))
.append("\n");
sb.append(" bitsAiInvestigationsSum: ")
.append(toIndentedString(bitsAiInvestigationsSum))
.append("\n");
sb.append(" browserRumLiteSessionCountSum: ")
.append(toIndentedString(browserRumLiteSessionCountSum))
.append("\n");
Expand Down Expand Up @@ -6670,6 +6730,7 @@ public String toString() {
.append("\n");
sb.append(" ociHostSum: ").append(toIndentedString(ociHostSum)).append("\n");
sb.append(" ociHostTop99p: ").append(toIndentedString(ociHostTop99p)).append("\n");
sb.append(" onCallSeatHwm: ").append(toIndentedString(onCallSeatHwm)).append("\n");
sb.append(" onlineArchiveEventsCountSum: ")
.append(toIndentedString(onlineArchiveEventsCountSum))
.append("\n");
Expand Down
Loading
Loading