|
84 | 84 | MonthlyUsageAttributionValues.JSON_PROPERTY_ESTIMATED_INGESTED_SPANS_USAGE, |
85 | 85 | MonthlyUsageAttributionValues.JSON_PROPERTY_FARGATE_PERCENTAGE, |
86 | 86 | MonthlyUsageAttributionValues.JSON_PROPERTY_FARGATE_USAGE, |
| 87 | + MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_LOGS_STARTER_PERCENTAGE, |
| 88 | + MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_LOGS_STARTER_USAGE, |
87 | 89 | MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE, |
88 | 90 | MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_STORED_LOGS_USAGE, |
89 | 91 | MonthlyUsageAttributionValues.JSON_PROPERTY_FUNCTIONS_PERCENTAGE, |
@@ -394,6 +396,13 @@ public class MonthlyUsageAttributionValues { |
394 | 396 | public static final String JSON_PROPERTY_FARGATE_USAGE = "fargate_usage"; |
395 | 397 | private Double fargateUsage; |
396 | 398 |
|
| 399 | + public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_PERCENTAGE = |
| 400 | + "flex_logs_starter_percentage"; |
| 401 | + private Double flexLogsStarterPercentage; |
| 402 | + |
| 403 | + public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_USAGE = "flex_logs_starter_usage"; |
| 404 | + private Double flexLogsStarterUsage; |
| 405 | + |
397 | 406 | public static final String JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE = |
398 | 407 | "flex_stored_logs_percentage"; |
399 | 408 | private Double flexStoredLogsPercentage; |
@@ -2047,6 +2056,48 @@ public void setFargateUsage(Double fargateUsage) { |
2047 | 2056 | this.fargateUsage = fargateUsage; |
2048 | 2057 | } |
2049 | 2058 |
|
| 2059 | + public MonthlyUsageAttributionValues flexLogsStarterPercentage(Double flexLogsStarterPercentage) { |
| 2060 | + this.flexLogsStarterPercentage = flexLogsStarterPercentage; |
| 2061 | + return this; |
| 2062 | + } |
| 2063 | + |
| 2064 | + /** |
| 2065 | + * The percentage of Flex Logs Starter usage by tags. |
| 2066 | + * |
| 2067 | + * @return flexLogsStarterPercentage |
| 2068 | + */ |
| 2069 | + @jakarta.annotation.Nullable |
| 2070 | + @JsonProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_PERCENTAGE) |
| 2071 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 2072 | + public Double getFlexLogsStarterPercentage() { |
| 2073 | + return flexLogsStarterPercentage; |
| 2074 | + } |
| 2075 | + |
| 2076 | + public void setFlexLogsStarterPercentage(Double flexLogsStarterPercentage) { |
| 2077 | + this.flexLogsStarterPercentage = flexLogsStarterPercentage; |
| 2078 | + } |
| 2079 | + |
| 2080 | + public MonthlyUsageAttributionValues flexLogsStarterUsage(Double flexLogsStarterUsage) { |
| 2081 | + this.flexLogsStarterUsage = flexLogsStarterUsage; |
| 2082 | + return this; |
| 2083 | + } |
| 2084 | + |
| 2085 | + /** |
| 2086 | + * The Flex Logs Starter usage by tags. |
| 2087 | + * |
| 2088 | + * @return flexLogsStarterUsage |
| 2089 | + */ |
| 2090 | + @jakarta.annotation.Nullable |
| 2091 | + @JsonProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_USAGE) |
| 2092 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 2093 | + public Double getFlexLogsStarterUsage() { |
| 2094 | + return flexLogsStarterUsage; |
| 2095 | + } |
| 2096 | + |
| 2097 | + public void setFlexLogsStarterUsage(Double flexLogsStarterUsage) { |
| 2098 | + this.flexLogsStarterUsage = flexLogsStarterUsage; |
| 2099 | + } |
| 2100 | + |
2050 | 2101 | public MonthlyUsageAttributionValues flexStoredLogsPercentage(Double flexStoredLogsPercentage) { |
2051 | 2102 | this.flexStoredLogsPercentage = flexStoredLogsPercentage; |
2052 | 2103 | return this; |
@@ -4273,6 +4324,10 @@ public boolean equals(Object o) { |
4273 | 4324 | monthlyUsageAttributionValues.estimatedIngestedSpansUsage) |
4274 | 4325 | && Objects.equals(this.fargatePercentage, monthlyUsageAttributionValues.fargatePercentage) |
4275 | 4326 | && Objects.equals(this.fargateUsage, monthlyUsageAttributionValues.fargateUsage) |
| 4327 | + && Objects.equals( |
| 4328 | + this.flexLogsStarterPercentage, monthlyUsageAttributionValues.flexLogsStarterPercentage) |
| 4329 | + && Objects.equals( |
| 4330 | + this.flexLogsStarterUsage, monthlyUsageAttributionValues.flexLogsStarterUsage) |
4276 | 4331 | && Objects.equals( |
4277 | 4332 | this.flexStoredLogsPercentage, monthlyUsageAttributionValues.flexStoredLogsPercentage) |
4278 | 4333 | && Objects.equals( |
@@ -4554,6 +4609,8 @@ public int hashCode() { |
4554 | 4609 | estimatedIngestedSpansUsage, |
4555 | 4610 | fargatePercentage, |
4556 | 4611 | fargateUsage, |
| 4612 | + flexLogsStarterPercentage, |
| 4613 | + flexLogsStarterUsage, |
4557 | 4614 | flexStoredLogsPercentage, |
4558 | 4615 | flexStoredLogsUsage, |
4559 | 4616 | functionsPercentage, |
@@ -4793,6 +4850,12 @@ public String toString() { |
4793 | 4850 | .append("\n"); |
4794 | 4851 | sb.append(" fargatePercentage: ").append(toIndentedString(fargatePercentage)).append("\n"); |
4795 | 4852 | sb.append(" fargateUsage: ").append(toIndentedString(fargateUsage)).append("\n"); |
| 4853 | + sb.append(" flexLogsStarterPercentage: ") |
| 4854 | + .append(toIndentedString(flexLogsStarterPercentage)) |
| 4855 | + .append("\n"); |
| 4856 | + sb.append(" flexLogsStarterUsage: ") |
| 4857 | + .append(toIndentedString(flexLogsStarterUsage)) |
| 4858 | + .append("\n"); |
4796 | 4859 | sb.append(" flexStoredLogsPercentage: ") |
4797 | 4860 | .append(toIndentedString(flexStoredLogsPercentage)) |
4798 | 4861 | .append("\n"); |
|
0 commit comments