Skip to content

Commit 7ae24b4

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Bits AI Investigations and On-Call to API specs (#3232)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 81af379 commit 7ae24b4

File tree

6 files changed

+306
-92
lines changed

6 files changed

+306
-92
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20762,6 +20762,11 @@ components:
2076220762
current date for all organizations.
2076320763
format: int64
2076420764
type: integer
20765+
bits_ai_investigations_sum:
20766+
description: Shows the sum of all Bits AI Investigations over all hours
20767+
in the current date for all organizations.
20768+
format: int64
20769+
type: integer
2076520770
browser_rum_lite_session_count_sum:
2076620771
deprecated: true
2076720772
description: Shows the sum of all browser lite sessions over all hours in
@@ -21309,6 +21314,11 @@ components:
2130921314
hosts over all hours in the current date for the given org.
2131021315
format: int64
2131121316
type: integer
21317+
on_call_seat_hwm:
21318+
description: Shows the high-water mark of On-Call seats over all hours in
21319+
the current date for all organizations.
21320+
format: int64
21321+
type: integer
2131221322
online_archive_events_count_sum:
2131321323
description: Sum of all online archived events over all hours in the current
2131421324
date for all organizations.
@@ -21850,6 +21860,11 @@ components:
2185021860
current date for the given org.
2185121861
format: int64
2185221862
type: integer
21863+
bits_ai_investigations_sum:
21864+
description: Shows the sum of all Bits AI Investigations over all hours
21865+
in the current date for the given org.
21866+
format: int64
21867+
type: integer
2185321868
browser_rum_lite_session_count_sum:
2185421869
deprecated: true
2185521870
description: Shows the sum of all browser lite sessions over all hours in
@@ -22406,6 +22421,11 @@ components:
2240622421
hosts over all hours in the current date for the given org.
2240722422
format: int64
2240822423
type: integer
22424+
on_call_seat_hwm:
22425+
description: Shows the high-water mark of On-Call seats over all hours in
22426+
the current date for the given org.
22427+
format: int64
22428+
type: integer
2240922429
online_archive_events_count_sum:
2241022430
description: Sum of all online archived events over all hours in the current
2241122431
date for the given org.
@@ -22947,6 +22967,11 @@ components:
2294722967
current month for all organizations.
2294822968
format: int64
2294922969
type: integer
22970+
bits_ai_investigations_agg_sum:
22971+
description: Shows the sum of all Bits AI Investigations over all hours
22972+
in the current month for all organizations.
22973+
format: int64
22974+
type: integer
2295022975
browser_rum_lite_session_count_agg_sum:
2295122976
deprecated: true
2295222977
description: Shows the sum of all browser lite sessions over all hours in
@@ -23524,6 +23549,11 @@ components:
2352423549
over all hours in the current months for all organizations
2352523550
format: int64
2352623551
type: integer
23552+
on_call_seat_hwm_sum:
23553+
description: Shows the sum of the high-water marks of On-Call seats over
23554+
all hours in the current month for all organizations.
23555+
format: int64
23556+
type: integer
2352723557
online_archive_events_count_agg_sum:
2352823558
description: Sum of all online archived events over all hours in the current
2352923559
month for all organizations.

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81263,8 +81263,8 @@ paths:
8126381263
- description: 'Comma separated list of product families to retrieve. Available
8126481264
families are `all`, `analyzed_logs`,
8126581265

81266-
`application_security`, `audit_trail`, `serverless`, `ci_app`, `cloud_cost_management`,
81267-
`cloud_siem`,
81266+
`application_security`, `audit_trail`, `bits_ai`, `serverless`, `ci_app`,
81267+
`cloud_cost_management`, `cloud_siem`,
8126881268

8126981269
`csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`,
8127081270
`cws`, `dbm`, `error_tracking`,

src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
UsageSummaryDate.JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM,
3737
UsageSummaryDate.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P,
3838
UsageSummaryDate.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM,
39+
UsageSummaryDate.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM,
3940
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM,
4041
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM,
4142
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM,
@@ -139,6 +140,7 @@
139140
UsageSummaryDate.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM,
140141
UsageSummaryDate.JSON_PROPERTY_OCI_HOST_SUM,
141142
UsageSummaryDate.JSON_PROPERTY_OCI_HOST_TOP99P,
143+
UsageSummaryDate.JSON_PROPERTY_ON_CALL_SEAT_HWM,
142144
UsageSummaryDate.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM,
143145
UsageSummaryDate.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P,
144146
UsageSummaryDate.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P,
@@ -281,6 +283,10 @@ public class UsageSummaryDate {
281283
"billable_ingested_bytes_sum";
282284
private Long billableIngestedBytesSum;
283285

286+
public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM =
287+
"bits_ai_investigations_sum";
288+
private Long bitsAiInvestigationsSum;
289+
284290
public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM =
285291
"browser_rum_lite_session_count_sum";
286292
private Long browserRumLiteSessionCountSum;
@@ -648,6 +654,9 @@ public class UsageSummaryDate {
648654
public static final String JSON_PROPERTY_OCI_HOST_TOP99P = "oci_host_top99p";
649655
private Long ociHostTop99p;
650656

657+
public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM = "on_call_seat_hwm";
658+
private Long onCallSeatHwm;
659+
651660
public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM =
652661
"online_archive_events_count_sum";
653662
private Long onlineArchiveEventsCountSum;
@@ -1307,6 +1316,28 @@ public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) {
13071316
this.billableIngestedBytesSum = billableIngestedBytesSum;
13081317
}
13091318

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+
13101341
public UsageSummaryDate browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) {
13111342
this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum;
13121343
return this;
@@ -3639,6 +3670,28 @@ public void setOciHostTop99p(Long ociHostTop99p) {
36393670
this.ociHostTop99p = ociHostTop99p;
36403671
}
36413672

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+
36423695
public UsageSummaryDate onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) {
36433696
this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum;
36443697
return this;
@@ -5647,6 +5700,7 @@ public boolean equals(Object o) {
56475700
&& Objects.equals(this.awsLambdaInvocationsSum, usageSummaryDate.awsLambdaInvocationsSum)
56485701
&& Objects.equals(this.azureAppServiceTop99p, usageSummaryDate.azureAppServiceTop99p)
56495702
&& Objects.equals(this.billableIngestedBytesSum, usageSummaryDate.billableIngestedBytesSum)
5703+
&& Objects.equals(this.bitsAiInvestigationsSum, usageSummaryDate.bitsAiInvestigationsSum)
56505704
&& Objects.equals(
56515705
this.browserRumLiteSessionCountSum, usageSummaryDate.browserRumLiteSessionCountSum)
56525706
&& Objects.equals(
@@ -5819,6 +5873,7 @@ public boolean equals(Object o) {
58195873
usageSummaryDate.observabilityPipelinesBytesProcessedSum)
58205874
&& Objects.equals(this.ociHostSum, usageSummaryDate.ociHostSum)
58215875
&& Objects.equals(this.ociHostTop99p, usageSummaryDate.ociHostTop99p)
5876+
&& Objects.equals(this.onCallSeatHwm, usageSummaryDate.onCallSeatHwm)
58225877
&& Objects.equals(
58235878
this.onlineArchiveEventsCountSum, usageSummaryDate.onlineArchiveEventsCountSum)
58245879
&& Objects.equals(
@@ -6021,6 +6076,7 @@ public int hashCode() {
60216076
awsLambdaInvocationsSum,
60226077
azureAppServiceTop99p,
60236078
billableIngestedBytesSum,
6079+
bitsAiInvestigationsSum,
60246080
browserRumLiteSessionCountSum,
60256081
browserRumReplaySessionCountSum,
60266082
browserRumUnitsSum,
@@ -6124,6 +6180,7 @@ public int hashCode() {
61246180
observabilityPipelinesBytesProcessedSum,
61256181
ociHostSum,
61266182
ociHostTop99p,
6183+
onCallSeatHwm,
61276184
onlineArchiveEventsCountSum,
61286185
opentelemetryApmHostTop99p,
61296186
opentelemetryHostTop99p,
@@ -6247,6 +6304,9 @@ public String toString() {
62476304
sb.append(" billableIngestedBytesSum: ")
62486305
.append(toIndentedString(billableIngestedBytesSum))
62496306
.append("\n");
6307+
sb.append(" bitsAiInvestigationsSum: ")
6308+
.append(toIndentedString(bitsAiInvestigationsSum))
6309+
.append("\n");
62506310
sb.append(" browserRumLiteSessionCountSum: ")
62516311
.append(toIndentedString(browserRumLiteSessionCountSum))
62526312
.append("\n");
@@ -6494,6 +6554,7 @@ public String toString() {
64946554
.append("\n");
64956555
sb.append(" ociHostSum: ").append(toIndentedString(ociHostSum)).append("\n");
64966556
sb.append(" ociHostTop99p: ").append(toIndentedString(ociHostTop99p)).append("\n");
6557+
sb.append(" onCallSeatHwm: ").append(toIndentedString(onCallSeatHwm)).append("\n");
64976558
sb.append(" onlineArchiveEventsCountSum: ")
64986559
.append(toIndentedString(onlineArchiveEventsCountSum))
64996560
.append("\n");

src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
UsageSummaryDateOrg.JSON_PROPERTY_AWS_LAMBDA_INVOCATIONS_SUM,
3636
UsageSummaryDateOrg.JSON_PROPERTY_AZURE_APP_SERVICE_TOP99P,
3737
UsageSummaryDateOrg.JSON_PROPERTY_BILLABLE_INGESTED_BYTES_SUM,
38+
UsageSummaryDateOrg.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM,
3839
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM,
3940
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM,
4041
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM,
@@ -141,6 +142,7 @@
141142
UsageSummaryDateOrg.JSON_PROPERTY_OBSERVABILITY_PIPELINES_BYTES_PROCESSED_SUM,
142143
UsageSummaryDateOrg.JSON_PROPERTY_OCI_HOST_SUM,
143144
UsageSummaryDateOrg.JSON_PROPERTY_OCI_HOST_TOP99P,
145+
UsageSummaryDateOrg.JSON_PROPERTY_ON_CALL_SEAT_HWM,
144146
UsageSummaryDateOrg.JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM,
145147
UsageSummaryDateOrg.JSON_PROPERTY_OPENTELEMETRY_APM_HOST_TOP99P,
146148
UsageSummaryDateOrg.JSON_PROPERTY_OPENTELEMETRY_HOST_TOP99P,
@@ -291,6 +293,10 @@ public class UsageSummaryDateOrg {
291293
"billable_ingested_bytes_sum";
292294
private Long billableIngestedBytesSum;
293295

296+
public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM =
297+
"bits_ai_investigations_sum";
298+
private Long bitsAiInvestigationsSum;
299+
294300
public static final String JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM =
295301
"browser_rum_lite_session_count_sum";
296302
private Long browserRumLiteSessionCountSum;
@@ -667,6 +673,9 @@ public class UsageSummaryDateOrg {
667673
public static final String JSON_PROPERTY_OCI_HOST_TOP99P = "oci_host_top99p";
668674
private Long ociHostTop99p;
669675

676+
public static final String JSON_PROPERTY_ON_CALL_SEAT_HWM = "on_call_seat_hwm";
677+
private Long onCallSeatHwm;
678+
670679
public static final String JSON_PROPERTY_ONLINE_ARCHIVE_EVENTS_COUNT_SUM =
671680
"online_archive_events_count_sum";
672681
private Long onlineArchiveEventsCountSum;
@@ -1370,6 +1379,28 @@ public void setBillableIngestedBytesSum(Long billableIngestedBytesSum) {
13701379
this.billableIngestedBytesSum = billableIngestedBytesSum;
13711380
}
13721381

1382+
public UsageSummaryDateOrg bitsAiInvestigationsSum(Long bitsAiInvestigationsSum) {
1383+
this.bitsAiInvestigationsSum = bitsAiInvestigationsSum;
1384+
return this;
1385+
}
1386+
1387+
/**
1388+
* Shows the sum of all Bits AI Investigations over all hours in the current date for the given
1389+
* org.
1390+
*
1391+
* @return bitsAiInvestigationsSum
1392+
*/
1393+
@jakarta.annotation.Nullable
1394+
@JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_SUM)
1395+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
1396+
public Long getBitsAiInvestigationsSum() {
1397+
return bitsAiInvestigationsSum;
1398+
}
1399+
1400+
public void setBitsAiInvestigationsSum(Long bitsAiInvestigationsSum) {
1401+
this.bitsAiInvestigationsSum = bitsAiInvestigationsSum;
1402+
}
1403+
13731404
public UsageSummaryDateOrg browserRumLiteSessionCountSum(Long browserRumLiteSessionCountSum) {
13741405
this.browserRumLiteSessionCountSum = browserRumLiteSessionCountSum;
13751406
return this;
@@ -3767,6 +3798,28 @@ public void setOciHostTop99p(Long ociHostTop99p) {
37673798
this.ociHostTop99p = ociHostTop99p;
37683799
}
37693800

3801+
public UsageSummaryDateOrg onCallSeatHwm(Long onCallSeatHwm) {
3802+
this.onCallSeatHwm = onCallSeatHwm;
3803+
return this;
3804+
}
3805+
3806+
/**
3807+
* Shows the high-water mark of On-Call seats over all hours in the current date for the given
3808+
* org.
3809+
*
3810+
* @return onCallSeatHwm
3811+
*/
3812+
@jakarta.annotation.Nullable
3813+
@JsonProperty(JSON_PROPERTY_ON_CALL_SEAT_HWM)
3814+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3815+
public Long getOnCallSeatHwm() {
3816+
return onCallSeatHwm;
3817+
}
3818+
3819+
public void setOnCallSeatHwm(Long onCallSeatHwm) {
3820+
this.onCallSeatHwm = onCallSeatHwm;
3821+
}
3822+
37703823
public UsageSummaryDateOrg onlineArchiveEventsCountSum(Long onlineArchiveEventsCountSum) {
37713824
this.onlineArchiveEventsCountSum = onlineArchiveEventsCountSum;
37723825
return this;
@@ -5788,6 +5841,7 @@ public boolean equals(Object o) {
57885841
&& Objects.equals(this.azureAppServiceTop99p, usageSummaryDateOrg.azureAppServiceTop99p)
57895842
&& Objects.equals(
57905843
this.billableIngestedBytesSum, usageSummaryDateOrg.billableIngestedBytesSum)
5844+
&& Objects.equals(this.bitsAiInvestigationsSum, usageSummaryDateOrg.bitsAiInvestigationsSum)
57915845
&& Objects.equals(
57925846
this.browserRumLiteSessionCountSum, usageSummaryDateOrg.browserRumLiteSessionCountSum)
57935847
&& Objects.equals(
@@ -5973,6 +6027,7 @@ public boolean equals(Object o) {
59736027
usageSummaryDateOrg.observabilityPipelinesBytesProcessedSum)
59746028
&& Objects.equals(this.ociHostSum, usageSummaryDateOrg.ociHostSum)
59756029
&& Objects.equals(this.ociHostTop99p, usageSummaryDateOrg.ociHostTop99p)
6030+
&& Objects.equals(this.onCallSeatHwm, usageSummaryDateOrg.onCallSeatHwm)
59766031
&& Objects.equals(
59776032
this.onlineArchiveEventsCountSum, usageSummaryDateOrg.onlineArchiveEventsCountSum)
59786033
&& Objects.equals(
@@ -6186,6 +6241,7 @@ public int hashCode() {
61866241
awsLambdaInvocationsSum,
61876242
azureAppServiceTop99p,
61886243
billableIngestedBytesSum,
6244+
bitsAiInvestigationsSum,
61896245
browserRumLiteSessionCountSum,
61906246
browserRumReplaySessionCountSum,
61916247
browserRumUnitsSum,
@@ -6292,6 +6348,7 @@ public int hashCode() {
62926348
observabilityPipelinesBytesProcessedSum,
62936349
ociHostSum,
62946350
ociHostTop99p,
6351+
onCallSeatHwm,
62956352
onlineArchiveEventsCountSum,
62966353
opentelemetryApmHostTop99p,
62976354
opentelemetryHostTop99p,
@@ -6418,6 +6475,9 @@ public String toString() {
64186475
sb.append(" billableIngestedBytesSum: ")
64196476
.append(toIndentedString(billableIngestedBytesSum))
64206477
.append("\n");
6478+
sb.append(" bitsAiInvestigationsSum: ")
6479+
.append(toIndentedString(bitsAiInvestigationsSum))
6480+
.append("\n");
64216481
sb.append(" browserRumLiteSessionCountSum: ")
64226482
.append(toIndentedString(browserRumLiteSessionCountSum))
64236483
.append("\n");
@@ -6670,6 +6730,7 @@ public String toString() {
66706730
.append("\n");
66716731
sb.append(" ociHostSum: ").append(toIndentedString(ociHostSum)).append("\n");
66726732
sb.append(" ociHostTop99p: ").append(toIndentedString(ociHostTop99p)).append("\n");
6733+
sb.append(" onCallSeatHwm: ").append(toIndentedString(onCallSeatHwm)).append("\n");
66736734
sb.append(" onlineArchiveEventsCountSum: ")
66746735
.append(toIndentedString(onlineArchiveEventsCountSum))
66756736
.append("\n");

0 commit comments

Comments
 (0)