Skip to content

Commit fe94780

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b4519e6 of spec repo
1 parent 9c0f90b commit fe94780

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 on 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 on the current date for the given organization.
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

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,10 @@ export class UsageSummaryDate {
402402
* Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations.
403403
*/
404404
"incidentManagementMonthlyActiveUsersHwm"?: number;
405+
/**
406+
* Shows the high-water mark of Incident Management seats over all hours on the current date for all organizations.
407+
*/
408+
"incidentManagementSeatsHwm"?: number;
405409
/**
406410
* Shows the sum of all log events indexed over all hours in the current date for all organizations.
407411
*/
@@ -1336,6 +1340,11 @@ export class UsageSummaryDate {
13361340
type: "number",
13371341
format: "int64",
13381342
},
1343+
incidentManagementSeatsHwm: {
1344+
baseName: "incident_management_seats_hwm",
1345+
type: "number",
1346+
format: "int64",
1347+
},
13391348
indexedEventsCountSum: {
13401349
baseName: "indexed_events_count_sum",
13411350
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,10 @@ export class UsageSummaryDateOrg {
416416
* Shows the high-water mark of incident management monthly active users over all hours in the current date for the given org.
417417
*/
418418
"incidentManagementMonthlyActiveUsersHwm"?: number;
419+
/**
420+
* Shows the high-water mark of Incident Management seats over all hours on the current date for the given organization.
421+
*/
422+
"incidentManagementSeatsHwm"?: number;
419423
/**
420424
* 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).
421425
*/
@@ -1375,6 +1379,11 @@ export class UsageSummaryDateOrg {
13751379
type: "number",
13761380
format: "int64",
13771381
},
1382+
incidentManagementSeatsHwm: {
1383+
baseName: "incident_management_seats_hwm",
1384+
type: "number",
1385+
format: "int64",
1386+
},
13781387
indexedEventsCountSum: {
13791388
baseName: "indexed_events_count_sum",
13801389
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,10 @@ export class UsageSummaryResponse {
415415
* Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations.
416416
*/
417417
"incidentManagementMonthlyActiveUsersHwmSum"?: number;
418+
/**
419+
* Shows the sum of the high-water marks of Incident Management seats over all hours in the current month for all organizations.
420+
*/
421+
"incidentManagementSeatsHwmSum"?: number;
418422
/**
419423
* 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).
420424
*/
@@ -1397,6 +1401,11 @@ export class UsageSummaryResponse {
13971401
type: "number",
13981402
format: "int64",
13991403
},
1404+
incidentManagementSeatsHwmSum: {
1405+
baseName: "incident_management_seats_hwm_sum",
1406+
type: "number",
1407+
format: "int64",
1408+
},
14001409
indexedEventsCountAggSum: {
14011410
baseName: "indexed_events_count_agg_sum",
14021411
type: "number",

0 commit comments

Comments
 (0)