Skip to content

Commit 80f2c77

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit ec2c66bc of spec repo
1 parent 87eb663 commit 80f2c77

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-09-23 19:10:24.412445",
8-
"spec_repo_commit": "41592dc6"
7+
"regenerated": "2024-09-23 21:02:12.678767",
8+
"spec_repo_commit": "ec2c66bc"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-23 19:10:24.427636",
13-
"spec_repo_commit": "41592dc6"
12+
"regenerated": "2024-09-23 21:02:12.693025",
13+
"spec_repo_commit": "ec2c66bc"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -4182,6 +4182,7 @@ components:
41824182
- custom_timeseries_usage
41834183
- cws_containers_usage
41844184
- cws_hosts_usage
4185+
- data_jobs_monitoring_usage
41854186
- dbm_hosts_usage
41864187
- dbm_queries_usage
41874188
- error_tracking_usage
@@ -4255,6 +4256,7 @@ components:
42554256
- CUSTOM_TIMESERIES_USAGE
42564257
- CWS_CONTAINERS_USAGE
42574258
- CWS_HOSTS_USAGE
4259+
- DATA_JOBS_MONITORING_USAGE
42584260
- DBM_HOSTS_USAGE
42594261
- DBM_QUERIES_USAGE
42604262
- ERROR_TRACKING_USAGE
@@ -7935,6 +7937,8 @@ components:
79357937
- cws_containers_usage
79367938
- cws_hosts_percentage
79377939
- cws_hosts_usage
7940+
- data_jobs_monitoring_usage
7941+
- data_jobs_monitoring_percentage
79387942
- dbm_hosts_percentage
79397943
- dbm_hosts_usage
79407944
- dbm_queries_percentage
@@ -8076,6 +8080,8 @@ components:
80768080
- CWS_CONTAINERS_USAGE
80778081
- CWS_HOSTS_PERCENTAGE
80788082
- CWS_HOSTS_USAGE
8083+
- DATA_JOBS_MONITORING_USAGE
8084+
- DATA_JOBS_MONITORING_PERCENTAGE
80798085
- DBM_HOSTS_PERCENTAGE
80808086
- DBM_HOSTS_USAGE
80818087
- DBM_QUERIES_PERCENTAGE
@@ -8363,6 +8369,10 @@ components:
83638369
description: The Cloud Workload Security host usage by tag(s).
83648370
format: double
83658371
type: number
8372+
data_jobs_monitoring_usage:
8373+
description: The Data Jobs Monitoring usage by tag(s).
8374+
format: double
8375+
type: number
83668376
dbm_hosts_percentage:
83678377
description: The percentage of Database Monitoring host usage by tag(s).
83688378
format: double

src/main/java/com/datadog/api/client/v1/model/HourlyUsageAttributionUsageType.java

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
4848
"custom_timeseries_usage",
4949
"cws_containers_usage",
5050
"cws_hosts_usage",
51+
"data_jobs_monitoring_usage",
5152
"dbm_hosts_usage",
5253
"dbm_queries_usage",
5354
"error_tracking_usage",
@@ -142,6 +143,8 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
142143
new HourlyUsageAttributionUsageType("cws_containers_usage");
143144
public static final HourlyUsageAttributionUsageType CWS_HOSTS_USAGE =
144145
new HourlyUsageAttributionUsageType("cws_hosts_usage");
146+
public static final HourlyUsageAttributionUsageType DATA_JOBS_MONITORING_USAGE =
147+
new HourlyUsageAttributionUsageType("data_jobs_monitoring_usage");
145148
public static final HourlyUsageAttributionUsageType DBM_HOSTS_USAGE =
146149
new HourlyUsageAttributionUsageType("dbm_hosts_usage");
147150
public static final HourlyUsageAttributionUsageType DBM_QUERIES_USAGE =

src/main/java/com/datadog/api/client/v1/model/MonthlyUsageAttributionSupportedMetrics.java

+6
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ public class MonthlyUsageAttributionSupportedMetrics extends ModelEnum<String> {
6464
"cws_containers_usage",
6565
"cws_hosts_percentage",
6666
"cws_hosts_usage",
67+
"data_jobs_monitoring_usage",
68+
"data_jobs_monitoring_percentage",
6769
"dbm_hosts_percentage",
6870
"dbm_hosts_usage",
6971
"dbm_queries_percentage",
@@ -244,6 +246,10 @@ public class MonthlyUsageAttributionSupportedMetrics extends ModelEnum<String> {
244246
new MonthlyUsageAttributionSupportedMetrics("cws_hosts_percentage");
245247
public static final MonthlyUsageAttributionSupportedMetrics CWS_HOSTS_USAGE =
246248
new MonthlyUsageAttributionSupportedMetrics("cws_hosts_usage");
249+
public static final MonthlyUsageAttributionSupportedMetrics DATA_JOBS_MONITORING_USAGE =
250+
new MonthlyUsageAttributionSupportedMetrics("data_jobs_monitoring_usage");
251+
public static final MonthlyUsageAttributionSupportedMetrics DATA_JOBS_MONITORING_PERCENTAGE =
252+
new MonthlyUsageAttributionSupportedMetrics("data_jobs_monitoring_percentage");
247253
public static final MonthlyUsageAttributionSupportedMetrics DBM_HOSTS_PERCENTAGE =
248254
new MonthlyUsageAttributionSupportedMetrics("dbm_hosts_percentage");
249255
public static final MonthlyUsageAttributionSupportedMetrics DBM_HOSTS_USAGE =

src/main/java/com/datadog/api/client/v1/model/MonthlyUsageAttributionValues.java

+32
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
MonthlyUsageAttributionValues.JSON_PROPERTY_CWS_CONTAINERS_USAGE,
6161
MonthlyUsageAttributionValues.JSON_PROPERTY_CWS_HOSTS_PERCENTAGE,
6262
MonthlyUsageAttributionValues.JSON_PROPERTY_CWS_HOSTS_USAGE,
63+
MonthlyUsageAttributionValues.JSON_PROPERTY_DATA_JOBS_MONITORING_USAGE,
6364
MonthlyUsageAttributionValues.JSON_PROPERTY_DBM_HOSTS_PERCENTAGE,
6465
MonthlyUsageAttributionValues.JSON_PROPERTY_DBM_HOSTS_USAGE,
6566
MonthlyUsageAttributionValues.JSON_PROPERTY_DBM_QUERIES_PERCENTAGE,
@@ -300,6 +301,10 @@ public class MonthlyUsageAttributionValues {
300301
public static final String JSON_PROPERTY_CWS_HOSTS_USAGE = "cws_hosts_usage";
301302
private Double cwsHostsUsage;
302303

304+
public static final String JSON_PROPERTY_DATA_JOBS_MONITORING_USAGE =
305+
"data_jobs_monitoring_usage";
306+
private Double dataJobsMonitoringUsage;
307+
303308
public static final String JSON_PROPERTY_DBM_HOSTS_PERCENTAGE = "dbm_hosts_percentage";
304309
private Double dbmHostsPercentage;
305310

@@ -1528,6 +1533,27 @@ public void setCwsHostsUsage(Double cwsHostsUsage) {
15281533
this.cwsHostsUsage = cwsHostsUsage;
15291534
}
15301535

1536+
public MonthlyUsageAttributionValues dataJobsMonitoringUsage(Double dataJobsMonitoringUsage) {
1537+
this.dataJobsMonitoringUsage = dataJobsMonitoringUsage;
1538+
return this;
1539+
}
1540+
1541+
/**
1542+
* The Data Jobs Monitoring usage by tag(s).
1543+
*
1544+
* @return dataJobsMonitoringUsage
1545+
*/
1546+
@jakarta.annotation.Nullable
1547+
@JsonProperty(JSON_PROPERTY_DATA_JOBS_MONITORING_USAGE)
1548+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
1549+
public Double getDataJobsMonitoringUsage() {
1550+
return dataJobsMonitoringUsage;
1551+
}
1552+
1553+
public void setDataJobsMonitoringUsage(Double dataJobsMonitoringUsage) {
1554+
this.dataJobsMonitoringUsage = dataJobsMonitoringUsage;
1555+
}
1556+
15311557
public MonthlyUsageAttributionValues dbmHostsPercentage(Double dbmHostsPercentage) {
15321558
this.dbmHostsPercentage = dbmHostsPercentage;
15331559
return this;
@@ -3715,6 +3741,8 @@ public boolean equals(Object o) {
37153741
&& Objects.equals(this.cwsContainersUsage, monthlyUsageAttributionValues.cwsContainersUsage)
37163742
&& Objects.equals(this.cwsHostsPercentage, monthlyUsageAttributionValues.cwsHostsPercentage)
37173743
&& Objects.equals(this.cwsHostsUsage, monthlyUsageAttributionValues.cwsHostsUsage)
3744+
&& Objects.equals(
3745+
this.dataJobsMonitoringUsage, monthlyUsageAttributionValues.dataJobsMonitoringUsage)
37183746
&& Objects.equals(this.dbmHostsPercentage, monthlyUsageAttributionValues.dbmHostsPercentage)
37193747
&& Objects.equals(this.dbmHostsUsage, monthlyUsageAttributionValues.dbmHostsUsage)
37203748
&& Objects.equals(
@@ -3975,6 +4003,7 @@ public int hashCode() {
39754003
cwsContainersUsage,
39764004
cwsHostsPercentage,
39774005
cwsHostsUsage,
4006+
dataJobsMonitoringUsage,
39784007
dbmHostsPercentage,
39794008
dbmHostsUsage,
39804009
dbmQueriesPercentage,
@@ -4166,6 +4195,9 @@ public String toString() {
41664195
sb.append(" cwsContainersUsage: ").append(toIndentedString(cwsContainersUsage)).append("\n");
41674196
sb.append(" cwsHostsPercentage: ").append(toIndentedString(cwsHostsPercentage)).append("\n");
41684197
sb.append(" cwsHostsUsage: ").append(toIndentedString(cwsHostsUsage)).append("\n");
4198+
sb.append(" dataJobsMonitoringUsage: ")
4199+
.append(toIndentedString(dataJobsMonitoringUsage))
4200+
.append("\n");
41694201
sb.append(" dbmHostsPercentage: ").append(toIndentedString(dbmHostsPercentage)).append("\n");
41704202
sb.append(" dbmHostsUsage: ").append(toIndentedString(dbmHostsUsage)).append("\n");
41714203
sb.append(" dbmQueriesPercentage: ")

0 commit comments

Comments
 (0)