Skip to content

Commit 9e410b1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 35fc8546 of spec repo
1 parent 9afd4ef commit 9e410b1

File tree

5 files changed

+120
-4
lines changed

5 files changed

+120
-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.6",
7-
"regenerated": "2025-03-17 21:06:19.299453",
8-
"spec_repo_commit": "2dfddc18"
7+
"regenerated": "2025-03-19 17:28:49.485481",
8+
"spec_repo_commit": "35fc8546"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-17 21:06:19.314659",
13-
"spec_repo_commit": "2dfddc18"
12+
"regenerated": "2025-03-19 17:28:49.502778",
13+
"spec_repo_commit": "35fc8546"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20315,6 +20315,11 @@ components:
2031520315
Plus over all hours in the current date for the given org.
2031620316
format: int64
2031720317
type: integer
20318+
error_tracking_apm_error_events_sum:
20319+
description: Shows the sum of all Error Tracking APM error events over all
20320+
hours in the current date for the given org.
20321+
format: int64
20322+
type: integer
2031820323
error_tracking_error_events_sum:
2031920324
description: Shows the sum of all Error Tracking error events over all hours
2032020325
in the current date for the given org.
@@ -21185,6 +21190,11 @@ components:
2118521190
Plus over all hours in the current date for the given org.
2118621191
format: int64
2118721192
type: integer
21193+
error_tracking_apm_error_events_sum:
21194+
description: Shows the sum of all Error Tracking APM error events over all
21195+
hours in the current date for the given org.
21196+
format: int64
21197+
type: integer
2118821198
error_tracking_error_events_sum:
2118921199
description: Shows the sum of all Error Tracking error events over all hours
2119021200
in the current date for the given org.
@@ -22060,6 +22070,11 @@ components:
2206022070
Plus over all hours in the current month for all organizations.
2206122071
format: int64
2206222072
type: integer
22073+
error_tracking_apm_error_events_agg_sum:
22074+
description: Shows the sum of all Error Tracking APM error events over all
22075+
hours in the current month for all organizations.
22076+
format: int64
22077+
type: integer
2206322078
error_tracking_error_events_agg_sum:
2206422079
description: Shows the sum of all Error Tracking error events over all hours
2206522080
in the current month for all organizations.

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
UsageSummaryDate.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_SUM,
9494
UsageSummaryDate.JSON_PROPERTY_EPH_INFRA_HOST_PRO_SUM,
9595
UsageSummaryDate.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_SUM,
96+
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM,
9697
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM,
9798
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM,
9899
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM,
@@ -435,6 +436,10 @@ public class UsageSummaryDate {
435436
"eph_infra_host_proplus_sum";
436437
private Long ephInfraHostProplusSum;
437438

439+
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM =
440+
"error_tracking_apm_error_events_sum";
441+
private Long errorTrackingApmErrorEventsSum;
442+
438443
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM =
439444
"error_tracking_error_events_sum";
440445
private Long errorTrackingErrorEventsSum;
@@ -2361,6 +2366,28 @@ public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) {
23612366
this.ephInfraHostProplusSum = ephInfraHostProplusSum;
23622367
}
23632368

2369+
public UsageSummaryDate errorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2370+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2371+
return this;
2372+
}
2373+
2374+
/**
2375+
* Shows the sum of all Error Tracking APM error events over all hours in the current date for the
2376+
* given org.
2377+
*
2378+
* @return errorTrackingApmErrorEventsSum
2379+
*/
2380+
@jakarta.annotation.Nullable
2381+
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM)
2382+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2383+
public Long getErrorTrackingApmErrorEventsSum() {
2384+
return errorTrackingApmErrorEventsSum;
2385+
}
2386+
2387+
public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2388+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2389+
}
2390+
23642391
public UsageSummaryDate errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) {
23652392
this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum;
23662393
return this;
@@ -4515,6 +4542,8 @@ public boolean equals(Object o) {
45154542
this.ephInfraHostOpentelemetrySum, usageSummaryDate.ephInfraHostOpentelemetrySum)
45164543
&& Objects.equals(this.ephInfraHostProSum, usageSummaryDate.ephInfraHostProSum)
45174544
&& Objects.equals(this.ephInfraHostProplusSum, usageSummaryDate.ephInfraHostProplusSum)
4545+
&& Objects.equals(
4546+
this.errorTrackingApmErrorEventsSum, usageSummaryDate.errorTrackingApmErrorEventsSum)
45184547
&& Objects.equals(
45194548
this.errorTrackingErrorEventsSum, usageSummaryDate.errorTrackingErrorEventsSum)
45204549
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDate.errorTrackingEventsSum)
@@ -4749,6 +4778,7 @@ public int hashCode() {
47494778
ephInfraHostOpentelemetrySum,
47504779
ephInfraHostProSum,
47514780
ephInfraHostProplusSum,
4781+
errorTrackingApmErrorEventsSum,
47524782
errorTrackingErrorEventsSum,
47534783
errorTrackingEventsSum,
47544784
errorTrackingRumErrorEventsSum,
@@ -5007,6 +5037,9 @@ public String toString() {
50075037
sb.append(" ephInfraHostProplusSum: ")
50085038
.append(toIndentedString(ephInfraHostProplusSum))
50095039
.append("\n");
5040+
sb.append(" errorTrackingApmErrorEventsSum: ")
5041+
.append(toIndentedString(errorTrackingApmErrorEventsSum))
5042+
.append("\n");
50105043
sb.append(" errorTrackingErrorEventsSum: ")
50115044
.append(toIndentedString(errorTrackingErrorEventsSum))
50125045
.append("\n");

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
UsageSummaryDateOrg.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_SUM,
9494
UsageSummaryDateOrg.JSON_PROPERTY_EPH_INFRA_HOST_PRO_SUM,
9595
UsageSummaryDateOrg.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_SUM,
96+
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM,
9697
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM,
9798
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM,
9899
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM,
@@ -447,6 +448,10 @@ public class UsageSummaryDateOrg {
447448
"eph_infra_host_proplus_sum";
448449
private Long ephInfraHostProplusSum;
449450

451+
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM =
452+
"error_tracking_apm_error_events_sum";
453+
private Long errorTrackingApmErrorEventsSum;
454+
450455
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM =
451456
"error_tracking_error_events_sum";
452457
private Long errorTrackingErrorEventsSum;
@@ -2445,6 +2450,28 @@ public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) {
24452450
this.ephInfraHostProplusSum = ephInfraHostProplusSum;
24462451
}
24472452

2453+
public UsageSummaryDateOrg errorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2454+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2455+
return this;
2456+
}
2457+
2458+
/**
2459+
* Shows the sum of all Error Tracking APM error events over all hours in the current date for the
2460+
* given org.
2461+
*
2462+
* @return errorTrackingApmErrorEventsSum
2463+
*/
2464+
@jakarta.annotation.Nullable
2465+
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM)
2466+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2467+
public Long getErrorTrackingApmErrorEventsSum() {
2468+
return errorTrackingApmErrorEventsSum;
2469+
}
2470+
2471+
public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2472+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2473+
}
2474+
24482475
public UsageSummaryDateOrg errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) {
24492476
this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum;
24502477
return this;
@@ -4659,6 +4686,8 @@ public boolean equals(Object o) {
46594686
this.ephInfraHostOpentelemetrySum, usageSummaryDateOrg.ephInfraHostOpentelemetrySum)
46604687
&& Objects.equals(this.ephInfraHostProSum, usageSummaryDateOrg.ephInfraHostProSum)
46614688
&& Objects.equals(this.ephInfraHostProplusSum, usageSummaryDateOrg.ephInfraHostProplusSum)
4689+
&& Objects.equals(
4690+
this.errorTrackingApmErrorEventsSum, usageSummaryDateOrg.errorTrackingApmErrorEventsSum)
46624691
&& Objects.equals(
46634692
this.errorTrackingErrorEventsSum, usageSummaryDateOrg.errorTrackingErrorEventsSum)
46644693
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDateOrg.errorTrackingEventsSum)
@@ -4911,6 +4940,7 @@ public int hashCode() {
49114940
ephInfraHostOpentelemetrySum,
49124941
ephInfraHostProSum,
49134942
ephInfraHostProplusSum,
4943+
errorTrackingApmErrorEventsSum,
49144944
errorTrackingErrorEventsSum,
49154945
errorTrackingEventsSum,
49164946
errorTrackingRumErrorEventsSum,
@@ -5177,6 +5207,9 @@ public String toString() {
51775207
sb.append(" ephInfraHostProplusSum: ")
51785208
.append(toIndentedString(ephInfraHostProplusSum))
51795209
.append("\n");
5210+
sb.append(" errorTrackingApmErrorEventsSum: ")
5211+
.append(toIndentedString(errorTrackingApmErrorEventsSum))
5212+
.append("\n");
51805213
sb.append(" errorTrackingErrorEventsSum: ")
51815214
.append(toIndentedString(errorTrackingErrorEventsSum))
51825215
.append("\n");

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

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_OPENTELEMETRY_APM_AGG_SUM,
100100
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PRO_AGG_SUM,
101101
UsageSummaryResponse.JSON_PROPERTY_EPH_INFRA_HOST_PROPLUS_AGG_SUM,
102+
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM,
102103
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM,
103104
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_EVENTS_AGG_SUM,
104105
UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_AGG_SUM,
@@ -473,6 +474,10 @@ public class UsageSummaryResponse {
473474
"eph_infra_host_proplus_agg_sum";
474475
private Long ephInfraHostProplusAggSum;
475476

477+
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM =
478+
"error_tracking_apm_error_events_agg_sum";
479+
private Long errorTrackingApmErrorEventsAggSum;
480+
476481
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM =
477482
"error_tracking_error_events_agg_sum";
478483
private Long errorTrackingErrorEventsAggSum;
@@ -2521,6 +2526,29 @@ public void setEphInfraHostProplusAggSum(Long ephInfraHostProplusAggSum) {
25212526
this.ephInfraHostProplusAggSum = ephInfraHostProplusAggSum;
25222527
}
25232528

2529+
public UsageSummaryResponse errorTrackingApmErrorEventsAggSum(
2530+
Long errorTrackingApmErrorEventsAggSum) {
2531+
this.errorTrackingApmErrorEventsAggSum = errorTrackingApmErrorEventsAggSum;
2532+
return this;
2533+
}
2534+
2535+
/**
2536+
* Shows the sum of all Error Tracking APM error events over all hours in the current month for
2537+
* all organizations.
2538+
*
2539+
* @return errorTrackingApmErrorEventsAggSum
2540+
*/
2541+
@jakarta.annotation.Nullable
2542+
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM)
2543+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2544+
public Long getErrorTrackingApmErrorEventsAggSum() {
2545+
return errorTrackingApmErrorEventsAggSum;
2546+
}
2547+
2548+
public void setErrorTrackingApmErrorEventsAggSum(Long errorTrackingApmErrorEventsAggSum) {
2549+
this.errorTrackingApmErrorEventsAggSum = errorTrackingApmErrorEventsAggSum;
2550+
}
2551+
25242552
public UsageSummaryResponse errorTrackingErrorEventsAggSum(Long errorTrackingErrorEventsAggSum) {
25252553
this.errorTrackingErrorEventsAggSum = errorTrackingErrorEventsAggSum;
25262554
return this;
@@ -4926,6 +4954,9 @@ public boolean equals(Object o) {
49264954
&& Objects.equals(this.ephInfraHostProAggSum, usageSummaryResponse.ephInfraHostProAggSum)
49274955
&& Objects.equals(
49284956
this.ephInfraHostProplusAggSum, usageSummaryResponse.ephInfraHostProplusAggSum)
4957+
&& Objects.equals(
4958+
this.errorTrackingApmErrorEventsAggSum,
4959+
usageSummaryResponse.errorTrackingApmErrorEventsAggSum)
49294960
&& Objects.equals(
49304961
this.errorTrackingErrorEventsAggSum,
49314962
usageSummaryResponse.errorTrackingErrorEventsAggSum)
@@ -5218,6 +5249,7 @@ public int hashCode() {
52185249
ephInfraHostOpentelemetryApmAggSum,
52195250
ephInfraHostProAggSum,
52205251
ephInfraHostProplusAggSum,
5252+
errorTrackingApmErrorEventsAggSum,
52215253
errorTrackingErrorEventsAggSum,
52225254
errorTrackingEventsAggSum,
52235255
errorTrackingRumErrorEventsAggSum,
@@ -5515,6 +5547,9 @@ public String toString() {
55155547
sb.append(" ephInfraHostProplusAggSum: ")
55165548
.append(toIndentedString(ephInfraHostProplusAggSum))
55175549
.append("\n");
5550+
sb.append(" errorTrackingApmErrorEventsAggSum: ")
5551+
.append(toIndentedString(errorTrackingApmErrorEventsAggSum))
5552+
.append("\n");
55185553
sb.append(" errorTrackingErrorEventsAggSum: ")
55195554
.append(toIndentedString(errorTrackingErrorEventsAggSum))
55205555
.append("\n");

0 commit comments

Comments
 (0)