Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4514,6 +4514,7 @@ components:
- estimated_indexed_spans_usage
- estimated_ingested_spans_usage
- fargate_usage
- flex_logs_starter
- flex_stored_logs
- functions_usage
- incident_management_monthly_active_users_usage
Expand Down Expand Up @@ -4598,6 +4599,7 @@ components:
- ESTIMATED_INDEXED_SPANS_USAGE
- ESTIMATED_INGESTED_SPANS_USAGE
- FARGATE_USAGE
- FLEX_LOGS_STARTER
- FLEX_STORED_LOGS
- FUNCTIONS_USAGE
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
Expand Down Expand Up @@ -9080,6 +9082,8 @@ components:
- estimated_ingested_spans_percentage
- fargate_usage
- fargate_percentage
- flex_logs_starter_usage
- flex_logs_starter_percentage
- flex_stored_logs_usage
- flex_stored_logs_percentage
- functions_usage
Expand Down Expand Up @@ -9243,6 +9247,8 @@ components:
- ESTIMATED_INGESTED_SPANS_PERCENTAGE
- FARGATE_USAGE
- FARGATE_PERCENTAGE
- FLEX_LOGS_STARTER_USAGE
- FLEX_LOGS_STARTER_PERCENTAGE
- FLEX_STORED_LOGS_USAGE
- FLEX_STORED_LOGS_PERCENTAGE
- FUNCTIONS_USAGE
Expand Down Expand Up @@ -9614,6 +9620,14 @@ components:
description: The Fargate usage by tags.
format: double
type: number
flex_logs_starter_percentage:
description: The percentage of Flex Logs Starter usage by tags.
format: double
type: number
flex_logs_starter_usage:
description: The Flex Logs Starter usage by tags.
format: double
type: number
flex_stored_logs_percentage:
description: The percentage of Flex Stored Logs usage by tags.
format: double
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
"estimated_indexed_spans_usage",
"estimated_ingested_spans_usage",
"fargate_usage",
"flex_logs_starter",
"flex_stored_logs",
"functions_usage",
"incident_management_monthly_active_users_usage",
Expand Down Expand Up @@ -181,6 +182,8 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
new HourlyUsageAttributionUsageType("estimated_ingested_spans_usage");
public static final HourlyUsageAttributionUsageType FARGATE_USAGE =
new HourlyUsageAttributionUsageType("fargate_usage");
public static final HourlyUsageAttributionUsageType FLEX_LOGS_STARTER =
new HourlyUsageAttributionUsageType("flex_logs_starter");
public static final HourlyUsageAttributionUsageType FLEX_STORED_LOGS =
new HourlyUsageAttributionUsageType("flex_stored_logs");
public static final HourlyUsageAttributionUsageType FUNCTIONS_USAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ public class MonthlyUsageAttributionSupportedMetrics extends ModelEnum<String> {
"estimated_ingested_spans_percentage",
"fargate_usage",
"fargate_percentage",
"flex_logs_starter_usage",
"flex_logs_starter_percentage",
"flex_stored_logs_usage",
"flex_stored_logs_percentage",
"functions_usage",
Expand Down Expand Up @@ -310,6 +312,10 @@ public class MonthlyUsageAttributionSupportedMetrics extends ModelEnum<String> {
new MonthlyUsageAttributionSupportedMetrics("fargate_usage");
public static final MonthlyUsageAttributionSupportedMetrics FARGATE_PERCENTAGE =
new MonthlyUsageAttributionSupportedMetrics("fargate_percentage");
public static final MonthlyUsageAttributionSupportedMetrics FLEX_LOGS_STARTER_USAGE =
new MonthlyUsageAttributionSupportedMetrics("flex_logs_starter_usage");
public static final MonthlyUsageAttributionSupportedMetrics FLEX_LOGS_STARTER_PERCENTAGE =
new MonthlyUsageAttributionSupportedMetrics("flex_logs_starter_percentage");
public static final MonthlyUsageAttributionSupportedMetrics FLEX_STORED_LOGS_USAGE =
new MonthlyUsageAttributionSupportedMetrics("flex_stored_logs_usage");
public static final MonthlyUsageAttributionSupportedMetrics FLEX_STORED_LOGS_PERCENTAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@
MonthlyUsageAttributionValues.JSON_PROPERTY_ESTIMATED_INGESTED_SPANS_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FARGATE_PERCENTAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FARGATE_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_LOGS_STARTER_PERCENTAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_LOGS_STARTER_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FLEX_STORED_LOGS_USAGE,
MonthlyUsageAttributionValues.JSON_PROPERTY_FUNCTIONS_PERCENTAGE,
Expand Down Expand Up @@ -394,6 +396,13 @@ public class MonthlyUsageAttributionValues {
public static final String JSON_PROPERTY_FARGATE_USAGE = "fargate_usage";
private Double fargateUsage;

public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_PERCENTAGE =
"flex_logs_starter_percentage";
private Double flexLogsStarterPercentage;

public static final String JSON_PROPERTY_FLEX_LOGS_STARTER_USAGE = "flex_logs_starter_usage";
private Double flexLogsStarterUsage;

public static final String JSON_PROPERTY_FLEX_STORED_LOGS_PERCENTAGE =
"flex_stored_logs_percentage";
private Double flexStoredLogsPercentage;
Expand Down Expand Up @@ -2047,6 +2056,48 @@ public void setFargateUsage(Double fargateUsage) {
this.fargateUsage = fargateUsage;
}

public MonthlyUsageAttributionValues flexLogsStarterPercentage(Double flexLogsStarterPercentage) {
this.flexLogsStarterPercentage = flexLogsStarterPercentage;
return this;
}

/**
* The percentage of Flex Logs Starter usage by tags.
*
* @return flexLogsStarterPercentage
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_PERCENTAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Double getFlexLogsStarterPercentage() {
return flexLogsStarterPercentage;
}

public void setFlexLogsStarterPercentage(Double flexLogsStarterPercentage) {
this.flexLogsStarterPercentage = flexLogsStarterPercentage;
}

public MonthlyUsageAttributionValues flexLogsStarterUsage(Double flexLogsStarterUsage) {
this.flexLogsStarterUsage = flexLogsStarterUsage;
return this;
}

/**
* The Flex Logs Starter usage by tags.
*
* @return flexLogsStarterUsage
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_STARTER_USAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Double getFlexLogsStarterUsage() {
return flexLogsStarterUsage;
}

public void setFlexLogsStarterUsage(Double flexLogsStarterUsage) {
this.flexLogsStarterUsage = flexLogsStarterUsage;
}

public MonthlyUsageAttributionValues flexStoredLogsPercentage(Double flexStoredLogsPercentage) {
this.flexStoredLogsPercentage = flexStoredLogsPercentage;
return this;
Expand Down Expand Up @@ -4273,6 +4324,10 @@ public boolean equals(Object o) {
monthlyUsageAttributionValues.estimatedIngestedSpansUsage)
&& Objects.equals(this.fargatePercentage, monthlyUsageAttributionValues.fargatePercentage)
&& Objects.equals(this.fargateUsage, monthlyUsageAttributionValues.fargateUsage)
&& Objects.equals(
this.flexLogsStarterPercentage, monthlyUsageAttributionValues.flexLogsStarterPercentage)
&& Objects.equals(
this.flexLogsStarterUsage, monthlyUsageAttributionValues.flexLogsStarterUsage)
&& Objects.equals(
this.flexStoredLogsPercentage, monthlyUsageAttributionValues.flexStoredLogsPercentage)
&& Objects.equals(
Expand Down Expand Up @@ -4554,6 +4609,8 @@ public int hashCode() {
estimatedIngestedSpansUsage,
fargatePercentage,
fargateUsage,
flexLogsStarterPercentage,
flexLogsStarterUsage,
flexStoredLogsPercentage,
flexStoredLogsUsage,
functionsPercentage,
Expand Down Expand Up @@ -4793,6 +4850,12 @@ public String toString() {
.append("\n");
sb.append(" fargatePercentage: ").append(toIndentedString(fargatePercentage)).append("\n");
sb.append(" fargateUsage: ").append(toIndentedString(fargateUsage)).append("\n");
sb.append(" flexLogsStarterPercentage: ")
.append(toIndentedString(flexLogsStarterPercentage))
.append("\n");
sb.append(" flexLogsStarterUsage: ")
.append(toIndentedString(flexLogsStarterUsage))
.append("\n");
sb.append(" flexStoredLogsPercentage: ")
.append(toIndentedString(flexStoredLogsPercentage))
.append("\n");
Expand Down
Loading