Skip to content

Commit 5911b79

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

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`,

packages/datadog-api-client-v1/models/UsageSummaryDate.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ export class UsageSummaryDate {
7171
* Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
7272
*/
7373
"billableIngestedBytesSum"?: number;
74+
/**
75+
* Shows the sum of all Bits AI Investigations over all hours in the current date for all organizations.
76+
*/
77+
"bitsAiInvestigationsSum"?: number;
7478
/**
7579
* 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).
7680
*/
@@ -483,6 +487,10 @@ export class UsageSummaryDate {
483487
* Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
484488
*/
485489
"ociHostTop99P"?: number;
490+
/**
491+
* Shows the high-water mark of On-Call seats over all hours in the current date for all organizations.
492+
*/
493+
"onCallSeatHwm"?: number;
486494
/**
487495
* Sum of all online archived events over all hours in the current date for all organizations.
488496
*/
@@ -907,6 +915,11 @@ export class UsageSummaryDate {
907915
type: "number",
908916
format: "int64",
909917
},
918+
bitsAiInvestigationsSum: {
919+
baseName: "bits_ai_investigations_sum",
920+
type: "number",
921+
format: "int64",
922+
},
910923
browserRumLiteSessionCountSum: {
911924
baseName: "browser_rum_lite_session_count_sum",
912925
type: "number",
@@ -1422,6 +1435,11 @@ export class UsageSummaryDate {
14221435
type: "number",
14231436
format: "int64",
14241437
},
1438+
onCallSeatHwm: {
1439+
baseName: "on_call_seat_hwm",
1440+
type: "number",
1441+
format: "int64",
1442+
},
14251443
onlineArchiveEventsCountSum: {
14261444
baseName: "online_archive_events_count_sum",
14271445
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ export class UsageSummaryDateOrg {
7878
* Shows the sum of all log bytes ingested over all hours in the current date for the given org.
7979
*/
8080
"billableIngestedBytesSum"?: number;
81+
/**
82+
* Shows the sum of all Bits AI Investigations over all hours in the current date for the given org.
83+
*/
84+
"bitsAiInvestigationsSum"?: number;
8185
/**
8286
* 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).
8387
*/
@@ -502,6 +506,10 @@ export class UsageSummaryDateOrg {
502506
* Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
503507
*/
504508
"ociHostTop99P"?: number;
509+
/**
510+
* Shows the high-water mark of On-Call seats over all hours in the current date for the given org.
511+
*/
512+
"onCallSeatHwm"?: number;
505513
/**
506514
* Sum of all online archived events over all hours in the current date for the given org.
507515
*/
@@ -938,6 +946,11 @@ export class UsageSummaryDateOrg {
938946
type: "number",
939947
format: "int64",
940948
},
949+
bitsAiInvestigationsSum: {
950+
baseName: "bits_ai_investigations_sum",
951+
type: "number",
952+
format: "int64",
953+
},
941954
browserRumLiteSessionCountSum: {
942955
baseName: "browser_rum_lite_session_count_sum",
943956
type: "number",
@@ -1466,6 +1479,11 @@ export class UsageSummaryDateOrg {
14661479
type: "number",
14671480
format: "int64",
14681481
},
1482+
onCallSeatHwm: {
1483+
baseName: "on_call_seat_hwm",
1484+
type: "number",
1485+
format: "int64",
1486+
},
14691487
onlineArchiveEventsCountSum: {
14701488
baseName: "online_archive_events_count_sum",
14711489
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryResponse.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ export class UsageSummaryResponse {
7676
* Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
7777
*/
7878
"billableIngestedBytesAggSum"?: number;
79+
/**
80+
* Shows the sum of all Bits AI Investigations over all hours in the current month for all organizations.
81+
*/
82+
"bitsAiInvestigationsAggSum"?: number;
7983
/**
8084
* 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).
8185
*/
@@ -512,6 +516,10 @@ export class UsageSummaryResponse {
512516
* Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
513517
*/
514518
"ociHostTop99PSum"?: number;
519+
/**
520+
* Shows the sum of the high-water marks of On-Call seats over all hours in the current month for all organizations.
521+
*/
522+
"onCallSeatHwmSum"?: number;
515523
/**
516524
* Sum of all online archived events over all hours in the current month for all organizations.
517525
*/
@@ -957,6 +965,11 @@ export class UsageSummaryResponse {
957965
type: "number",
958966
format: "int64",
959967
},
968+
bitsAiInvestigationsAggSum: {
969+
baseName: "bits_ai_investigations_agg_sum",
970+
type: "number",
971+
format: "int64",
972+
},
960973
browserRumLiteSessionCountAggSum: {
961974
baseName: "browser_rum_lite_session_count_agg_sum",
962975
type: "number",
@@ -1502,6 +1515,11 @@ export class UsageSummaryResponse {
15021515
type: "number",
15031516
format: "int64",
15041517
},
1518+
onCallSeatHwmSum: {
1519+
baseName: "on_call_seat_hwm_sum",
1520+
type: "number",
1521+
format: "int64",
1522+
},
15051523
onlineArchiveEventsCountAggSum: {
15061524
baseName: "online_archive_events_count_agg_sum",
15071525
type: "number",

packages/datadog-api-client-v2/apis/UsageMeteringApi.ts

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

0 commit comments

Comments
 (0)