Skip to content

Commit d480af1

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 713cd02c of spec repo (#739)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 78e30a2 commit d480af1

File tree

5 files changed

+94
-4
lines changed

5 files changed

+94
-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.2",
7-
"regenerated": "2022-07-01 08:41:15.466848",
8-
"spec_repo_commit": "be2f0c5e"
7+
"regenerated": "2022-07-01 20:48:49.879703",
8+
"spec_repo_commit": "713cd02c"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.2",
12-
"regenerated": "2022-07-01 08:41:15.484273",
13-
"spec_repo_commit": "be2f0c5e"
12+
"regenerated": "2022-07-01 20:48:49.894485",
13+
"spec_repo_commit": "713cd02c"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3629,7 +3629,13 @@ components:
36293629
- appsec_usage
36303630
- browser_usage
36313631
- container_usage
3632+
- cspm_containers_usage
3633+
- cspm_hosts_usage
36323634
- custom_timeseries_usage
3635+
- cws_containers_usage
3636+
- cws_hosts_usage
3637+
- dbm_hosts_usage
3638+
- dbm_queries_usage
36333639
- estimated_indexed_logs_usage
36343640
- estimated_indexed_spans_usage
36353641
- fargate_usage
@@ -3648,7 +3654,13 @@ components:
36483654
- APPSEC_USAGE
36493655
- BROWSER_USAGE
36503656
- CONTAINER_USAGE
3657+
- CSPM_CONTAINERS_USAGE
3658+
- CSPM_HOSTS_USAGE
36513659
- CUSTOM_TIMESERIES_USAGE
3660+
- CWS_CONTAINERS_USAGE
3661+
- CWS_HOSTS_USAGE
3662+
- DBM_HOSTS_USAGE
3663+
- DBM_QUERIES_USAGE
36523664
- ESTIMATED_INDEXED_LOGS_USAGE
36533665
- ESTIMATED_INDEXED_SPANS_USAGE
36543666
- FARGATE_USAGE
@@ -6839,8 +6851,20 @@ components:
68396851
- browser_percentage
68406852
- container_usage
68416853
- container_percentage
6854+
- cspm_containers_percentage
6855+
- cspm_containers_usage
6856+
- cspm_hosts_percentage
6857+
- cspm_hosts_usage
68426858
- custom_timeseries_usage
68436859
- custom_timeseries_percentage
6860+
- cws_containers_percentage
6861+
- cws_containers_usage
6862+
- cws_hosts_percentage
6863+
- cws_hosts_usage
6864+
- dbm_hosts_percentage
6865+
- dbm_hosts_usage
6866+
- dbm_queries_percentage
6867+
- dbm_queries_usage
68446868
- estimated_indexed_logs_usage
68456869
- estimated_indexed_logs_percentage
68466870
- estimated_indexed_spans_usage
@@ -6876,8 +6900,20 @@ components:
68766900
- BROWSER_PERCENTAGE
68776901
- CONTAINER_USAGE
68786902
- CONTAINER_PERCENTAGE
6903+
- CSPM_CONTAINERS_PERCENTAGE
6904+
- CSPM_CONTAINERS_USAGE
6905+
- CSPM_HOSTS_PERCENTAGE
6906+
- CSPM_HOSTS_USAGE
68796907
- CUSTOM_TIMESERIES_USAGE
68806908
- CUSTOM_TIMESERIES_PERCENTAGE
6909+
- CWS_CONTAINERS_PERCENTAGE
6910+
- CWS_CONTAINERS_USAGE
6911+
- CWS_HOSTS_PERCENTAGE
6912+
- CWS_HOSTS_USAGE
6913+
- DBM_HOSTS_PERCENTAGE
6914+
- DBM_HOSTS_USAGE
6915+
- DBM_QUERIES_PERCENTAGE
6916+
- DBM_QUERIES_USAGE
68816917
- ESTIMATED_INDEXED_LOGS_USAGE
68826918
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
68836919
- ESTIMATED_INDEXED_SPANS_USAGE

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ export type HourlyUsageAttributionUsageType =
1010
| typeof APPSEC_USAGE
1111
| typeof BROWSER_USAGE
1212
| typeof CONTAINER_USAGE
13+
| typeof CSPM_CONTAINERS_USAGE
14+
| typeof CSPM_HOSTS_USAGE
1315
| typeof CUSTOM_TIMESERIES_USAGE
16+
| typeof CWS_CONTAINERS_USAGE
17+
| typeof CWS_HOSTS_USAGE
18+
| typeof DBM_HOSTS_USAGE
19+
| typeof DBM_QUERIES_USAGE
1420
| typeof ESTIMATED_INDEXED_LOGS_USAGE
1521
| typeof ESTIMATED_INDEXED_SPANS_USAGE
1622
| typeof FARGATE_USAGE
@@ -27,7 +33,13 @@ export const APM_HOST_USAGE = "apm_host_usage";
2733
export const APPSEC_USAGE = "appsec_usage";
2834
export const BROWSER_USAGE = "browser_usage";
2935
export const CONTAINER_USAGE = "container_usage";
36+
export const CSPM_CONTAINERS_USAGE = "cspm_containers_usage";
37+
export const CSPM_HOSTS_USAGE = "cspm_hosts_usage";
3038
export const CUSTOM_TIMESERIES_USAGE = "custom_timeseries_usage";
39+
export const CWS_CONTAINERS_USAGE = "cws_containers_usage";
40+
export const CWS_HOSTS_USAGE = "cws_hosts_usage";
41+
export const DBM_HOSTS_USAGE = "dbm_hosts_usage";
42+
export const DBM_QUERIES_USAGE = "dbm_queries_usage";
3143
export const ESTIMATED_INDEXED_LOGS_USAGE = "estimated_indexed_logs_usage";
3244
export const ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage";
3345
export const FARGATE_USAGE = "fargate_usage";

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,20 @@ export type MonthlyUsageAttributionSupportedMetrics =
1515
| typeof BROWSER_PERCENTAGE
1616
| typeof CONTAINER_USAGE
1717
| typeof CONTAINER_PERCENTAGE
18+
| typeof CSPM_CONTAINERS_PERCENTAGE
19+
| typeof CSPM_CONTAINERS_USAGE
20+
| typeof CSPM_HOSTS_PERCENTAGE
21+
| typeof CSPM_HOSTS_USAGE
1822
| typeof CUSTOM_TIMESERIES_USAGE
1923
| typeof CUSTOM_TIMESERIES_PERCENTAGE
24+
| typeof CWS_CONTAINERS_PERCENTAGE
25+
| typeof CWS_CONTAINERS_USAGE
26+
| typeof CWS_HOSTS_PERCENTAGE
27+
| typeof CWS_HOSTS_USAGE
28+
| typeof DBM_HOSTS_PERCENTAGE
29+
| typeof DBM_HOSTS_USAGE
30+
| typeof DBM_QUERIES_PERCENTAGE
31+
| typeof DBM_QUERIES_USAGE
2032
| typeof ESTIMATED_INDEXED_LOGS_USAGE
2133
| typeof ESTIMATED_INDEXED_LOGS_PERCENTAGE
2234
| typeof ESTIMATED_INDEXED_SPANS_USAGE
@@ -50,8 +62,20 @@ export const BROWSER_USAGE = "browser_usage";
5062
export const BROWSER_PERCENTAGE = "browser_percentage";
5163
export const CONTAINER_USAGE = "container_usage";
5264
export const CONTAINER_PERCENTAGE = "container_percentage";
65+
export const CSPM_CONTAINERS_PERCENTAGE = "cspm_containers_percentage";
66+
export const CSPM_CONTAINERS_USAGE = "cspm_containers_usage";
67+
export const CSPM_HOSTS_PERCENTAGE = "cspm_hosts_percentage";
68+
export const CSPM_HOSTS_USAGE = "cspm_hosts_usage";
5369
export const CUSTOM_TIMESERIES_USAGE = "custom_timeseries_usage";
5470
export const CUSTOM_TIMESERIES_PERCENTAGE = "custom_timeseries_percentage";
71+
export const CWS_CONTAINERS_PERCENTAGE = "cws_containers_percentage";
72+
export const CWS_CONTAINERS_USAGE = "cws_containers_usage";
73+
export const CWS_HOSTS_PERCENTAGE = "cws_hosts_percentage";
74+
export const CWS_HOSTS_USAGE = "cws_hosts_usage";
75+
export const DBM_HOSTS_PERCENTAGE = "dbm_hosts_percentage";
76+
export const DBM_HOSTS_USAGE = "dbm_hosts_usage";
77+
export const DBM_QUERIES_PERCENTAGE = "dbm_queries_percentage";
78+
export const DBM_QUERIES_USAGE = "dbm_queries_usage";
5579
export const ESTIMATED_INDEXED_LOGS_USAGE = "estimated_indexed_logs_usage";
5680
export const ESTIMATED_INDEXED_LOGS_PERCENTAGE =
5781
"estimated_indexed_logs_percentage";

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,13 @@ const enumsMap: { [key: string]: any[] } = {
657657
"appsec_usage",
658658
"browser_usage",
659659
"container_usage",
660+
"cspm_containers_usage",
661+
"cspm_hosts_usage",
660662
"custom_timeseries_usage",
663+
"cws_containers_usage",
664+
"cws_hosts_usage",
665+
"dbm_hosts_usage",
666+
"dbm_queries_usage",
661667
"estimated_indexed_logs_usage",
662668
"estimated_indexed_spans_usage",
663669
"fargate_usage",
@@ -769,8 +775,20 @@ const enumsMap: { [key: string]: any[] } = {
769775
"browser_percentage",
770776
"container_usage",
771777
"container_percentage",
778+
"cspm_containers_percentage",
779+
"cspm_containers_usage",
780+
"cspm_hosts_percentage",
781+
"cspm_hosts_usage",
772782
"custom_timeseries_usage",
773783
"custom_timeseries_percentage",
784+
"cws_containers_percentage",
785+
"cws_containers_usage",
786+
"cws_hosts_percentage",
787+
"cws_hosts_usage",
788+
"dbm_hosts_percentage",
789+
"dbm_hosts_usage",
790+
"dbm_queries_percentage",
791+
"dbm_queries_usage",
774792
"estimated_indexed_logs_usage",
775793
"estimated_indexed_logs_percentage",
776794
"estimated_indexed_spans_usage",

0 commit comments

Comments
 (0)