Skip to content
Open
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
12 changes: 12 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21445,6 +21445,10 @@ components:
description: Shows the average of all Fargate tasks over all hours in the current date for all organizations.
format: int64
type: integer
feature_flags_config_requests_sum:
description: Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the current date for all organizations.
format: int64
type: integer
flex_logs_compute_large_avg:
description: Shows the average number of Flex Logs Compute Large Instances over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -22394,6 +22398,10 @@ components:
description: Shows the high-water mark of all Fargate tasks over all hours in the current date for the given org.
format: int64
type: integer
feature_flags_config_requests_sum:
description: Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the current date for the given org.
format: int64
type: integer
flex_logs_compute_large_avg:
description: Shows the average number of Flex Logs Compute Large Instances over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -23353,6 +23361,10 @@ components:
description: Shows the sum of the high-water marks of all Fargate tasks over all hours in the current month for all organizations.
format: int64
type: integer
feature_flags_config_requests_agg_sum:
description: Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the current month for all organizations.
format: int64
type: integer
flex_logs_compute_large_avg_sum:
description: Shows the average number of Flex Logs Compute Large Instances over all hours in the current months for all organizations.
format: int64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
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_FEATURE_FLAGS_CONFIG_REQUESTS_SUM,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
Expand Down Expand Up @@ -630,6 +631,10 @@ public class UsageSummaryDate {
public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM = "fargate_tasks_count_hwm";
private Long fargateTasksCountHwm;

public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM =
"feature_flags_config_requests_sum";
private Long featureFlagsConfigRequestsSum;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG =
"flex_logs_compute_large_avg";
private Long flexLogsComputeLargeAvg;
Expand Down Expand Up @@ -3471,6 +3476,28 @@ public void setFargateTasksCountHwm(Long fargateTasksCountHwm) {
this.fargateTasksCountHwm = fargateTasksCountHwm;
}

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

/**
* Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the
* current date for all organizations.
*
* @return featureFlagsConfigRequestsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFeatureFlagsConfigRequestsSum() {
return featureFlagsConfigRequestsSum;
}

public void setFeatureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) {
this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum;
}

public UsageSummaryDate flexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) {
this.flexLogsComputeLargeAvg = flexLogsComputeLargeAvg;
return this;
Expand Down Expand Up @@ -6563,6 +6590,8 @@ public boolean equals(Object o) {
usageSummaryDate.fargateContainerProfilerProfilingFargateEksAvg)
&& Objects.equals(this.fargateTasksCountAvg, usageSummaryDate.fargateTasksCountAvg)
&& Objects.equals(this.fargateTasksCountHwm, usageSummaryDate.fargateTasksCountHwm)
&& Objects.equals(
this.featureFlagsConfigRequestsSum, usageSummaryDate.featureFlagsConfigRequestsSum)
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDate.flexLogsComputeLargeAvg)
&& Objects.equals(this.flexLogsComputeMediumAvg, usageSummaryDate.flexLogsComputeMediumAvg)
&& Objects.equals(this.flexLogsComputeSmallAvg, usageSummaryDate.flexLogsComputeSmallAvg)
Expand Down Expand Up @@ -6917,6 +6946,7 @@ public int hashCode() {
fargateContainerProfilerProfilingFargateEksAvg,
fargateTasksCountAvg,
fargateTasksCountHwm,
featureFlagsConfigRequestsSum,
flexLogsComputeLargeAvg,
flexLogsComputeMediumAvg,
flexLogsComputeSmallAvg,
Expand Down Expand Up @@ -7298,6 +7328,9 @@ public String toString() {
sb.append(" fargateTasksCountHwm: ")
.append(toIndentedString(fargateTasksCountHwm))
.append("\n");
sb.append(" featureFlagsConfigRequestsSum: ")
.append(toIndentedString(featureFlagsConfigRequestsSum))
.append("\n");
sb.append(" flexLogsComputeLargeAvg: ")
.append(toIndentedString(flexLogsComputeLargeAvg))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
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_FEATURE_FLAGS_CONFIG_REQUESTS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
Expand Down Expand Up @@ -643,6 +644,10 @@ public class UsageSummaryDateOrg {
public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM = "fargate_tasks_count_hwm";
private Long fargateTasksCountHwm;

public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM =
"feature_flags_config_requests_sum";
private Long featureFlagsConfigRequestsSum;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG =
"flex_logs_compute_large_avg";
private Long flexLogsComputeLargeAvg;
Expand Down Expand Up @@ -3555,6 +3560,28 @@ public void setFargateTasksCountHwm(Long fargateTasksCountHwm) {
this.fargateTasksCountHwm = fargateTasksCountHwm;
}

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

/**
* Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the
* current date for the given org.
*
* @return featureFlagsConfigRequestsSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFeatureFlagsConfigRequestsSum() {
return featureFlagsConfigRequestsSum;
}

public void setFeatureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) {
this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum;
}

public UsageSummaryDateOrg flexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) {
this.flexLogsComputeLargeAvg = flexLogsComputeLargeAvg;
return this;
Expand Down Expand Up @@ -6712,6 +6739,8 @@ public boolean equals(Object o) {
usageSummaryDateOrg.fargateContainerProfilerProfilingFargateEksAvg)
&& Objects.equals(this.fargateTasksCountAvg, usageSummaryDateOrg.fargateTasksCountAvg)
&& Objects.equals(this.fargateTasksCountHwm, usageSummaryDateOrg.fargateTasksCountHwm)
&& Objects.equals(
this.featureFlagsConfigRequestsSum, usageSummaryDateOrg.featureFlagsConfigRequestsSum)
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDateOrg.flexLogsComputeLargeAvg)
&& Objects.equals(
this.flexLogsComputeMediumAvg, usageSummaryDateOrg.flexLogsComputeMediumAvg)
Expand Down Expand Up @@ -7087,6 +7116,7 @@ public int hashCode() {
fargateContainerProfilerProfilingFargateEksAvg,
fargateTasksCountAvg,
fargateTasksCountHwm,
featureFlagsConfigRequestsSum,
flexLogsComputeLargeAvg,
flexLogsComputeMediumAvg,
flexLogsComputeSmallAvg,
Expand Down Expand Up @@ -7476,6 +7506,9 @@ public String toString() {
sb.append(" fargateTasksCountHwm: ")
.append(toIndentedString(fargateTasksCountHwm))
.append("\n");
sb.append(" featureFlagsConfigRequestsSum: ")
.append(toIndentedString(featureFlagsConfigRequestsSum))
.append("\n");
sb.append(" flexLogsComputeLargeAvg: ")
.append(toIndentedString(flexLogsComputeLargeAvg))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM,
UsageSummaryResponse.JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM,
Expand Down Expand Up @@ -683,6 +684,10 @@ public class UsageSummaryResponse {
"fargate_tasks_count_hwm_sum";
private Long fargateTasksCountHwmSum;

public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM =
"feature_flags_config_requests_agg_sum";
private Long featureFlagsConfigRequestsAggSum;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM =
"flex_logs_compute_large_avg_sum";
private Long flexLogsComputeLargeAvgSum;
Expand Down Expand Up @@ -3659,6 +3664,29 @@ public void setFargateTasksCountHwmSum(Long fargateTasksCountHwmSum) {
this.fargateTasksCountHwmSum = fargateTasksCountHwmSum;
}

public UsageSummaryResponse featureFlagsConfigRequestsAggSum(
Long featureFlagsConfigRequestsAggSum) {
this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum;
return this;
}

/**
* Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the
* current month for all organizations.
*
* @return featureFlagsConfigRequestsAggSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFeatureFlagsConfigRequestsAggSum() {
return featureFlagsConfigRequestsAggSum;
}

public void setFeatureFlagsConfigRequestsAggSum(Long featureFlagsConfigRequestsAggSum) {
this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum;
}

public UsageSummaryResponse flexLogsComputeLargeAvgSum(Long flexLogsComputeLargeAvgSum) {
this.flexLogsComputeLargeAvgSum = flexLogsComputeLargeAvgSum;
return this;
Expand Down Expand Up @@ -7031,6 +7059,9 @@ public boolean equals(Object o) {
this.fargateTasksCountAvgSum, usageSummaryResponse.fargateTasksCountAvgSum)
&& Objects.equals(
this.fargateTasksCountHwmSum, usageSummaryResponse.fargateTasksCountHwmSum)
&& Objects.equals(
this.featureFlagsConfigRequestsAggSum,
usageSummaryResponse.featureFlagsConfigRequestsAggSum)
&& Objects.equals(
this.flexLogsComputeLargeAvgSum, usageSummaryResponse.flexLogsComputeLargeAvgSum)
&& Objects.equals(
Expand Down Expand Up @@ -7449,6 +7480,7 @@ public int hashCode() {
fargateContainerProfilerProfilingFargateEksAvgSum,
fargateTasksCountAvgSum,
fargateTasksCountHwmSum,
featureFlagsConfigRequestsAggSum,
flexLogsComputeLargeAvgSum,
flexLogsComputeMediumAvgSum,
flexLogsComputeSmallAvgSum,
Expand Down Expand Up @@ -7879,6 +7911,9 @@ public String toString() {
sb.append(" fargateTasksCountHwmSum: ")
.append(toIndentedString(fargateTasksCountHwmSum))
.append("\n");
sb.append(" featureFlagsConfigRequestsAggSum: ")
.append(toIndentedString(featureFlagsConfigRequestsAggSum))
.append("\n");
sb.append(" flexLogsComputeLargeAvgSum: ")
.append(toIndentedString(flexLogsComputeLargeAvgSum))
.append("\n");
Expand Down
Loading