Skip to content

Commit 6f4bcad

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit de9340c of spec repo
1 parent 16f0cc7 commit 6f4bcad

File tree

4 files changed

+42
-0
lines changed

4 files changed

+42
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21196,6 +21196,11 @@ components:
2119621196
users over all hours in the current date for all organizations.
2119721197
format: int64
2119821198
type: integer
21199+
incident_management_seats_hwm:
21200+
description: Shows the high-water mark of Incident Management seats over
21201+
all hours in the current date for all organizations.
21202+
format: int64
21203+
type: integer
2119921204
indexed_events_count_sum:
2120021205
description: Shows the sum of all log events indexed over all hours in the
2120121206
current date for all organizations.
@@ -22312,6 +22317,11 @@ components:
2231222317
users over all hours in the current date for the given org.
2231322318
format: int64
2231422319
type: integer
22320+
incident_management_seats_hwm:
22321+
description: Shows the high-water mark of Incident Management seats over
22322+
all hours in the current date for the given org.
22323+
format: int64
22324+
type: integer
2231522325
indexed_events_count_sum:
2231622326
deprecated: true
2231722327
description: Shows the sum of all log events indexed over all hours in the
@@ -23429,6 +23439,11 @@ components:
2342923439
active users in the current month for all organizations.
2343023440
format: int64
2343123441
type: integer
23442+
incident_management_seats_hwm_sum:
23443+
description: Shows the sum of the high-water marks of Incident Management
23444+
seats over all hours in the current month for all organizations.
23445+
format: int64
23446+
type: integer
2343223447
indexed_events_count_agg_sum:
2343323448
deprecated: true
2343423449
description: Shows the sum of all log events indexed over all hours in the

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,10 @@ export class UsageSummaryDate {
407407
* Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations.
408408
*/
409409
"incidentManagementMonthlyActiveUsersHwm"?: number;
410+
/**
411+
* Shows the high-water mark of Incident Management seats over all hours in the current date for all organizations.
412+
*/
413+
"incidentManagementSeatsHwm"?: number;
410414
/**
411415
* Shows the sum of all log events indexed over all hours in the current date for all organizations.
412416
*/
@@ -1343,6 +1347,11 @@ export class UsageSummaryDate {
13431347
type: "number",
13441348
format: "int64",
13451349
},
1350+
incidentManagementSeatsHwm: {
1351+
baseName: "incident_management_seats_hwm",
1352+
type: "number",
1353+
format: "int64",
1354+
},
13461355
indexedEventsCountSum: {
13471356
baseName: "indexed_events_count_sum",
13481357
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,10 @@ export class UsageSummaryDateOrg {
422422
* Shows the high-water mark of incident management monthly active users over all hours in the current date for the given org.
423423
*/
424424
"incidentManagementMonthlyActiveUsersHwm"?: number;
425+
/**
426+
* Shows the high-water mark of Incident Management seats over all hours in the current date for the given org.
427+
*/
428+
"incidentManagementSeatsHwm"?: number;
425429
/**
426430
* Shows the sum of all log events indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
427431
*/
@@ -1383,6 +1387,11 @@ export class UsageSummaryDateOrg {
13831387
type: "number",
13841388
format: "int64",
13851389
},
1390+
incidentManagementSeatsHwm: {
1391+
baseName: "incident_management_seats_hwm",
1392+
type: "number",
1393+
format: "int64",
1394+
},
13861395
indexedEventsCountSum: {
13871396
baseName: "indexed_events_count_sum",
13881397
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,10 @@ export class UsageSummaryResponse {
420420
* Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations.
421421
*/
422422
"incidentManagementMonthlyActiveUsersHwmSum"?: number;
423+
/**
424+
* Shows the sum of the high-water marks of Incident Management seats over all hours in the current month for all organizations.
425+
*/
426+
"incidentManagementSeatsHwmSum"?: number;
423427
/**
424428
* Shows the sum of all log events indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
425429
*/
@@ -1404,6 +1408,11 @@ export class UsageSummaryResponse {
14041408
type: "number",
14051409
format: "int64",
14061410
},
1411+
incidentManagementSeatsHwmSum: {
1412+
baseName: "incident_management_seats_hwm_sum",
1413+
type: "number",
1414+
format: "int64",
1415+
},
14071416
indexedEventsCountAggSum: {
14081417
baseName: "indexed_events_count_agg_sum",
14091418
type: "number",

0 commit comments

Comments
 (0)