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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-17 15:51:05.988918",
"spec_repo_commit": "b82d3677"
"regenerated": "2024-12-18 14:10:19.119214",
"spec_repo_commit": "d1f49008"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-17 15:51:06.004049",
"spec_repo_commit": "b82d3677"
"regenerated": "2024-12-18 14:10:19.134937",
"spec_repo_commit": "d1f49008"
}
}
}
40 changes: 36 additions & 4 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19697,7 +19697,8 @@ components:
format: int64
type: integer
avg_profiled_fargate_tasks:
description: The average profiled task count for Fargate Profiling.
description: The average total count for Fargate Container Profiler over
all hours in the current date for all organizations.
format: int64
type: integer
aws_host_top99p:
Expand Down Expand Up @@ -19971,6 +19972,16 @@ components:
hours in the current date for the given org.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_avg:
description: The average number of Profiling Fargate tasks over all hours
in the current date for all organizations.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_eks_avg:
description: The average number of Profiling Fargate Elastic Kubernetes
Service tasks over all hours in the current date for all organizations.
format: int64
type: integer
fargate_tasks_count_avg:
description: Shows the high-watermark of all Fargate tasks over all hours
in the current date for all organizations.
Expand Down Expand Up @@ -20468,7 +20479,8 @@ components:
format: int64
type: integer
avg_profiled_fargate_tasks:
description: The average profiled task count for Fargate Profiling.
description: The average total count for Fargate Container Profiler over
all hours in the current month for the given org.
format: int64
type: integer
aws_host_top99p:
Expand Down Expand Up @@ -20748,6 +20760,16 @@ components:
hours in the current date for the given org.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_avg:
description: The average number of Profiling Fargate tasks over all hours
in the current month for the given org.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_eks_avg:
description: The average number of Profiling Fargate Elastic Kubernetes
Service tasks over all hours in the current month for the given org.
format: int64
type: integer
fargate_tasks_count_avg:
description: The average task count for Fargate.
format: int64
Expand Down Expand Up @@ -21243,8 +21265,8 @@ components:
format: int64
type: integer
avg_profiled_fargate_tasks_sum:
description: Shows the average of all profiled Fargate tasks over all hours
in the current month for all organizations.
description: The average total count for Fargate Container Profiler over
all hours in the current month for all organizations.
format: int64
type: integer
aws_host_top99p_sum:
Expand Down Expand Up @@ -21532,6 +21554,16 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_avg_sum:
description: The average number of Profiling Fargate tasks over all hours
in the current month for all organizations.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_eks_avg_sum:
description: The average number of Profiling Fargate Elastic Kubernetes
Service tasks over all hours in the current month for all organizations.
format: int64
type: integer
fargate_tasks_count_avg_sum:
description: Shows the average of all Fargate tasks over all hours in the
current month for all organizations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM,
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM,
UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM,
UsageSummaryDate.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG,
UsageSummaryDate.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG,
UsageSummaryDate.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG,
UsageSummaryDate.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
Expand Down Expand Up @@ -383,6 +385,14 @@ public class UsageSummaryDate {
"error_tracking_rum_error_events_sum";
private Long errorTrackingRumErrorEventsSum;

public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG =
"fargate_container_profiler_profiling_fargate_avg";
private Long fargateContainerProfilerProfilingFargateAvg;

public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG =
"fargate_container_profiler_profiling_fargate_eks_avg";
private Long fargateContainerProfilerProfilingFargateEksAvg;

public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG = "fargate_tasks_count_avg";
private Long fargateTasksCountAvg;

Expand Down Expand Up @@ -879,7 +889,8 @@ public UsageSummaryDate avgProfiledFargateTasks(Long avgProfiledFargateTasks) {
}

/**
* The average profiled task count for Fargate Profiling.
* The average total count for Fargate Container Profiler over all hours in the current date for
* all organizations.
*
* @return avgProfiledFargateTasks
*/
Expand Down Expand Up @@ -2057,6 +2068,56 @@ public void setErrorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSu
this.errorTrackingRumErrorEventsSum = errorTrackingRumErrorEventsSum;
}

public UsageSummaryDate fargateContainerProfilerProfilingFargateAvg(
Long fargateContainerProfilerProfilingFargateAvg) {
this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg;
return this;
}

/**
* The average number of Profiling Fargate tasks over all hours in the current date for all
* organizations.
*
* @return fargateContainerProfilerProfilingFargateAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFargateContainerProfilerProfilingFargateAvg() {
return fargateContainerProfilerProfilingFargateAvg;
}

public void setFargateContainerProfilerProfilingFargateAvg(
Long fargateContainerProfilerProfilingFargateAvg) {
this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg;
}

public UsageSummaryDate fargateContainerProfilerProfilingFargateEksAvg(
Long fargateContainerProfilerProfilingFargateEksAvg) {
this.fargateContainerProfilerProfilingFargateEksAvg =
fargateContainerProfilerProfilingFargateEksAvg;
return this;
}

/**
* The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the
* current date for all organizations.
*
* @return fargateContainerProfilerProfilingFargateEksAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFargateContainerProfilerProfilingFargateEksAvg() {
return fargateContainerProfilerProfilingFargateEksAvg;
}

public void setFargateContainerProfilerProfilingFargateEksAvg(
Long fargateContainerProfilerProfilingFargateEksAvg) {
this.fargateContainerProfilerProfilingFargateEksAvg =
fargateContainerProfilerProfilingFargateEksAvg;
}

public UsageSummaryDate fargateTasksCountAvg(Long fargateTasksCountAvg) {
this.fargateTasksCountAvg = fargateTasksCountAvg;
return this;
Expand Down Expand Up @@ -4014,6 +4075,12 @@ public boolean equals(Object o) {
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDate.errorTrackingEventsSum)
&& Objects.equals(
this.errorTrackingRumErrorEventsSum, usageSummaryDate.errorTrackingRumErrorEventsSum)
&& Objects.equals(
this.fargateContainerProfilerProfilingFargateAvg,
usageSummaryDate.fargateContainerProfilerProfilingFargateAvg)
&& Objects.equals(
this.fargateContainerProfilerProfilingFargateEksAvg,
usageSummaryDate.fargateContainerProfilerProfilingFargateEksAvg)
&& Objects.equals(this.fargateTasksCountAvg, usageSummaryDate.fargateTasksCountAvg)
&& Objects.equals(this.fargateTasksCountHwm, usageSummaryDate.fargateTasksCountHwm)
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDate.flexLogsComputeLargeAvg)
Expand Down Expand Up @@ -4218,6 +4285,8 @@ public int hashCode() {
errorTrackingErrorEventsSum,
errorTrackingEventsSum,
errorTrackingRumErrorEventsSum,
fargateContainerProfilerProfilingFargateAvg,
fargateContainerProfilerProfilingFargateEksAvg,
fargateTasksCountAvg,
fargateTasksCountHwm,
flexLogsComputeLargeAvg,
Expand Down Expand Up @@ -4446,6 +4515,12 @@ public String toString() {
sb.append(" errorTrackingRumErrorEventsSum: ")
.append(toIndentedString(errorTrackingRumErrorEventsSum))
.append("\n");
sb.append(" fargateContainerProfilerProfilingFargateAvg: ")
.append(toIndentedString(fargateContainerProfilerProfilingFargateAvg))
.append("\n");
sb.append(" fargateContainerProfilerProfilingFargateEksAvg: ")
.append(toIndentedString(fargateContainerProfilerProfilingFargateEksAvg))
.append("\n");
sb.append(" fargateTasksCountAvg: ")
.append(toIndentedString(fargateTasksCountAvg))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
Expand Down Expand Up @@ -395,6 +397,14 @@ public class UsageSummaryDateOrg {
"error_tracking_rum_error_events_sum";
private Long errorTrackingRumErrorEventsSum;

public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG =
"fargate_container_profiler_profiling_fargate_avg";
private Long fargateContainerProfilerProfilingFargateAvg;

public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG =
"fargate_container_profiler_profiling_fargate_eks_avg";
private Long fargateContainerProfilerProfilingFargateEksAvg;

public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG = "fargate_tasks_count_avg";
private Long fargateTasksCountAvg;

Expand Down Expand Up @@ -942,7 +952,8 @@ public UsageSummaryDateOrg avgProfiledFargateTasks(Long avgProfiledFargateTasks)
}

/**
* The average profiled task count for Fargate Profiling.
* The average total count for Fargate Container Profiler over all hours in the current month for
* the given org.
*
* @return avgProfiledFargateTasks
*/
Expand Down Expand Up @@ -2141,6 +2152,56 @@ public void setErrorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSu
this.errorTrackingRumErrorEventsSum = errorTrackingRumErrorEventsSum;
}

public UsageSummaryDateOrg fargateContainerProfilerProfilingFargateAvg(
Long fargateContainerProfilerProfilingFargateAvg) {
this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg;
return this;
}

/**
* The average number of Profiling Fargate tasks over all hours in the current month for the given
* org.
*
* @return fargateContainerProfilerProfilingFargateAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFargateContainerProfilerProfilingFargateAvg() {
return fargateContainerProfilerProfilingFargateAvg;
}

public void setFargateContainerProfilerProfilingFargateAvg(
Long fargateContainerProfilerProfilingFargateAvg) {
this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg;
}

public UsageSummaryDateOrg fargateContainerProfilerProfilingFargateEksAvg(
Long fargateContainerProfilerProfilingFargateEksAvg) {
this.fargateContainerProfilerProfilingFargateEksAvg =
fargateContainerProfilerProfilingFargateEksAvg;
return this;
}

/**
* The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the
* current month for the given org.
*
* @return fargateContainerProfilerProfilingFargateEksAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFargateContainerProfilerProfilingFargateEksAvg() {
return fargateContainerProfilerProfilingFargateEksAvg;
}

public void setFargateContainerProfilerProfilingFargateEksAvg(
Long fargateContainerProfilerProfilingFargateEksAvg) {
this.fargateContainerProfilerProfilingFargateEksAvg =
fargateContainerProfilerProfilingFargateEksAvg;
}

public UsageSummaryDateOrg fargateTasksCountAvg(Long fargateTasksCountAvg) {
this.fargateTasksCountAvg = fargateTasksCountAvg;
return this;
Expand Down Expand Up @@ -4157,6 +4218,12 @@ public boolean equals(Object o) {
&& Objects.equals(this.errorTrackingEventsSum, usageSummaryDateOrg.errorTrackingEventsSum)
&& Objects.equals(
this.errorTrackingRumErrorEventsSum, usageSummaryDateOrg.errorTrackingRumErrorEventsSum)
&& Objects.equals(
this.fargateContainerProfilerProfilingFargateAvg,
usageSummaryDateOrg.fargateContainerProfilerProfilingFargateAvg)
&& Objects.equals(
this.fargateContainerProfilerProfilingFargateEksAvg,
usageSummaryDateOrg.fargateContainerProfilerProfilingFargateEksAvg)
&& Objects.equals(this.fargateTasksCountAvg, usageSummaryDateOrg.fargateTasksCountAvg)
&& Objects.equals(this.fargateTasksCountHwm, usageSummaryDateOrg.fargateTasksCountHwm)
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDateOrg.flexLogsComputeLargeAvg)
Expand Down Expand Up @@ -4379,6 +4446,8 @@ public int hashCode() {
errorTrackingErrorEventsSum,
errorTrackingEventsSum,
errorTrackingRumErrorEventsSum,
fargateContainerProfilerProfilingFargateAvg,
fargateContainerProfilerProfilingFargateEksAvg,
fargateTasksCountAvg,
fargateTasksCountHwm,
flexLogsComputeLargeAvg,
Expand Down Expand Up @@ -4615,6 +4684,12 @@ public String toString() {
sb.append(" errorTrackingRumErrorEventsSum: ")
.append(toIndentedString(errorTrackingRumErrorEventsSum))
.append("\n");
sb.append(" fargateContainerProfilerProfilingFargateAvg: ")
.append(toIndentedString(fargateContainerProfilerProfilingFargateAvg))
.append("\n");
sb.append(" fargateContainerProfilerProfilingFargateEksAvg: ")
.append(toIndentedString(fargateContainerProfilerProfilingFargateEksAvg))
.append("\n");
sb.append(" fargateTasksCountAvg: ")
.append(toIndentedString(fargateTasksCountAvg))
.append("\n");
Expand Down
Loading
Loading