File tree 6 files changed +33
-4
lines changed
packages/datadog-api-client-v1/models
6 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2024-09-30 19:44:33.843136 ",
8
- "spec_repo_commit": "909e369c "
7
+ "regenerated": "2024-10-01 14:24:21.173399 ",
8
+ "spec_repo_commit": "d90ee2ef "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-09-30 19:44:33.857386 ",
13
- "spec_repo_commit": "909e369c "
12
+ "regenerated": "2024-10-01 14:24:21.190923 ",
13
+ "spec_repo_commit": "d90ee2ef "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -4182,6 +4182,7 @@ components:
4182
4182
- custom_timeseries_usage
4183
4183
- cws_containers_usage
4184
4184
- cws_hosts_usage
4185
+ - data_jobs_monitoring_usage
4185
4186
- dbm_hosts_usage
4186
4187
- dbm_queries_usage
4187
4188
- error_tracking_usage
@@ -4255,6 +4256,7 @@ components:
4255
4256
- CUSTOM_TIMESERIES_USAGE
4256
4257
- CWS_CONTAINERS_USAGE
4257
4258
- CWS_HOSTS_USAGE
4259
+ - DATA_JOBS_MONITORING_USAGE
4258
4260
- DBM_HOSTS_USAGE
4259
4261
- DBM_QUERIES_USAGE
4260
4262
- ERROR_TRACKING_USAGE
@@ -7935,6 +7937,8 @@ components:
7935
7937
- cws_containers_usage
7936
7938
- cws_hosts_percentage
7937
7939
- cws_hosts_usage
7940
+ - data_jobs_monitoring_usage
7941
+ - data_jobs_monitoring_percentage
7938
7942
- dbm_hosts_percentage
7939
7943
- dbm_hosts_usage
7940
7944
- dbm_queries_percentage
@@ -8076,6 +8080,8 @@ components:
8076
8080
- CWS_CONTAINERS_USAGE
8077
8081
- CWS_HOSTS_PERCENTAGE
8078
8082
- CWS_HOSTS_USAGE
8083
+ - DATA_JOBS_MONITORING_USAGE
8084
+ - DATA_JOBS_MONITORING_PERCENTAGE
8079
8085
- DBM_HOSTS_PERCENTAGE
8080
8086
- DBM_HOSTS_USAGE
8081
8087
- DBM_QUERIES_PERCENTAGE
@@ -8363,6 +8369,10 @@ components:
8363
8369
description: The Cloud Workload Security host usage by tag(s).
8364
8370
format: double
8365
8371
type: number
8372
+ data_jobs_monitoring_usage:
8373
+ description: The Data Jobs Monitoring usage by tag(s).
8374
+ format: double
8375
+ type: number
8366
8376
dbm_hosts_percentage:
8367
8377
description: The percentage of Database Monitoring host usage by tag(s).
8368
8378
format: double
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export type HourlyUsageAttributionUsageType =
33
33
| typeof CUSTOM_TIMESERIES_USAGE
34
34
| typeof CWS_CONTAINERS_USAGE
35
35
| typeof CWS_HOSTS_USAGE
36
+ | typeof DATA_JOBS_MONITORING_USAGE
36
37
| typeof DBM_HOSTS_USAGE
37
38
| typeof DBM_QUERIES_USAGE
38
39
| typeof ERROR_TRACKING_USAGE
@@ -109,6 +110,7 @@ export const CUSTOM_INGESTED_TIMESERIES_USAGE =
109
110
export const CUSTOM_TIMESERIES_USAGE = "custom_timeseries_usage" ;
110
111
export const CWS_CONTAINERS_USAGE = "cws_containers_usage" ;
111
112
export const CWS_HOSTS_USAGE = "cws_hosts_usage" ;
113
+ export const DATA_JOBS_MONITORING_USAGE = "data_jobs_monitoring_usage" ;
112
114
export const DBM_HOSTS_USAGE = "dbm_hosts_usage" ;
113
115
export const DBM_QUERIES_USAGE = "dbm_queries_usage" ;
114
116
export const ERROR_TRACKING_USAGE = "error_tracking_usage" ;
Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
47
47
| typeof CWS_CONTAINERS_USAGE
48
48
| typeof CWS_HOSTS_PERCENTAGE
49
49
| typeof CWS_HOSTS_USAGE
50
+ | typeof DATA_JOBS_MONITORING_USAGE
51
+ | typeof DATA_JOBS_MONITORING_PERCENTAGE
50
52
| typeof DBM_HOSTS_PERCENTAGE
51
53
| typeof DBM_HOSTS_USAGE
52
54
| typeof DBM_QUERIES_PERCENTAGE
@@ -192,6 +194,9 @@ export const CWS_CONTAINERS_PERCENTAGE = "cws_containers_percentage";
192
194
export const CWS_CONTAINERS_USAGE = "cws_containers_usage" ;
193
195
export const CWS_HOSTS_PERCENTAGE = "cws_hosts_percentage" ;
194
196
export const CWS_HOSTS_USAGE = "cws_hosts_usage" ;
197
+ export const DATA_JOBS_MONITORING_USAGE = "data_jobs_monitoring_usage" ;
198
+ export const DATA_JOBS_MONITORING_PERCENTAGE =
199
+ "data_jobs_monitoring_percentage" ;
195
200
export const DBM_HOSTS_PERCENTAGE = "dbm_hosts_percentage" ;
196
201
export const DBM_HOSTS_USAGE = "dbm_hosts_usage" ;
197
202
export const DBM_QUERIES_PERCENTAGE = "dbm_queries_percentage" ;
Original file line number Diff line number Diff line change @@ -178,6 +178,10 @@ export class MonthlyUsageAttributionValues {
178
178
* The Cloud Workload Security host usage by tag(s).
179
179
*/
180
180
"cwsHostsUsage" ?: number ;
181
+ /**
182
+ * The Data Jobs Monitoring usage by tag(s).
183
+ */
184
+ "dataJobsMonitoringUsage" ?: number ;
181
185
/**
182
186
* The percentage of Database Monitoring host usage by tag(s).
183
187
*/
@@ -789,6 +793,11 @@ export class MonthlyUsageAttributionValues {
789
793
type : "number" ,
790
794
format : "double" ,
791
795
} ,
796
+ dataJobsMonitoringUsage : {
797
+ baseName : "data_jobs_monitoring_usage" ,
798
+ type : "number" ,
799
+ format : "double" ,
800
+ } ,
792
801
dbmHostsPercentage : {
793
802
baseName : "dbm_hosts_percentage" ,
794
803
type : "number" ,
Original file line number Diff line number Diff line change @@ -799,6 +799,7 @@ const enumsMap: { [key: string]: any[] } = {
799
799
"custom_timeseries_usage" ,
800
800
"cws_containers_usage" ,
801
801
"cws_hosts_usage" ,
802
+ "data_jobs_monitoring_usage" ,
802
803
"dbm_hosts_usage" ,
803
804
"dbm_queries_usage" ,
804
805
"error_tracking_usage" ,
@@ -1013,6 +1014,8 @@ const enumsMap: { [key: string]: any[] } = {
1013
1014
"cws_containers_usage" ,
1014
1015
"cws_hosts_percentage" ,
1015
1016
"cws_hosts_usage" ,
1017
+ "data_jobs_monitoring_usage" ,
1018
+ "data_jobs_monitoring_percentage" ,
1016
1019
"dbm_hosts_percentage" ,
1017
1020
"dbm_hosts_usage" ,
1018
1021
"dbm_queries_percentage" ,
You can’t perform that action at this time.
0 commit comments