Skip to content

Commit 4051739

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Regenerate client from commit 0f5c928e of spec repo (#2760)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent e44a7ad commit 4051739

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-18 16:20:36.363534",
8-
"spec_repo_commit": "78376979"
7+
"regenerated": "2025-03-20 15:01:18.145313",
8+
"spec_repo_commit": "0f5c928e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-18 16:20:36.379301",
13-
"spec_repo_commit": "78376979"
12+
"regenerated": "2025-03-20 15:01:18.161824",
13+
"spec_repo_commit": "0f5c928e"
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.
@@ -21200,6 +21205,11 @@ components:
2120021205
Plus over all hours in the current date for the given org.
2120121206
format: int64
2120221207
type: integer
21208+
error_tracking_apm_error_events_sum:
21209+
description: Shows the sum of all Error Tracking APM error events over all
21210+
hours in the current date for the given org.
21211+
format: int64
21212+
type: integer
2120321213
error_tracking_error_events_sum:
2120421214
description: Shows the sum of all Error Tracking error events over all hours
2120521215
in the current date for the given org.
@@ -22090,6 +22100,11 @@ components:
2209022100
Plus over all hours in the current month for all organizations.
2209122101
format: int64
2209222102
type: integer
22103+
error_tracking_apm_error_events_agg_sum:
22104+
description: Shows the sum of all Error Tracking APM error events over all
22105+
hours in the current month for all organizations.
22106+
format: int64
22107+
type: integer
2209322108
error_tracking_error_events_agg_sum:
2209422109
description: Shows the sum of all Error Tracking error events over all hours
2209522110
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,
@@ -438,6 +439,10 @@ public class UsageSummaryDate {
438439
"eph_infra_host_proplus_sum";
439440
private Long ephInfraHostProplusSum;
440441

442+
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM =
443+
"error_tracking_apm_error_events_sum";
444+
private Long errorTrackingApmErrorEventsSum;
445+
441446
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM =
442447
"error_tracking_error_events_sum";
443448
private Long errorTrackingErrorEventsSum;
@@ -2376,6 +2381,28 @@ public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) {
23762381
this.ephInfraHostProplusSum = ephInfraHostProplusSum;
23772382
}
23782383

2384+
public UsageSummaryDate errorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2385+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2386+
return this;
2387+
}
2388+
2389+
/**
2390+
* Shows the sum of all Error Tracking APM error events over all hours in the current date for the
2391+
* given org.
2392+
*
2393+
* @return errorTrackingApmErrorEventsSum
2394+
*/
2395+
@jakarta.annotation.Nullable
2396+
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM)
2397+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2398+
public Long getErrorTrackingApmErrorEventsSum() {
2399+
return errorTrackingApmErrorEventsSum;
2400+
}
2401+
2402+
public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2403+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2404+
}
2405+
23792406
public UsageSummaryDate errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) {
23802407
this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum;
23812408
return this;
@@ -4605,6 +4632,8 @@ public boolean equals(Object o) {
46054632
this.ephInfraHostOpentelemetrySum, usageSummaryDate.ephInfraHostOpentelemetrySum)
46064633
&& Objects.equals(this.ephInfraHostProSum, usageSummaryDate.ephInfraHostProSum)
46074634
&& Objects.equals(this.ephInfraHostProplusSum, usageSummaryDate.ephInfraHostProplusSum)
4635+
&& Objects.equals(
4636+
this.errorTrackingApmErrorEventsSum, usageSummaryDate.errorTrackingApmErrorEventsSum)
46084637
&& Objects.equals(
46094638
this.errorTrackingErrorEventsSum, usageSummaryDate.errorTrackingErrorEventsSum)
46104639
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDate.errorTrackingEventsSum)
@@ -4848,6 +4877,7 @@ public int hashCode() {
48484877
ephInfraHostOpentelemetrySum,
48494878
ephInfraHostProSum,
48504879
ephInfraHostProplusSum,
4880+
errorTrackingApmErrorEventsSum,
48514881
errorTrackingErrorEventsSum,
48524882
errorTrackingEventsSum,
48534883
errorTrackingRumErrorEventsSum,
@@ -5109,6 +5139,9 @@ public String toString() {
51095139
sb.append(" ephInfraHostProplusSum: ")
51105140
.append(toIndentedString(ephInfraHostProplusSum))
51115141
.append("\n");
5142+
sb.append(" errorTrackingApmErrorEventsSum: ")
5143+
.append(toIndentedString(errorTrackingApmErrorEventsSum))
5144+
.append("\n");
51125145
sb.append(" errorTrackingErrorEventsSum: ")
51135146
.append(toIndentedString(errorTrackingErrorEventsSum))
51145147
.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,
@@ -450,6 +451,10 @@ public class UsageSummaryDateOrg {
450451
"eph_infra_host_proplus_sum";
451452
private Long ephInfraHostProplusSum;
452453

454+
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM =
455+
"error_tracking_apm_error_events_sum";
456+
private Long errorTrackingApmErrorEventsSum;
457+
453458
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM =
454459
"error_tracking_error_events_sum";
455460
private Long errorTrackingErrorEventsSum;
@@ -2460,6 +2465,28 @@ public void setEphInfraHostProplusSum(Long ephInfraHostProplusSum) {
24602465
this.ephInfraHostProplusSum = ephInfraHostProplusSum;
24612466
}
24622467

2468+
public UsageSummaryDateOrg errorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2469+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2470+
return this;
2471+
}
2472+
2473+
/**
2474+
* Shows the sum of all Error Tracking APM error events over all hours in the current date for the
2475+
* given org.
2476+
*
2477+
* @return errorTrackingApmErrorEventsSum
2478+
*/
2479+
@jakarta.annotation.Nullable
2480+
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_SUM)
2481+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2482+
public Long getErrorTrackingApmErrorEventsSum() {
2483+
return errorTrackingApmErrorEventsSum;
2484+
}
2485+
2486+
public void setErrorTrackingApmErrorEventsSum(Long errorTrackingApmErrorEventsSum) {
2487+
this.errorTrackingApmErrorEventsSum = errorTrackingApmErrorEventsSum;
2488+
}
2489+
24632490
public UsageSummaryDateOrg errorTrackingErrorEventsSum(Long errorTrackingErrorEventsSum) {
24642491
this.errorTrackingErrorEventsSum = errorTrackingErrorEventsSum;
24652492
return this;
@@ -4749,6 +4776,8 @@ public boolean equals(Object o) {
47494776
this.ephInfraHostOpentelemetrySum, usageSummaryDateOrg.ephInfraHostOpentelemetrySum)
47504777
&& Objects.equals(this.ephInfraHostProSum, usageSummaryDateOrg.ephInfraHostProSum)
47514778
&& Objects.equals(this.ephInfraHostProplusSum, usageSummaryDateOrg.ephInfraHostProplusSum)
4779+
&& Objects.equals(
4780+
this.errorTrackingApmErrorEventsSum, usageSummaryDateOrg.errorTrackingApmErrorEventsSum)
47524781
&& Objects.equals(
47534782
this.errorTrackingErrorEventsSum, usageSummaryDateOrg.errorTrackingErrorEventsSum)
47544783
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDateOrg.errorTrackingEventsSum)
@@ -5010,6 +5039,7 @@ public int hashCode() {
50105039
ephInfraHostOpentelemetrySum,
50115040
ephInfraHostProSum,
50125041
ephInfraHostProplusSum,
5042+
errorTrackingApmErrorEventsSum,
50135043
errorTrackingErrorEventsSum,
50145044
errorTrackingEventsSum,
50155045
errorTrackingRumErrorEventsSum,
@@ -5279,6 +5309,9 @@ public String toString() {
52795309
sb.append(" ephInfraHostProplusSum: ")
52805310
.append(toIndentedString(ephInfraHostProplusSum))
52815311
.append("\n");
5312+
sb.append(" errorTrackingApmErrorEventsSum: ")
5313+
.append(toIndentedString(errorTrackingApmErrorEventsSum))
5314+
.append("\n");
52825315
sb.append(" errorTrackingErrorEventsSum: ")
52835316
.append(toIndentedString(errorTrackingErrorEventsSum))
52845317
.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,
@@ -476,6 +477,10 @@ public class UsageSummaryResponse {
476477
"eph_infra_host_proplus_agg_sum";
477478
private Long ephInfraHostProplusAggSum;
478479

480+
public static final String JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM =
481+
"error_tracking_apm_error_events_agg_sum";
482+
private Long errorTrackingApmErrorEventsAggSum;
483+
479484
public static final String JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM =
480485
"error_tracking_error_events_agg_sum";
481486
private Long errorTrackingErrorEventsAggSum;
@@ -2538,6 +2543,29 @@ public void setEphInfraHostProplusAggSum(Long ephInfraHostProplusAggSum) {
25382543
this.ephInfraHostProplusAggSum = ephInfraHostProplusAggSum;
25392544
}
25402545

2546+
public UsageSummaryResponse errorTrackingApmErrorEventsAggSum(
2547+
Long errorTrackingApmErrorEventsAggSum) {
2548+
this.errorTrackingApmErrorEventsAggSum = errorTrackingApmErrorEventsAggSum;
2549+
return this;
2550+
}
2551+
2552+
/**
2553+
* Shows the sum of all Error Tracking APM error events over all hours in the current month for
2554+
* all organizations.
2555+
*
2556+
* @return errorTrackingApmErrorEventsAggSum
2557+
*/
2558+
@jakarta.annotation.Nullable
2559+
@JsonProperty(JSON_PROPERTY_ERROR_TRACKING_APM_ERROR_EVENTS_AGG_SUM)
2560+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2561+
public Long getErrorTrackingApmErrorEventsAggSum() {
2562+
return errorTrackingApmErrorEventsAggSum;
2563+
}
2564+
2565+
public void setErrorTrackingApmErrorEventsAggSum(Long errorTrackingApmErrorEventsAggSum) {
2566+
this.errorTrackingApmErrorEventsAggSum = errorTrackingApmErrorEventsAggSum;
2567+
}
2568+
25412569
public UsageSummaryResponse errorTrackingErrorEventsAggSum(Long errorTrackingErrorEventsAggSum) {
25422570
this.errorTrackingErrorEventsAggSum = errorTrackingErrorEventsAggSum;
25432571
return this;
@@ -5018,6 +5046,9 @@ public boolean equals(Object o) {
50185046
&& Objects.equals(this.ephInfraHostProAggSum, usageSummaryResponse.ephInfraHostProAggSum)
50195047
&& Objects.equals(
50205048
this.ephInfraHostProplusAggSum, usageSummaryResponse.ephInfraHostProplusAggSum)
5049+
&& Objects.equals(
5050+
this.errorTrackingApmErrorEventsAggSum,
5051+
usageSummaryResponse.errorTrackingApmErrorEventsAggSum)
50215052
&& Objects.equals(
50225053
this.errorTrackingErrorEventsAggSum,
50235054
usageSummaryResponse.errorTrackingErrorEventsAggSum)
@@ -5319,6 +5350,7 @@ public int hashCode() {
53195350
ephInfraHostOpentelemetryApmAggSum,
53205351
ephInfraHostProAggSum,
53215352
ephInfraHostProplusAggSum,
5353+
errorTrackingApmErrorEventsAggSum,
53225354
errorTrackingErrorEventsAggSum,
53235355
errorTrackingEventsAggSum,
53245356
errorTrackingRumErrorEventsAggSum,
@@ -5619,6 +5651,9 @@ public String toString() {
56195651
sb.append(" ephInfraHostProplusAggSum: ")
56205652
.append(toIndentedString(ephInfraHostProplusAggSum))
56215653
.append("\n");
5654+
sb.append(" errorTrackingApmErrorEventsAggSum: ")
5655+
.append(toIndentedString(errorTrackingApmErrorEventsAggSum))
5656+
.append("\n");
56225657
sb.append(" errorTrackingErrorEventsAggSum: ")
56235658
.append(toIndentedString(errorTrackingErrorEventsAggSum))
56245659
.append("\n");

0 commit comments

Comments
 (0)