diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml
index 0e0b198a8d7..7932ad3cf23 100644
--- a/.generator/schemas/v1/openapi.yaml
+++ b/.generator/schemas/v1/openapi.yaml
@@ -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
@@ -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.
@@ -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
@@ -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.
@@ -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
@@ -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.
diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 94f4594ca87..c2900f90613 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -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`,
diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java
index 1f9f0a04a5e..e86b24838e0 100644
--- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java
+++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java
@@ -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,
@@ -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,
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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(
@@ -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(
@@ -6021,6 +6076,7 @@ public int hashCode() {
awsLambdaInvocationsSum,
azureAppServiceTop99p,
billableIngestedBytesSum,
+ bitsAiInvestigationsSum,
browserRumLiteSessionCountSum,
browserRumReplaySessionCountSum,
browserRumUnitsSum,
@@ -6124,6 +6180,7 @@ public int hashCode() {
observabilityPipelinesBytesProcessedSum,
ociHostSum,
ociHostTop99p,
+ onCallSeatHwm,
onlineArchiveEventsCountSum,
opentelemetryApmHostTop99p,
opentelemetryHostTop99p,
@@ -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");
@@ -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");
diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java
index 50ee42acdf6..32045689cfc 100644
--- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java
+++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java
@@ -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,
@@ -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,
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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(
@@ -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(
@@ -6186,6 +6241,7 @@ public int hashCode() {
awsLambdaInvocationsSum,
azureAppServiceTop99p,
billableIngestedBytesSum,
+ bitsAiInvestigationsSum,
browserRumLiteSessionCountSum,
browserRumReplaySessionCountSum,
browserRumUnitsSum,
@@ -6292,6 +6348,7 @@ public int hashCode() {
observabilityPipelinesBytesProcessedSum,
ociHostSum,
ociHostTop99p,
+ onCallSeatHwm,
onlineArchiveEventsCountSum,
opentelemetryApmHostTop99p,
opentelemetryHostTop99p,
@@ -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");
@@ -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");
diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java
index 8020d4202ef..067530fa496 100644
--- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java
+++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java
@@ -40,6 +40,7 @@
UsageSummaryResponse.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_AZURE_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_AGG_SUM,
+ UsageSummaryResponse.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_UNITS_AGG_SUM,
@@ -149,6 +150,7 @@
UsageSummaryResponse.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_OCI_HOST_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_OCI_HOST_TOP99P_SUM,
+ UsageSummaryResponse.JSON_PROPERTY_ON_CALL_SEAT_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P_SUM,
@@ -307,6 +309,10 @@ public class UsageSummaryResponse {
"billable_ingested_bytes_agg_sum";
private Long billableIngestedBytesAggSum;
+ public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_AGG_SUM =
+ "bits_ai_investigations_agg_sum";
+ private Long bitsAiInvestigationsAggSum;
+
public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_AGG_SUM =
"browser_rum_lite_session_count_agg_sum";
private Long browserRumLiteSessionCountAggSum;
@@ -712,6 +718,9 @@ public class UsageSummaryResponse {
public static final String JSON_PROPERTY_OCI_HOST_TOP99P_SUM = "oci_host_top99p_sum";
private Long ociHostTop99pSum;
+ public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM_SUM = "on_call_seat_hwm_sum";
+ private Long onCallSeatHwmSum;
+
public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_AGG_SUM =
"online_archive_events_count_agg_sum";
private Long onlineArchiveEventsCountAggSum;
@@ -1422,6 +1431,28 @@ public void setBillableIngestedBytesAggSum(Long billableIngestedBytesAggSum) {
this.billableIngestedBytesAggSum = billableIngestedBytesAggSum;
}
+ public UsageSummaryResponse bitsAiInvestigationsAggSum(Long bitsAiInvestigationsAggSum) {
+ this.bitsAiInvestigationsAggSum = bitsAiInvestigationsAggSum;
+ return this;
+ }
+
+ /**
+ * Shows the sum of all Bits AI Investigations over all hours in the current month for all
+ * organizations.
+ *
+ * @return bitsAiInvestigationsAggSum
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_AGG_SUM)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Long getBitsAiInvestigationsAggSum() {
+ return bitsAiInvestigationsAggSum;
+ }
+
+ public void setBitsAiInvestigationsAggSum(Long bitsAiInvestigationsAggSum) {
+ this.bitsAiInvestigationsAggSum = bitsAiInvestigationsAggSum;
+ }
+
public UsageSummaryResponse browserRumLiteSessionCountAggSum(
Long browserRumLiteSessionCountAggSum) {
this.browserRumLiteSessionCountAggSum = browserRumLiteSessionCountAggSum;
@@ -3921,6 +3952,28 @@ public void setOciHostTop99pSum(Long ociHostTop99pSum) {
this.ociHostTop99pSum = ociHostTop99pSum;
}
+ public UsageSummaryResponse onCallSeatHwmSum(Long onCallSeatHwmSum) {
+ this.onCallSeatHwmSum = onCallSeatHwmSum;
+ return this;
+ }
+
+ /**
+ * Shows the sum of the high-water marks of On-Call seats over all hours in the current month for
+ * all organizations.
+ *
+ * @return onCallSeatHwmSum
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM_SUM)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public Long getOnCallSeatHwmSum() {
+ return onCallSeatHwmSum;
+ }
+
+ public void setOnCallSeatHwmSum(Long onCallSeatHwmSum) {
+ this.onCallSeatHwmSum = onCallSeatHwmSum;
+ }
+
public UsageSummaryResponse onlineArchiveEventsCountAggSum(Long onlineArchiveEventsCountAggSum) {
this.onlineArchiveEventsCountAggSum = onlineArchiveEventsCountAggSum;
return this;
@@ -6067,6 +6120,8 @@ public boolean equals(Object o) {
&& Objects.equals(this.azureHostTop99pSum, usageSummaryResponse.azureHostTop99pSum)
&& Objects.equals(
this.billableIngestedBytesAggSum, usageSummaryResponse.billableIngestedBytesAggSum)
+ && Objects.equals(
+ this.bitsAiInvestigationsAggSum, usageSummaryResponse.bitsAiInvestigationsAggSum)
&& Objects.equals(
this.browserRumLiteSessionCountAggSum,
usageSummaryResponse.browserRumLiteSessionCountAggSum)
@@ -6291,6 +6346,7 @@ public boolean equals(Object o) {
usageSummaryResponse.observabilityPipelinesBytesProcessedAggSum)
&& Objects.equals(this.ociHostAggSum, usageSummaryResponse.ociHostAggSum)
&& Objects.equals(this.ociHostTop99pSum, usageSummaryResponse.ociHostTop99pSum)
+ && Objects.equals(this.onCallSeatHwmSum, usageSummaryResponse.onCallSeatHwmSum)
&& Objects.equals(
this.onlineArchiveEventsCountAggSum,
usageSummaryResponse.onlineArchiveEventsCountAggSum)
@@ -6531,6 +6587,7 @@ public int hashCode() {
azureAppServiceTop99pSum,
azureHostTop99pSum,
billableIngestedBytesAggSum,
+ bitsAiInvestigationsAggSum,
browserRumLiteSessionCountAggSum,
browserRumReplaySessionCountAggSum,
browserRumUnitsAggSum,
@@ -6640,6 +6697,7 @@ public int hashCode() {
observabilityPipelinesBytesProcessedAggSum,
ociHostAggSum,
ociHostTop99pSum,
+ onCallSeatHwmSum,
onlineArchiveEventsCountAggSum,
opentelemetryApmHostTop99pSum,
opentelemetryHostTop99pSum,
@@ -6772,6 +6830,9 @@ public String toString() {
sb.append(" billableIngestedBytesAggSum: ")
.append(toIndentedString(billableIngestedBytesAggSum))
.append("\n");
+ sb.append(" bitsAiInvestigationsAggSum: ")
+ .append(toIndentedString(bitsAiInvestigationsAggSum))
+ .append("\n");
sb.append(" browserRumLiteSessionCountAggSum: ")
.append(toIndentedString(browserRumLiteSessionCountAggSum))
.append("\n");
@@ -7061,6 +7122,7 @@ public String toString() {
.append("\n");
sb.append(" ociHostAggSum: ").append(toIndentedString(ociHostAggSum)).append("\n");
sb.append(" ociHostTop99pSum: ").append(toIndentedString(ociHostTop99pSum)).append("\n");
+ sb.append(" onCallSeatHwmSum: ").append(toIndentedString(onCallSeatHwmSum)).append("\n");
sb.append(" onlineArchiveEventsCountAggSum: ")
.append(toIndentedString(onlineArchiveEventsCountAggSum))
.append("\n");
diff --git a/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java b/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java
index c5b1b298dee..f1ceb3529a7 100644
--- a/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java
+++ b/src/main/java/com/datadog/api/client/v2/api/UsageMeteringApi.java
@@ -1218,21 +1218,21 @@ public GetHourlyUsageOptionalParameters pageNextRecordId(String pageNextRecordId
* for usage beginning at this hour. (required)
* @param filterProductFamilies 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, csm_container_enterprise
- * , csm_host_enterprise, cspm, custom_events,
- * cws, dbm, error_tracking, fargate,
- * infra_hosts, incident_management, indexed_logs,
- * indexed_spans, ingested_spans, iot,
- * lambda_traced_invocations, llm_observability, logs,
- * network_flows, network_hosts, network_monitoring,
- * observability_pipelines, online_archive, profiling,
- * product_analytics, rum, rum_browser_sessions,
- * rum_mobile_sessions, sds, snmp, software_delivery
- * , synthetics_api, synthetics_browser,
- * synthetics_mobile, synthetics_parallel_testing, timeseries
- * , vuln_management and workflow_executions. The following product
- * family has been deprecated: audit_logs. (required)
+ * , 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
+ * , fargate, infra_hosts, incident_management,
+ * indexed_logs, indexed_spans, ingested_spans, iot
+ * , lambda_traced_invocations, llm_observability, logs
+ * , network_flows, network_hosts, network_monitoring
+ * , observability_pipelines, online_archive, profiling
+ * , product_analytics, rum, rum_browser_sessions
+ * , rum_mobile_sessions, sds, snmp,
+ * software_delivery, synthetics_api, synthetics_browser,
+ * synthetics_mobile, synthetics_parallel_testing, timeseries
+ * , vuln_management and workflow_executions. The following
+ * product family has been deprecated: audit_logs. (required)
* @return HourlyUsageResponse
* @throws ApiException if fails to make API call
*/
@@ -1252,21 +1252,21 @@ filterTimestampStart, filterProductFamilies, new GetHourlyUsageOptionalParameter
* for usage beginning at this hour. (required)
* @param filterProductFamilies 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, csm_container_enterprise
- * , csm_host_enterprise, cspm, custom_events,
- * cws, dbm, error_tracking, fargate,
- * infra_hosts, incident_management, indexed_logs,
- * indexed_spans, ingested_spans, iot,
- * lambda_traced_invocations, llm_observability, logs,
- * network_flows, network_hosts, network_monitoring,
- * observability_pipelines, online_archive, profiling,
- * product_analytics, rum, rum_browser_sessions,
- * rum_mobile_sessions, sds, snmp, software_delivery
- * , synthetics_api, synthetics_browser,
- * synthetics_mobile, synthetics_parallel_testing, timeseries
- * , vuln_management and workflow_executions. The following product
- * family has been deprecated: audit_logs. (required)
+ * , 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
+ * , fargate, infra_hosts, incident_management,
+ * indexed_logs, indexed_spans, ingested_spans, iot
+ * , lambda_traced_invocations, llm_observability, logs
+ * , network_flows, network_hosts, network_monitoring
+ * , observability_pipelines, online_archive, profiling
+ * , product_analytics, rum, rum_browser_sessions
+ * , rum_mobile_sessions, sds, snmp,
+ * software_delivery, synthetics_api, synthetics_browser,
+ * synthetics_mobile, synthetics_parallel_testing, timeseries
+ * , vuln_management and workflow_executions. The following
+ * product family has been deprecated: audit_logs. (required)
* @return CompletableFuture<HourlyUsageResponse>
*/
public CompletableFuture getHourlyUsageAsync(
@@ -1288,21 +1288,21 @@ filterTimestampStart, filterProductFamilies, new GetHourlyUsageOptionalParameter
* for usage beginning at this hour. (required)
* @param filterProductFamilies 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, csm_container_enterprise
- * , csm_host_enterprise, cspm, custom_events,
- * cws, dbm, error_tracking, fargate,
- * infra_hosts, incident_management, indexed_logs,
- * indexed_spans, ingested_spans, iot,
- * lambda_traced_invocations, llm_observability, logs,
- * network_flows, network_hosts, network_monitoring,
- * observability_pipelines, online_archive, profiling,
- * product_analytics, rum, rum_browser_sessions,
- * rum_mobile_sessions, sds, snmp, software_delivery
- * , synthetics_api, synthetics_browser,
- * synthetics_mobile, synthetics_parallel_testing, timeseries
- * , vuln_management and workflow_executions. The following product
- * family has been deprecated: audit_logs. (required)
+ * , 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
+ * , fargate, infra_hosts, incident_management,
+ * indexed_logs, indexed_spans, ingested_spans, iot
+ * , lambda_traced_invocations, llm_observability, logs
+ * , network_flows, network_hosts, network_monitoring
+ * , observability_pipelines, online_archive, profiling
+ * , product_analytics, rum, rum_browser_sessions
+ * , rum_mobile_sessions, sds, snmp,
+ * software_delivery, synthetics_api, synthetics_browser,
+ * synthetics_mobile, synthetics_parallel_testing, timeseries
+ * , vuln_management and workflow_executions. The following
+ * product family has been deprecated: audit_logs. (required)
* @param parameters Optional parameters for the request.
* @return HourlyUsageResponse
* @throws ApiException if fails to make API call
@@ -1325,21 +1325,21 @@ public HourlyUsageResponse getHourlyUsage(
* for usage beginning at this hour. (required)
* @param filterProductFamilies 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, csm_container_enterprise
- * , csm_host_enterprise, cspm, custom_events,
- * cws, dbm, error_tracking, fargate,
- * infra_hosts, incident_management, indexed_logs,
- * indexed_spans, ingested_spans, iot,
- * lambda_traced_invocations, llm_observability, logs,
- * network_flows, network_hosts, network_monitoring,
- * observability_pipelines, online_archive, profiling,
- * product_analytics, rum, rum_browser_sessions,
- * rum_mobile_sessions, sds, snmp, software_delivery
- * , synthetics_api, synthetics_browser,
- * synthetics_mobile, synthetics_parallel_testing, timeseries
- * , vuln_management and workflow_executions. The following product
- * family has been deprecated: audit_logs. (required)
+ * , 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
+ * , fargate, infra_hosts, incident_management,
+ * indexed_logs, indexed_spans, ingested_spans, iot
+ * , lambda_traced_invocations, llm_observability, logs
+ * , network_flows, network_hosts, network_monitoring
+ * , observability_pipelines, online_archive, profiling
+ * , product_analytics, rum, rum_browser_sessions
+ * , rum_mobile_sessions, sds, snmp,
+ * software_delivery, synthetics_api, synthetics_browser,
+ * synthetics_mobile, synthetics_parallel_testing, timeseries
+ * , vuln_management and workflow_executions. The following
+ * product family has been deprecated: audit_logs. (required)
* @param parameters Optional parameters for the request.
* @return CompletableFuture<HourlyUsageResponse>
*/
@@ -1361,21 +1361,21 @@ public CompletableFuture getHourlyUsageAsync(
* for usage beginning at this hour. (required)
* @param filterProductFamilies 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, csm_container_enterprise
- * , csm_host_enterprise, cspm, custom_events,
- * cws, dbm, error_tracking, fargate,
- * infra_hosts, incident_management, indexed_logs,
- * indexed_spans, ingested_spans, iot,
- * lambda_traced_invocations, llm_observability, logs,
- * network_flows, network_hosts, network_monitoring,
- * observability_pipelines, online_archive, profiling,
- * product_analytics, rum, rum_browser_sessions,
- * rum_mobile_sessions, sds, snmp, software_delivery
- * , synthetics_api, synthetics_browser,
- * synthetics_mobile, synthetics_parallel_testing, timeseries
- * , vuln_management and workflow_executions. The following product
- * family has been deprecated: audit_logs. (required)
+ * , 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
+ * , fargate, infra_hosts, incident_management,
+ * indexed_logs, indexed_spans, ingested_spans, iot
+ * , lambda_traced_invocations, llm_observability, logs
+ * , network_flows, network_hosts, network_monitoring
+ * , observability_pipelines, online_archive, profiling
+ * , product_analytics, rum, rum_browser_sessions
+ * , rum_mobile_sessions, sds, snmp,
+ * software_delivery, synthetics_api, synthetics_browser,
+ * synthetics_mobile, synthetics_parallel_testing, timeseries
+ * , vuln_management and workflow_executions. The following
+ * product family has been deprecated: audit_logs. (required)
* @param parameters Optional parameters for the request.
* @return ApiResponse<HourlyUsageResponse>
* @throws ApiException if fails to make API call
@@ -1468,21 +1468,21 @@ public ApiResponse getHourlyUsageWithHttpInfo(
* for usage beginning at this hour. (required)
* @param filterProductFamilies 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, csm_container_enterprise
- * , csm_host_enterprise, cspm, custom_events,
- * cws, dbm, error_tracking, fargate,
- * infra_hosts, incident_management, indexed_logs,
- * indexed_spans, ingested_spans, iot,
- * lambda_traced_invocations, llm_observability, logs,
- * network_flows, network_hosts, network_monitoring,
- * observability_pipelines, online_archive, profiling,
- * product_analytics, rum, rum_browser_sessions,
- * rum_mobile_sessions, sds, snmp, software_delivery
- * , synthetics_api, synthetics_browser,
- * synthetics_mobile, synthetics_parallel_testing, timeseries
- * , vuln_management and workflow_executions. The following product
- * family has been deprecated: audit_logs. (required)
+ * , 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
+ * , fargate, infra_hosts, incident_management,
+ * indexed_logs, indexed_spans, ingested_spans, iot
+ * , lambda_traced_invocations, llm_observability, logs
+ * , network_flows, network_hosts, network_monitoring
+ * , observability_pipelines, online_archive, profiling
+ * , product_analytics, rum, rum_browser_sessions
+ * , rum_mobile_sessions, sds, snmp,
+ * software_delivery, synthetics_api, synthetics_browser,
+ * synthetics_mobile, synthetics_parallel_testing, timeseries
+ * , vuln_management and workflow_executions. The following
+ * product family has been deprecated: audit_logs. (required)
* @param parameters Optional parameters for the request.
* @return CompletableFuture<ApiResponse<HourlyUsageResponse>>
*/