Skip to content

Commit 69f4bee

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 198de0e of spec repo
1 parent 348ee50 commit 69f4bee

4 files changed

Lines changed: 39 additions & 0 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22439,6 +22439,10 @@ components:
2243922439
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
2244022440
format: int64
2244122441
type: integer
22442+
infra_storage_mgmt_objects_count_avg:
22443+
description: Shows the average number of storage management objects over all hours in the current date for all organizations.
22444+
format: int64
22445+
type: integer
2244222446
ingested_events_bytes_sum:
2244322447
description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
2244422448
format: int64
@@ -23436,6 +23440,10 @@ components:
2343623440
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
2343723441
format: int64
2343823442
type: integer
23443+
infra_storage_mgmt_objects_count_avg:
23444+
description: Shows the average number of storage management objects over all hours in the current date for the given org.
23445+
format: int64
23446+
type: integer
2343923447
ingested_events_bytes_sum:
2344023448
description: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
2344123449
format: int64
@@ -24436,6 +24444,10 @@ components:
2443624444
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
2443724445
format: int64
2443824446
type: integer
24447+
infra_storage_mgmt_objects_count_avg_sum:
24448+
description: Shows the average number of storage management objects over all hours in the current month for all organizations.
24449+
format: int64
24450+
type: integer
2443924451
ingested_events_bytes_agg_sum:
2444024452
description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
2444124453
format: int64

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,10 @@ export class UsageSummaryDate {
526526
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
527527
*/
528528
"infraHostTop99p"?: number;
529+
/**
530+
* Shows the average number of storage management objects over all hours in the current date for all organizations.
531+
*/
532+
"infraStorageMgmtObjectsCountAvg"?: number;
529533
/**
530534
* Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
531535
*/
@@ -1635,6 +1639,11 @@ export class UsageSummaryDate {
16351639
type: "number",
16361640
format: "int64",
16371641
},
1642+
infraStorageMgmtObjectsCountAvg: {
1643+
baseName: "infra_storage_mgmt_objects_count_avg",
1644+
type: "number",
1645+
format: "int64",
1646+
},
16381647
ingestedEventsBytesSum: {
16391648
baseName: "ingested_events_bytes_sum",
16401649
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,10 @@ export class UsageSummaryDateOrg {
540540
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
541541
*/
542542
"infraHostTop99p"?: number;
543+
/**
544+
* Shows the average number of storage management objects over all hours in the current date for the given org.
545+
*/
546+
"infraStorageMgmtObjectsCountAvg"?: number;
543547
/**
544548
* Shows the sum of all log bytes ingested over all hours in the current date for the given org.
545549
*/
@@ -1674,6 +1678,11 @@ export class UsageSummaryDateOrg {
16741678
type: "number",
16751679
format: "int64",
16761680
},
1681+
infraStorageMgmtObjectsCountAvg: {
1682+
baseName: "infra_storage_mgmt_objects_count_avg",
1683+
type: "number",
1684+
format: "int64",
1685+
},
16771686
ingestedEventsBytesSum: {
16781687
baseName: "ingested_events_bytes_sum",
16791688
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,10 @@ export class UsageSummaryResponse {
539539
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
540540
*/
541541
"infraHostTop99pSum"?: number;
542+
/**
543+
* Shows the average number of storage management objects over all hours in the current month for all organizations.
544+
*/
545+
"infraStorageMgmtObjectsCountAvgSum"?: number;
542546
/**
543547
* Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
544548
*/
@@ -1696,6 +1700,11 @@ export class UsageSummaryResponse {
16961700
type: "number",
16971701
format: "int64",
16981702
},
1703+
infraStorageMgmtObjectsCountAvgSum: {
1704+
baseName: "infra_storage_mgmt_objects_count_avg_sum",
1705+
type: "number",
1706+
format: "int64",
1707+
},
16991708
ingestedEventsBytesAggSum: {
17001709
baseName: "ingested_events_bytes_agg_sum",
17011710
type: "number",

0 commit comments

Comments
 (0)