|
113 | 113 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM, |
114 | 114 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM, |
115 | 115 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM, |
| 116 | + UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM, |
116 | 117 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM, |
117 | 118 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG_SUM, |
118 | 119 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG_SUM, |
@@ -546,6 +547,10 @@ public class UsageSummaryResponse { |
546 | 547 | "flex_logs_compute_small_avg_sum"; |
547 | 548 | private Long flexLogsComputeSmallAvgSum; |
548 | 549 |
|
| 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 | + |
549 | 554 | public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM = |
550 | 555 | "flex_logs_compute_xsmall_avg_sum"; |
551 | 556 | private Long flexLogsComputeXsmallAvgSum; |
@@ -2923,6 +2928,28 @@ public void setFlexLogsComputeSmallAvgSum(Long flexLogsComputeSmallAvgSum) { |
2923 | 2928 | this.flexLogsComputeSmallAvgSum = flexLogsComputeSmallAvgSum; |
2924 | 2929 | } |
2925 | 2930 |
|
| 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 | + |
2926 | 2953 | public UsageSummaryResponse flexLogsComputeXsmallAvgSum(Long flexLogsComputeXsmallAvgSum) { |
2927 | 2954 | this.flexLogsComputeXsmallAvgSum = flexLogsComputeXsmallAvgSum; |
2928 | 2955 | return this; |
@@ -5382,6 +5409,8 @@ public boolean equals(Object o) { |
5382 | 5409 | this.flexLogsComputeMediumAvgSum, usageSummaryResponse.flexLogsComputeMediumAvgSum) |
5383 | 5410 | && Objects.equals( |
5384 | 5411 | this.flexLogsComputeSmallAvgSum, usageSummaryResponse.flexLogsComputeSmallAvgSum) |
| 5412 | + && Objects.equals( |
| 5413 | + this.flexLogsComputeXlargeAvgSum, usageSummaryResponse.flexLogsComputeXlargeAvgSum) |
5385 | 5414 | && Objects.equals( |
5386 | 5415 | this.flexLogsComputeXsmallAvgSum, usageSummaryResponse.flexLogsComputeXsmallAvgSum) |
5387 | 5416 | && Objects.equals(this.flexLogsStarterAvgSum, usageSummaryResponse.flexLogsStarterAvgSum) |
@@ -5688,6 +5717,7 @@ public int hashCode() { |
5688 | 5717 | flexLogsComputeLargeAvgSum, |
5689 | 5718 | flexLogsComputeMediumAvgSum, |
5690 | 5719 | flexLogsComputeSmallAvgSum, |
| 5720 | + flexLogsComputeXlargeAvgSum, |
5691 | 5721 | flexLogsComputeXsmallAvgSum, |
5692 | 5722 | flexLogsStarterAvgSum, |
5693 | 5723 | flexLogsStarterStorageIndexAvgSum, |
@@ -6028,6 +6058,9 @@ public String toString() { |
6028 | 6058 | sb.append(" flexLogsComputeSmallAvgSum: ") |
6029 | 6059 | .append(toIndentedString(flexLogsComputeSmallAvgSum)) |
6030 | 6060 | .append("\n"); |
| 6061 | + sb.append(" flexLogsComputeXlargeAvgSum: ") |
| 6062 | + .append(toIndentedString(flexLogsComputeXlargeAvgSum)) |
| 6063 | + .append("\n"); |
6031 | 6064 | sb.append(" flexLogsComputeXsmallAvgSum: ") |
6032 | 6065 | .append(toIndentedString(flexLogsComputeXsmallAvgSum)) |
6033 | 6066 | .append("\n"); |
|
0 commit comments