Skip to content

Commit 769366f

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

File tree

6 files changed

+87
-3
lines changed

6 files changed

+87
-3
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`,

services/usage_metering/src/v1/models/UsageSummaryDate.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ export class UsageSummaryDate {
6666
* Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
6767
*/
6868
"billableIngestedBytesSum"?: number;
69+
/**
70+
* Shows the sum of all Bits AI Investigations over all hours in the current date for all organizations.
71+
*/
72+
"bitsAiInvestigationsSum"?: number;
6973
/**
7074
* Shows the sum of all browser lite sessions over all hours in the current date for all organizations (To be deprecated on October 1st, 2024).
7175
*/
@@ -478,6 +482,10 @@ export class UsageSummaryDate {
478482
* Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
479483
*/
480484
"ociHostTop99P"?: number;
485+
/**
486+
* Shows the high-water mark of On-Call seats over all hours in the current date for all organizations.
487+
*/
488+
"onCallSeatHwm"?: number;
481489
/**
482490
* Sum of all online archived events over all hours in the current date for all organizations.
483491
*/
@@ -900,6 +908,11 @@ export class UsageSummaryDate {
900908
type: "number",
901909
format: "int64",
902910
},
911+
bitsAiInvestigationsSum: {
912+
baseName: "bits_ai_investigations_sum",
913+
type: "number",
914+
format: "int64",
915+
},
903916
browserRumLiteSessionCountSum: {
904917
baseName: "browser_rum_lite_session_count_sum",
905918
type: "number",
@@ -1415,6 +1428,11 @@ export class UsageSummaryDate {
14151428
type: "number",
14161429
format: "int64",
14171430
},
1431+
onCallSeatHwm: {
1432+
baseName: "on_call_seat_hwm",
1433+
type: "number",
1434+
format: "int64",
1435+
},
14181436
onlineArchiveEventsCountSum: {
14191437
baseName: "online_archive_events_count_sum",
14201438
type: "number",

services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ export class UsageSummaryDateOrg {
7272
* Shows the sum of all log bytes ingested over all hours in the current date for the given org.
7373
*/
7474
"billableIngestedBytesSum"?: number;
75+
/**
76+
* Shows the sum of all Bits AI Investigations over all hours in the current date for the given org.
77+
*/
78+
"bitsAiInvestigationsSum"?: number;
7579
/**
7680
* Shows the sum of all browser lite sessions over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
7781
*/
@@ -496,6 +500,10 @@ export class UsageSummaryDateOrg {
496500
* Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
497501
*/
498502
"ociHostTop99P"?: number;
503+
/**
504+
* Shows the high-water mark of On-Call seats over all hours in the current date for the given org.
505+
*/
506+
"onCallSeatHwm"?: number;
499507
/**
500508
* Sum of all online archived events over all hours in the current date for the given org.
501509
*/
@@ -930,6 +938,11 @@ export class UsageSummaryDateOrg {
930938
type: "number",
931939
format: "int64",
932940
},
941+
bitsAiInvestigationsSum: {
942+
baseName: "bits_ai_investigations_sum",
943+
type: "number",
944+
format: "int64",
945+
},
933946
browserRumLiteSessionCountSum: {
934947
baseName: "browser_rum_lite_session_count_sum",
935948
type: "number",
@@ -1458,6 +1471,11 @@ export class UsageSummaryDateOrg {
14581471
type: "number",
14591472
format: "int64",
14601473
},
1474+
onCallSeatHwm: {
1475+
baseName: "on_call_seat_hwm",
1476+
type: "number",
1477+
format: "int64",
1478+
},
14611479
onlineArchiveEventsCountSum: {
14621480
baseName: "online_archive_events_count_sum",
14631481
type: "number",

services/usage_metering/src/v1/models/UsageSummaryResponse.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ export class UsageSummaryResponse {
7171
* Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
7272
*/
7373
"billableIngestedBytesAggSum"?: number;
74+
/**
75+
* Shows the sum of all Bits AI Investigations over all hours in the current month for all organizations.
76+
*/
77+
"bitsAiInvestigationsAggSum"?: number;
7478
/**
7579
* Shows the sum of all browser lite sessions over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
7680
*/
@@ -507,6 +511,10 @@ export class UsageSummaryResponse {
507511
* Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
508512
*/
509513
"ociHostTop99PSum"?: number;
514+
/**
515+
* Shows the sum of the high-water marks of On-Call seats over all hours in the current month for all organizations.
516+
*/
517+
"onCallSeatHwmSum"?: number;
510518
/**
511519
* Sum of all online archived events over all hours in the current month for all organizations.
512520
*/
@@ -950,6 +958,11 @@ export class UsageSummaryResponse {
950958
type: "number",
951959
format: "int64",
952960
},
961+
bitsAiInvestigationsAggSum: {
962+
baseName: "bits_ai_investigations_agg_sum",
963+
type: "number",
964+
format: "int64",
965+
},
953966
browserRumLiteSessionCountAggSum: {
954967
baseName: "browser_rum_lite_session_count_agg_sum",
955968
type: "number",
@@ -1495,6 +1508,11 @@ export class UsageSummaryResponse {
14951508
type: "number",
14961509
format: "int64",
14971510
},
1511+
onCallSeatHwmSum: {
1512+
baseName: "on_call_seat_hwm_sum",
1513+
type: "number",
1514+
format: "int64",
1515+
},
14981516
onlineArchiveEventsCountAggSum: {
14991517
baseName: "online_archive_events_count_agg_sum",
15001518
type: "number",

services/usage_metering/src/v2/UsageMeteringApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,7 +1606,7 @@ export interface UsageMeteringApiGetHourlyUsageRequest {
16061606
filterTimestampStart: Date;
16071607
/**
16081608
* Comma separated list of product families to retrieve. Available families are `all`, `analyzed_logs`,
1609-
* `application_security`, `audit_trail`, `serverless`, `ci_app`, `cloud_cost_management`, `cloud_siem`,
1609+
* `application_security`, `audit_trail`, `bits_ai`, `serverless`, `ci_app`, `cloud_cost_management`, `cloud_siem`,
16101610
* `csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`, `cws`, `dbm`, `error_tracking`,
16111611
* `fargate`, `infra_hosts`, `incident_management`, `indexed_logs`, `indexed_spans`, `ingested_spans`, `iot`,
16121612
* `lambda_traced_invocations`, `llm_observability`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`,

0 commit comments

Comments
 (0)