|
136 | 136 | UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM, |
137 | 137 | UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM, |
138 | 138 | UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM, |
| 139 | + UsageSummaryResponse.JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM, |
139 | 140 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM, |
140 | 141 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM, |
141 | 142 | UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM, |
@@ -701,6 +702,10 @@ public class UsageSummaryResponse { |
701 | 702 | "fargate_tasks_count_hwm_sum"; |
702 | 703 | private Long fargateTasksCountHwmSum; |
703 | 704 |
|
| 705 | + public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM = |
| 706 | + "feature_flags_config_requests_agg_sum"; |
| 707 | + private Long featureFlagsConfigRequestsAggSum; |
| 708 | + |
704 | 709 | public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM = |
705 | 710 | "flex_logs_compute_large_avg_sum"; |
706 | 711 | private Long flexLogsComputeLargeAvgSum; |
@@ -3759,6 +3764,29 @@ public void setFargateTasksCountHwmSum(Long fargateTasksCountHwmSum) { |
3759 | 3764 | this.fargateTasksCountHwmSum = fargateTasksCountHwmSum; |
3760 | 3765 | } |
3761 | 3766 |
|
| 3767 | + public UsageSummaryResponse featureFlagsConfigRequestsAggSum( |
| 3768 | + Long featureFlagsConfigRequestsAggSum) { |
| 3769 | + this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum; |
| 3770 | + return this; |
| 3771 | + } |
| 3772 | + |
| 3773 | + /** |
| 3774 | + * Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the |
| 3775 | + * current month for all organizations. |
| 3776 | + * |
| 3777 | + * @return featureFlagsConfigRequestsAggSum |
| 3778 | + */ |
| 3779 | + @jakarta.annotation.Nullable |
| 3780 | + @JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM) |
| 3781 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 3782 | + public Long getFeatureFlagsConfigRequestsAggSum() { |
| 3783 | + return featureFlagsConfigRequestsAggSum; |
| 3784 | + } |
| 3785 | + |
| 3786 | + public void setFeatureFlagsConfigRequestsAggSum(Long featureFlagsConfigRequestsAggSum) { |
| 3787 | + this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum; |
| 3788 | + } |
| 3789 | + |
3762 | 3790 | public UsageSummaryResponse flexLogsComputeLargeAvgSum(Long flexLogsComputeLargeAvgSum) { |
3763 | 3791 | this.flexLogsComputeLargeAvgSum = flexLogsComputeLargeAvgSum; |
3764 | 3792 | return this; |
@@ -7209,6 +7237,9 @@ public boolean equals(Object o) { |
7209 | 7237 | this.fargateTasksCountAvgSum, usageSummaryResponse.fargateTasksCountAvgSum) |
7210 | 7238 | && Objects.equals( |
7211 | 7239 | this.fargateTasksCountHwmSum, usageSummaryResponse.fargateTasksCountHwmSum) |
| 7240 | + && Objects.equals( |
| 7241 | + this.featureFlagsConfigRequestsAggSum, |
| 7242 | + usageSummaryResponse.featureFlagsConfigRequestsAggSum) |
7212 | 7243 | && Objects.equals( |
7213 | 7244 | this.flexLogsComputeLargeAvgSum, usageSummaryResponse.flexLogsComputeLargeAvgSum) |
7214 | 7245 | && Objects.equals( |
@@ -7638,6 +7669,7 @@ public int hashCode() { |
7638 | 7669 | fargateContainerProfilerProfilingFargateEksAvgSum, |
7639 | 7670 | fargateTasksCountAvgSum, |
7640 | 7671 | fargateTasksCountHwmSum, |
| 7672 | + featureFlagsConfigRequestsAggSum, |
7641 | 7673 | flexLogsComputeLargeAvgSum, |
7642 | 7674 | flexLogsComputeMediumAvgSum, |
7643 | 7675 | flexLogsComputeSmallAvgSum, |
@@ -8080,6 +8112,9 @@ public String toString() { |
8080 | 8112 | sb.append(" fargateTasksCountHwmSum: ") |
8081 | 8113 | .append(toIndentedString(fargateTasksCountHwmSum)) |
8082 | 8114 | .append("\n"); |
| 8115 | + sb.append(" featureFlagsConfigRequestsAggSum: ") |
| 8116 | + .append(toIndentedString(featureFlagsConfigRequestsAggSum)) |
| 8117 | + .append("\n"); |
8083 | 8118 | sb.append(" flexLogsComputeLargeAvgSum: ") |
8084 | 8119 | .append(toIndentedString(flexLogsComputeLargeAvgSum)) |
8085 | 8120 | .append("\n"); |
|
0 commit comments