Skip to content

Commit 59a603b

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Cloud Cost And Container Excl Agent Usage Fields (#1023)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent c51686a commit 59a603b

File tree

5 files changed

+60
-4
lines changed

5 files changed

+60
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.4",
7-
"regenerated": "2023-02-13 19:39:20.423919",
8-
"spec_repo_commit": "e92a3dde"
7+
"regenerated": "2023-02-13 20:03:52.116932",
8+
"spec_repo_commit": "ca2fb7b8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-02-13 19:39:20.436463",
13-
"spec_repo_commit": "e92a3dde"
12+
"regenerated": "2023-02-13 20:03:52.133767",
13+
"spec_repo_commit": "ca2fb7b8"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16683,11 +16683,21 @@ components:
1668316683
over all hours in the current month for all organizations.
1668416684
format: int64
1668516685
type: integer
16686+
cloud_cost_management_host_count_avg:
16687+
description: Host count average of Cloud Cost Management for the given date
16688+
and given organization.
16689+
format: int64
16690+
type: integer
1668616691
container_avg:
1668716692
description: Shows the average of all distinct containers over all hours
1668816693
in the current date for all organizations.
1668916694
format: int64
1669016695
type: integer
16696+
container_excl_agent_avg:
16697+
description: Shows the average of containers without the Datadog Agent over
16698+
all hours in the current date for all organizations.
16699+
format: int64
16700+
type: integer
1669116701
container_hwm:
1669216702
description: Shows the high-water mark of all distinct containers over all
1669316703
hours in the current date for all organizations.
@@ -17064,6 +17074,11 @@ components:
1706417074
in the current date for the given org.
1706517075
format: int64
1706617076
type: integer
17077+
container_excl_agent_avg:
17078+
description: Shows the average of containers without the Datadog Agent over
17079+
all hours in the current date for the given organization.
17080+
format: int64
17081+
type: integer
1706717082
container_hwm:
1706817083
description: Shows the high-water mark of all distinct containers over all
1706917084
hours in the current date for the given org.
@@ -17448,6 +17463,11 @@ components:
1744817463
in the current months for all organizations.
1744917464
format: int64
1745017465
type: integer
17466+
container_excl_agent_avg_sum:
17467+
description: Shows the average of the containers without the Datadog Agent
17468+
over all hours in the current month for all organizations.
17469+
format: int64
17470+
type: integer
1745117471
container_hwm_sum:
1745217472
description: Shows the sum of the high-water marks of all distinct containers
1745317473
over all hours in the current months for all organizations.

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,18 @@ export class UsageSummaryDate {
8787
* Shows the high-water mark of all CI visibility test committers over all hours in the current month for all organizations.
8888
*/
8989
"ciVisibilityTestCommittersHwm"?: number;
90+
/**
91+
* Host count average of Cloud Cost Management for the given date and given organization.
92+
*/
93+
"cloudCostManagementHostCountAvg"?: number;
9094
/**
9195
* Shows the average of all distinct containers over all hours in the current date for all organizations.
9296
*/
9397
"containerAvg"?: number;
98+
/**
99+
* Shows the average of containers without the Datadog Agent over all hours in the current date for all organizations.
100+
*/
101+
"containerExclAgentAvg"?: number;
94102
/**
95103
* Shows the high-water mark of all distinct containers over all hours in the current date for all organizations.
96104
*/
@@ -408,11 +416,21 @@ export class UsageSummaryDate {
408416
type: "number",
409417
format: "int64",
410418
},
419+
cloudCostManagementHostCountAvg: {
420+
baseName: "cloud_cost_management_host_count_avg",
421+
type: "number",
422+
format: "int64",
423+
},
411424
containerAvg: {
412425
baseName: "container_avg",
413426
type: "number",
414427
format: "int64",
415428
},
429+
containerExclAgentAvg: {
430+
baseName: "container_excl_agent_avg",
431+
type: "number",
432+
format: "int64",
433+
},
416434
containerHwm: {
417435
baseName: "container_hwm",
418436
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ export class UsageSummaryDateOrg {
9494
* Shows the average of all distinct containers over all hours in the current date for the given org.
9595
*/
9696
"containerAvg"?: number;
97+
/**
98+
* Shows the average of containers without the Datadog Agent over all hours in the current date for the given organization.
99+
*/
100+
"containerExclAgentAvg"?: number;
97101
/**
98102
* Shows the high-water mark of all distinct containers over all hours in the current date for the given org.
99103
*/
@@ -429,6 +433,11 @@ export class UsageSummaryDateOrg {
429433
type: "number",
430434
format: "int64",
431435
},
436+
containerExclAgentAvg: {
437+
baseName: "container_excl_agent_avg",
438+
type: "number",
439+
format: "int64",
440+
},
432441
containerHwm: {
433442
baseName: "container_hwm",
434443
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ export class UsageSummaryResponse {
100100
* Shows the average of all distinct containers over all hours in the current months for all organizations.
101101
*/
102102
"containerAvgSum"?: number;
103+
/**
104+
* Shows the average of the containers without the Datadog Agent over all hours in the current month for all organizations.
105+
*/
106+
"containerExclAgentAvgSum"?: number;
103107
/**
104108
* Shows the sum of the high-water marks of all distinct containers over all hours in the current months for all organizations.
105109
*/
@@ -464,6 +468,11 @@ export class UsageSummaryResponse {
464468
type: "number",
465469
format: "int64",
466470
},
471+
containerExclAgentAvgSum: {
472+
baseName: "container_excl_agent_avg_sum",
473+
type: "number",
474+
format: "int64",
475+
},
467476
containerHwmSum: {
468477
baseName: "container_hwm_sum",
469478
type: "number",

0 commit comments

Comments
 (0)