Skip to content

Commit 48a9944

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Flex_Logs_Compute_XL to API Spec (#3049)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent c2364be commit 48a9944

File tree

5 files changed

+115
-2
lines changed

5 files changed

+115
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "6e520c2",
3-
"generated": "2025-08-05 21:12:23.350"
2+
"spec_repo_commit": "f391bf6",
3+
"generated": "2025-08-06 15:15:59.306"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20817,6 +20817,11 @@ components:
2081720817
over all hours in the current date for the given org.
2081820818
format: int64
2081920819
type: integer
20820+
flex_logs_compute_xlarge_avg:
20821+
description: Shows the average number of Flex Logs Compute Extra Large Instances
20822+
over all hours in the current date for the given org.
20823+
format: int64
20824+
type: integer
2082020825
flex_logs_compute_xsmall_avg:
2082120826
description: Shows the average number of Flex Logs Compute Extra Small Instances
2082220827
over all hours in the current date for the given org.
@@ -21761,6 +21766,11 @@ components:
2176121766
over all hours in the current date for the given org.
2176221767
format: int64
2176321768
type: integer
21769+
flex_logs_compute_xlarge_avg:
21770+
description: Shows the average number of Flex Logs Compute Extra Large Instances
21771+
over all hours in the current date for the given org.
21772+
format: int64
21773+
type: integer
2176421774
flex_logs_compute_xsmall_avg:
2176521775
description: Shows the average number of Flex Logs Compute Extra Small Instances
2176621776
over all hours in the current date for the given org.
@@ -22712,6 +22722,11 @@ components:
2271222722
over all hours in the current months for all organizations.
2271322723
format: int64
2271422724
type: integer
22725+
flex_logs_compute_xlarge_avg_sum:
22726+
description: Shows the average number of Flex Logs Compute Extra Large Instances
22727+
over all hours in the current months for all organizations.
22728+
format: int64
22729+
type: integer
2271522730
flex_logs_compute_xsmall_avg_sum:
2271622731
description: Shows the average number of Flex Logs Compute Extra Small Instances
2271722732
over all hours in the current months for all organizations.

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

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@
107107
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
108108
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
109109
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
110+
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG,
110111
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG,
111112
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG,
112113
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG,
@@ -504,6 +505,10 @@ public class UsageSummaryDate {
504505
"flex_logs_compute_small_avg";
505506
private Long flexLogsComputeSmallAvg;
506507

508+
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG =
509+
"flex_logs_compute_xlarge_avg";
510+
private Long flexLogsComputeXlargeAvg;
511+
507512
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG =
508513
"flex_logs_compute_xsmall_avg";
509514
private Long flexLogsComputeXsmallAvg;
@@ -2754,6 +2759,28 @@ public void setFlexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) {
27542759
this.flexLogsComputeSmallAvg = flexLogsComputeSmallAvg;
27552760
}
27562761

2762+
public UsageSummaryDate flexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) {
2763+
this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg;
2764+
return this;
2765+
}
2766+
2767+
/**
2768+
* Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the
2769+
* current date for the given org.
2770+
*
2771+
* @return flexLogsComputeXlargeAvg
2772+
*/
2773+
@jakarta.annotation.Nullable
2774+
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG)
2775+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2776+
public Long getFlexLogsComputeXlargeAvg() {
2777+
return flexLogsComputeXlargeAvg;
2778+
}
2779+
2780+
public void setFlexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) {
2781+
this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg;
2782+
}
2783+
27572784
public UsageSummaryDate flexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) {
27582785
this.flexLogsComputeXsmallAvg = flexLogsComputeXsmallAvg;
27592786
return this;
@@ -4955,6 +4982,7 @@ public boolean equals(Object o) {
49554982
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDate.flexLogsComputeLargeAvg)
49564983
&& Objects.equals(this.flexLogsComputeMediumAvg, usageSummaryDate.flexLogsComputeMediumAvg)
49574984
&& Objects.equals(this.flexLogsComputeSmallAvg, usageSummaryDate.flexLogsComputeSmallAvg)
4985+
&& Objects.equals(this.flexLogsComputeXlargeAvg, usageSummaryDate.flexLogsComputeXlargeAvg)
49584986
&& Objects.equals(this.flexLogsComputeXsmallAvg, usageSummaryDate.flexLogsComputeXsmallAvg)
49594987
&& Objects.equals(this.flexLogsStarterAvg, usageSummaryDate.flexLogsStarterAvg)
49604988
&& Objects.equals(
@@ -5206,6 +5234,7 @@ public int hashCode() {
52065234
flexLogsComputeLargeAvg,
52075235
flexLogsComputeMediumAvg,
52085236
flexLogsComputeSmallAvg,
5237+
flexLogsComputeXlargeAvg,
52095238
flexLogsComputeXsmallAvg,
52105239
flexLogsStarterAvg,
52115240
flexLogsStarterStorageIndexAvg,
@@ -5507,6 +5536,9 @@ public String toString() {
55075536
sb.append(" flexLogsComputeSmallAvg: ")
55085537
.append(toIndentedString(flexLogsComputeSmallAvg))
55095538
.append("\n");
5539+
sb.append(" flexLogsComputeXlargeAvg: ")
5540+
.append(toIndentedString(flexLogsComputeXlargeAvg))
5541+
.append("\n");
55105542
sb.append(" flexLogsComputeXsmallAvg: ")
55115543
.append(toIndentedString(flexLogsComputeXsmallAvg))
55125544
.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
@@ -107,6 +107,7 @@
107107
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
108108
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
109109
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
110+
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG,
110111
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG,
111112
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG,
112113
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG,
@@ -516,6 +517,10 @@ public class UsageSummaryDateOrg {
516517
"flex_logs_compute_small_avg";
517518
private Long flexLogsComputeSmallAvg;
518519

520+
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG =
521+
"flex_logs_compute_xlarge_avg";
522+
private Long flexLogsComputeXlargeAvg;
523+
519524
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG =
520525
"flex_logs_compute_xsmall_avg";
521526
private Long flexLogsComputeXsmallAvg;
@@ -2837,6 +2842,28 @@ public void setFlexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) {
28372842
this.flexLogsComputeSmallAvg = flexLogsComputeSmallAvg;
28382843
}
28392844

2845+
public UsageSummaryDateOrg flexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) {
2846+
this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg;
2847+
return this;
2848+
}
2849+
2850+
/**
2851+
* Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the
2852+
* current date for the given org.
2853+
*
2854+
* @return flexLogsComputeXlargeAvg
2855+
*/
2856+
@jakarta.annotation.Nullable
2857+
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG)
2858+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2859+
public Long getFlexLogsComputeXlargeAvg() {
2860+
return flexLogsComputeXlargeAvg;
2861+
}
2862+
2863+
public void setFlexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) {
2864+
this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg;
2865+
}
2866+
28402867
public UsageSummaryDateOrg flexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) {
28412868
this.flexLogsComputeXsmallAvg = flexLogsComputeXsmallAvg;
28422869
return this;
@@ -5103,6 +5130,8 @@ public boolean equals(Object o) {
51035130
&& Objects.equals(
51045131
this.flexLogsComputeMediumAvg, usageSummaryDateOrg.flexLogsComputeMediumAvg)
51055132
&& Objects.equals(this.flexLogsComputeSmallAvg, usageSummaryDateOrg.flexLogsComputeSmallAvg)
5133+
&& Objects.equals(
5134+
this.flexLogsComputeXlargeAvg, usageSummaryDateOrg.flexLogsComputeXlargeAvg)
51065135
&& Objects.equals(
51075136
this.flexLogsComputeXsmallAvg, usageSummaryDateOrg.flexLogsComputeXsmallAvg)
51085137
&& Objects.equals(this.flexLogsStarterAvg, usageSummaryDateOrg.flexLogsStarterAvg)
@@ -5372,6 +5401,7 @@ public int hashCode() {
53725401
flexLogsComputeLargeAvg,
53735402
flexLogsComputeMediumAvg,
53745403
flexLogsComputeSmallAvg,
5404+
flexLogsComputeXlargeAvg,
53755405
flexLogsComputeXsmallAvg,
53765406
flexLogsStarterAvg,
53775407
flexLogsStarterStorageIndexAvg,
@@ -5681,6 +5711,9 @@ public String toString() {
56815711
sb.append(" flexLogsComputeSmallAvg: ")
56825712
.append(toIndentedString(flexLogsComputeSmallAvg))
56835713
.append("\n");
5714+
sb.append(" flexLogsComputeXlargeAvg: ")
5715+
.append(toIndentedString(flexLogsComputeXlargeAvg))
5716+
.append("\n");
56845717
sb.append(" flexLogsComputeXsmallAvg: ")
56855718
.append(toIndentedString(flexLogsComputeXsmallAvg))
56865719
.append("\n");

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM,
114114
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM,
115115
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM,
116+
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM,
116117
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM,
117118
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG_SUM,
118119
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG_SUM,
@@ -546,6 +547,10 @@ public class UsageSummaryResponse {
546547
"flex_logs_compute_small_avg_sum";
547548
private Long flexLogsComputeSmallAvgSum;
548549

550+
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM =
551+
"flex_logs_compute_xlarge_avg_sum";
552+
private Long flexLogsComputeXlargeAvgSum;
553+
549554
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM =
550555
"flex_logs_compute_xsmall_avg_sum";
551556
private Long flexLogsComputeXsmallAvgSum;
@@ -2923,6 +2928,28 @@ public void setFlexLogsComputeSmallAvgSum(Long flexLogsComputeSmallAvgSum) {
29232928
this.flexLogsComputeSmallAvgSum = flexLogsComputeSmallAvgSum;
29242929
}
29252930

2931+
public UsageSummaryResponse flexLogsComputeXlargeAvgSum(Long flexLogsComputeXlargeAvgSum) {
2932+
this.flexLogsComputeXlargeAvgSum = flexLogsComputeXlargeAvgSum;
2933+
return this;
2934+
}
2935+
2936+
/**
2937+
* Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the
2938+
* current months for all organizations.
2939+
*
2940+
* @return flexLogsComputeXlargeAvgSum
2941+
*/
2942+
@jakarta.annotation.Nullable
2943+
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM)
2944+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
2945+
public Long getFlexLogsComputeXlargeAvgSum() {
2946+
return flexLogsComputeXlargeAvgSum;
2947+
}
2948+
2949+
public void setFlexLogsComputeXlargeAvgSum(Long flexLogsComputeXlargeAvgSum) {
2950+
this.flexLogsComputeXlargeAvgSum = flexLogsComputeXlargeAvgSum;
2951+
}
2952+
29262953
public UsageSummaryResponse flexLogsComputeXsmallAvgSum(Long flexLogsComputeXsmallAvgSum) {
29272954
this.flexLogsComputeXsmallAvgSum = flexLogsComputeXsmallAvgSum;
29282955
return this;
@@ -5382,6 +5409,8 @@ public boolean equals(Object o) {
53825409
this.flexLogsComputeMediumAvgSum, usageSummaryResponse.flexLogsComputeMediumAvgSum)
53835410
&& Objects.equals(
53845411
this.flexLogsComputeSmallAvgSum, usageSummaryResponse.flexLogsComputeSmallAvgSum)
5412+
&& Objects.equals(
5413+
this.flexLogsComputeXlargeAvgSum, usageSummaryResponse.flexLogsComputeXlargeAvgSum)
53855414
&& Objects.equals(
53865415
this.flexLogsComputeXsmallAvgSum, usageSummaryResponse.flexLogsComputeXsmallAvgSum)
53875416
&& Objects.equals(this.flexLogsStarterAvgSum, usageSummaryResponse.flexLogsStarterAvgSum)
@@ -5688,6 +5717,7 @@ public int hashCode() {
56885717
flexLogsComputeLargeAvgSum,
56895718
flexLogsComputeMediumAvgSum,
56905719
flexLogsComputeSmallAvgSum,
5720+
flexLogsComputeXlargeAvgSum,
56915721
flexLogsComputeXsmallAvgSum,
56925722
flexLogsStarterAvgSum,
56935723
flexLogsStarterStorageIndexAvgSum,
@@ -6028,6 +6058,9 @@ public String toString() {
60286058
sb.append(" flexLogsComputeSmallAvgSum: ")
60296059
.append(toIndentedString(flexLogsComputeSmallAvgSum))
60306060
.append("\n");
6061+
sb.append(" flexLogsComputeXlargeAvgSum: ")
6062+
.append(toIndentedString(flexLogsComputeXlargeAvgSum))
6063+
.append("\n");
60316064
sb.append(" flexLogsComputeXsmallAvgSum: ")
60326065
.append(toIndentedString(flexLogsComputeXsmallAvgSum))
60336066
.append("\n");

0 commit comments

Comments
 (0)