Skip to content

Commit 5cb75d5

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add missing response fields to MTD usage attribution endpoint (#935)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 9d51aa3 commit 5cb75d5

File tree

3 files changed

+161
-4
lines changed

3 files changed

+161
-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": "2022-11-30 16:08:18.075461",
8-
"spec_repo_commit": "cb4d2fcb"
7+
"regenerated": "2022-11-30 16:38:15.609568",
8+
"spec_repo_commit": "0035b416"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-11-30 16:08:18.087055",
13-
"spec_repo_commit": "cb4d2fcb"
12+
"regenerated": "2022-11-30 16:38:15.620878",
13+
"spec_repo_commit": "0035b416"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7156,6 +7156,22 @@ components:
71567156
description: The container usage by tag(s).
71577157
format: double
71587158
type: number
7159+
cspm_containers_percentage:
7160+
description: The percentage of CSPM container usage by tag(s).
7161+
format: double
7162+
type: number
7163+
cspm_containers_usage:
7164+
description: The CSPM container usage by tag(s).
7165+
format: double
7166+
type: number
7167+
cspm_hosts_percentage:
7168+
description: The percentage of CSPM host usage by by tag(s).
7169+
format: double
7170+
type: number
7171+
cspm_hosts_usage:
7172+
description: The CSPM host usage by tag(s).
7173+
format: double
7174+
type: number
71597175
custom_timeseries_percentage:
71607176
description: The percentage of custom metrics usage by tag(s).
71617177
format: double
@@ -7164,6 +7180,39 @@ components:
71647180
description: The custom metrics usage by tag(s).
71657181
format: double
71667182
type: number
7183+
cws_containers_percentage:
7184+
description: The percentage of Cloud Workload Security container usage by
7185+
tag(s).
7186+
format: double
7187+
type: number
7188+
cws_containers_usage:
7189+
description: The Cloud Workload Security container usage by tag(s).
7190+
format: double
7191+
type: number
7192+
cws_hosts_percentage:
7193+
description: The percentage of Cloud Workload Security host usage by tag(s).
7194+
format: double
7195+
type: number
7196+
cws_hosts_usage:
7197+
description: The Cloud Workload Security host usage by tag(s).
7198+
format: double
7199+
type: number
7200+
dbm_hosts_percentage:
7201+
description: The percentage of Database Monitoring host usage by tag(s).
7202+
format: double
7203+
type: number
7204+
dbm_hosts_usage:
7205+
description: The Database Monitoring host usage by tag(s).
7206+
format: double
7207+
type: number
7208+
dbm_queries_percentage:
7209+
description: The percentage of Database Monitoring queries usage by tag(s).
7210+
format: double
7211+
type: number
7212+
dbm_queries_usage:
7213+
description: The Database Monitoring queries usage by tag(s).
7214+
format: double
7215+
type: number
71677216
estimated_indexed_logs_percentage:
71687217
description: The percentage of estimated live indexed logs usage by tag(s).
71697218
This field is in private beta.

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

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,22 @@ export class MonthlyUsageAttributionValues {
6666
* The container usage by tag(s).
6767
*/
6868
"containerUsage"?: number;
69+
/**
70+
* The percentage of CSPM container usage by tag(s).
71+
*/
72+
"cspmContainersPercentage"?: number;
73+
/**
74+
* The CSPM container usage by tag(s).
75+
*/
76+
"cspmContainersUsage"?: number;
77+
/**
78+
* The percentage of CSPM host usage by by tag(s).
79+
*/
80+
"cspmHostsPercentage"?: number;
81+
/**
82+
* The CSPM host usage by tag(s).
83+
*/
84+
"cspmHostsUsage"?: number;
6985
/**
7086
* The percentage of custom metrics usage by tag(s).
7187
*/
@@ -74,6 +90,38 @@ export class MonthlyUsageAttributionValues {
7490
* The custom metrics usage by tag(s).
7591
*/
7692
"customTimeseriesUsage"?: number;
93+
/**
94+
* The percentage of Cloud Workload Security container usage by tag(s).
95+
*/
96+
"cwsContainersPercentage"?: number;
97+
/**
98+
* The Cloud Workload Security container usage by tag(s).
99+
*/
100+
"cwsContainersUsage"?: number;
101+
/**
102+
* The percentage of Cloud Workload Security host usage by tag(s).
103+
*/
104+
"cwsHostsPercentage"?: number;
105+
/**
106+
* The Cloud Workload Security host usage by tag(s).
107+
*/
108+
"cwsHostsUsage"?: number;
109+
/**
110+
* The percentage of Database Monitoring host usage by tag(s).
111+
*/
112+
"dbmHostsPercentage"?: number;
113+
/**
114+
* The Database Monitoring host usage by tag(s).
115+
*/
116+
"dbmHostsUsage"?: number;
117+
/**
118+
* The percentage of Database Monitoring queries usage by tag(s).
119+
*/
120+
"dbmQueriesPercentage"?: number;
121+
/**
122+
* The Database Monitoring queries usage by tag(s).
123+
*/
124+
"dbmQueriesUsage"?: number;
77125
/**
78126
* The percentage of estimated live indexed logs usage by tag(s). This field is in private beta.
79127
*/
@@ -258,6 +306,26 @@ export class MonthlyUsageAttributionValues {
258306
type: "number",
259307
format: "double",
260308
},
309+
cspmContainersPercentage: {
310+
baseName: "cspm_containers_percentage",
311+
type: "number",
312+
format: "double",
313+
},
314+
cspmContainersUsage: {
315+
baseName: "cspm_containers_usage",
316+
type: "number",
317+
format: "double",
318+
},
319+
cspmHostsPercentage: {
320+
baseName: "cspm_hosts_percentage",
321+
type: "number",
322+
format: "double",
323+
},
324+
cspmHostsUsage: {
325+
baseName: "cspm_hosts_usage",
326+
type: "number",
327+
format: "double",
328+
},
261329
customTimeseriesPercentage: {
262330
baseName: "custom_timeseries_percentage",
263331
type: "number",
@@ -268,6 +336,46 @@ export class MonthlyUsageAttributionValues {
268336
type: "number",
269337
format: "double",
270338
},
339+
cwsContainersPercentage: {
340+
baseName: "cws_containers_percentage",
341+
type: "number",
342+
format: "double",
343+
},
344+
cwsContainersUsage: {
345+
baseName: "cws_containers_usage",
346+
type: "number",
347+
format: "double",
348+
},
349+
cwsHostsPercentage: {
350+
baseName: "cws_hosts_percentage",
351+
type: "number",
352+
format: "double",
353+
},
354+
cwsHostsUsage: {
355+
baseName: "cws_hosts_usage",
356+
type: "number",
357+
format: "double",
358+
},
359+
dbmHostsPercentage: {
360+
baseName: "dbm_hosts_percentage",
361+
type: "number",
362+
format: "double",
363+
},
364+
dbmHostsUsage: {
365+
baseName: "dbm_hosts_usage",
366+
type: "number",
367+
format: "double",
368+
},
369+
dbmQueriesPercentage: {
370+
baseName: "dbm_queries_percentage",
371+
type: "number",
372+
format: "double",
373+
},
374+
dbmQueriesUsage: {
375+
baseName: "dbm_queries_usage",
376+
type: "number",
377+
format: "double",
378+
},
271379
estimatedIndexedLogsPercentage: {
272380
baseName: "estimated_indexed_logs_percentage",
273381
type: "number",

0 commit comments

Comments
 (0)