|
82 | 82 | MonthlyUsageAttributionValues.JSON_PROPERTY_ESTIMATED_INGESTED_SPANS_USAGE, |
83 | 83 | MonthlyUsageAttributionValues.JSON_PROPERTY_FARGATE_PERCENTAGE, |
84 | 84 | MonthlyUsageAttributionValues.JSON_PROPERTY_FARGATE_USAGE, |
| 85 | + MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE, |
| 86 | + MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_STORED_LOGS_USAGE, |
85 | 87 | MonthlyUsageAttributionValues.JSON_PROPERTY_FUNCTIONS_PERCENTAGE, |
86 | 88 | MonthlyUsageAttributionValues.JSON_PROPERTY_FUNCTIONS_USAGE, |
87 | 89 | MonthlyUsageAttributionValues.JSON_PROPERTY_INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_PERCENTAGE, |
@@ -380,6 +382,13 @@ public class MonthlyUsageAttributionValues { |
380 | 382 | public static final String JSON_PROPERTY_FARGATE_USAGE = "fargate_usage"; |
381 | 383 | private Double fargateUsage; |
382 | 384 |
|
| 385 | + public static final String JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE = |
| 386 | + "flex_stored_logs_percentage"; |
| 387 | + private Double flexStoredLogsPercentage; |
| 388 | + |
| 389 | + public static final String JSON_PROPERTY_FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage"; |
| 390 | + private Double flexStoredLogsUsage; |
| 391 | + |
383 | 392 | public static final String JSON_PROPERTY_FUNCTIONS_PERCENTAGE = "functions_percentage"; |
384 | 393 | private Double functionsPercentage; |
385 | 394 |
|
@@ -1977,6 +1986,48 @@ public void setFargateUsage(Double fargateUsage) { |
1977 | 1986 | this.fargateUsage = fargateUsage; |
1978 | 1987 | } |
1979 | 1988 |
|
| 1989 | + public MonthlyUsageAttributionValues flexStoredLogsPercentage(Double flexStoredLogsPercentage) { |
| 1990 | + this.flexStoredLogsPercentage = flexStoredLogsPercentage; |
| 1991 | + return this; |
| 1992 | + } |
| 1993 | + |
| 1994 | + /** |
| 1995 | + * The percentage of Flex Stored Logs usage by tags. |
| 1996 | + * |
| 1997 | + * @return flexStoredLogsPercentage |
| 1998 | + */ |
| 1999 | + @jakarta.annotation.Nullable |
| 2000 | + @JsonProperty(JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE) |
| 2001 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 2002 | + public Double getFlexStoredLogsPercentage() { |
| 2003 | + return flexStoredLogsPercentage; |
| 2004 | + } |
| 2005 | + |
| 2006 | + public void setFlexStoredLogsPercentage(Double flexStoredLogsPercentage) { |
| 2007 | + this.flexStoredLogsPercentage = flexStoredLogsPercentage; |
| 2008 | + } |
| 2009 | + |
| 2010 | + public MonthlyUsageAttributionValues flexStoredLogsUsage(Double flexStoredLogsUsage) { |
| 2011 | + this.flexStoredLogsUsage = flexStoredLogsUsage; |
| 2012 | + return this; |
| 2013 | + } |
| 2014 | + |
| 2015 | + /** |
| 2016 | + * The Flex Stored Logs usage by tags. |
| 2017 | + * |
| 2018 | + * @return flexStoredLogsUsage |
| 2019 | + */ |
| 2020 | + @jakarta.annotation.Nullable |
| 2021 | + @JsonProperty(JSON_PROPERTY_FLEX_STORED_LOGS_USAGE) |
| 2022 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 2023 | + public Double getFlexStoredLogsUsage() { |
| 2024 | + return flexStoredLogsUsage; |
| 2025 | + } |
| 2026 | + |
| 2027 | + public void setFlexStoredLogsUsage(Double flexStoredLogsUsage) { |
| 2028 | + this.flexStoredLogsUsage = flexStoredLogsUsage; |
| 2029 | + } |
| 2030 | + |
1980 | 2031 | public MonthlyUsageAttributionValues functionsPercentage(Double functionsPercentage) { |
1981 | 2032 | this.functionsPercentage = functionsPercentage; |
1982 | 2033 | return this; |
@@ -4114,6 +4165,10 @@ public boolean equals(Object o) { |
4114 | 4165 | monthlyUsageAttributionValues.estimatedIngestedSpansUsage) |
4115 | 4166 | && Objects.equals(this.fargatePercentage, monthlyUsageAttributionValues.fargatePercentage) |
4116 | 4167 | && Objects.equals(this.fargateUsage, monthlyUsageAttributionValues.fargateUsage) |
| 4168 | + && Objects.equals( |
| 4169 | + this.flexStoredLogsPercentage, monthlyUsageAttributionValues.flexStoredLogsPercentage) |
| 4170 | + && Objects.equals( |
| 4171 | + this.flexStoredLogsUsage, monthlyUsageAttributionValues.flexStoredLogsUsage) |
4117 | 4172 | && Objects.equals( |
4118 | 4173 | this.functionsPercentage, monthlyUsageAttributionValues.functionsPercentage) |
4119 | 4174 | && Objects.equals(this.functionsUsage, monthlyUsageAttributionValues.functionsUsage) |
@@ -4387,6 +4442,8 @@ public int hashCode() { |
4387 | 4442 | estimatedIngestedSpansUsage, |
4388 | 4443 | fargatePercentage, |
4389 | 4444 | fargateUsage, |
| 4445 | + flexStoredLogsPercentage, |
| 4446 | + flexStoredLogsUsage, |
4390 | 4447 | functionsPercentage, |
4391 | 4448 | functionsUsage, |
4392 | 4449 | incidentManagementMonthlyActiveUsersPercentage, |
@@ -4616,6 +4673,12 @@ public String toString() { |
4616 | 4673 | .append("\n"); |
4617 | 4674 | sb.append(" fargatePercentage: ").append(toIndentedString(fargatePercentage)).append("\n"); |
4618 | 4675 | sb.append(" fargateUsage: ").append(toIndentedString(fargateUsage)).append("\n"); |
| 4676 | + sb.append(" flexStoredLogsPercentage: ") |
| 4677 | + .append(toIndentedString(flexStoredLogsPercentage)) |
| 4678 | + .append("\n"); |
| 4679 | + sb.append(" flexStoredLogsUsage: ") |
| 4680 | + .append(toIndentedString(flexStoredLogsUsage)) |
| 4681 | + .append("\n"); |
4619 | 4682 | sb.append(" functionsPercentage: ") |
4620 | 4683 | .append(toIndentedString(functionsPercentage)) |
4621 | 4684 | .append("\n"); |
|
0 commit comments