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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "6e520c2",
"generated": "2025-08-05 21:12:23.350"
"spec_repo_commit": "f391bf6",
"generated": "2025-08-06 15:15:59.306"
}
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20817,6 +20817,11 @@ components:
over all hours in the current date for the given org.
format: int64
type: integer
flex_logs_compute_xlarge_avg:
description: Shows the average number of Flex Logs Compute Extra Large Instances
over all hours in the current date for the given org.
format: int64
type: integer
flex_logs_compute_xsmall_avg:
description: Shows the average number of Flex Logs Compute Extra Small Instances
over all hours in the current date for the given org.
Expand Down Expand Up @@ -21761,6 +21766,11 @@ components:
over all hours in the current date for the given org.
format: int64
type: integer
flex_logs_compute_xlarge_avg:
description: Shows the average number of Flex Logs Compute Extra Large Instances
over all hours in the current date for the given org.
format: int64
type: integer
flex_logs_compute_xsmall_avg:
description: Shows the average number of Flex Logs Compute Extra Small Instances
over all hours in the current date for the given org.
Expand Down Expand Up @@ -22712,6 +22722,11 @@ components:
over all hours in the current months for all organizations.
format: int64
type: integer
flex_logs_compute_xlarge_avg_sum:
description: Shows the average number of Flex Logs Compute Extra Large Instances
over all hours in the current months for all organizations.
format: int64
type: integer
flex_logs_compute_xsmall_avg_sum:
description: Shows the average number of Flex Logs Compute Extra Small Instances
over all hours in the current months for all organizations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG,
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG,
Expand Down Expand Up @@ -504,6 +505,10 @@ public class UsageSummaryDate {
"flex_logs_compute_small_avg";
private Long flexLogsComputeSmallAvg;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG =
"flex_logs_compute_xlarge_avg";
private Long flexLogsComputeXlargeAvg;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG =
"flex_logs_compute_xsmall_avg";
private Long flexLogsComputeXsmallAvg;
Expand Down Expand Up @@ -2754,6 +2759,28 @@ public void setFlexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) {
this.flexLogsComputeSmallAvg = flexLogsComputeSmallAvg;
}

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

/**
* Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the
* current date for the given org.
*
* @return flexLogsComputeXlargeAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFlexLogsComputeXlargeAvg() {
return flexLogsComputeXlargeAvg;
}

public void setFlexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) {
this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg;
}

public UsageSummaryDate flexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) {
this.flexLogsComputeXsmallAvg = flexLogsComputeXsmallAvg;
return this;
Expand Down Expand Up @@ -4955,6 +4982,7 @@ public boolean equals(Object o) {
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDate.flexLogsComputeLargeAvg)
&& Objects.equals(this.flexLogsComputeMediumAvg, usageSummaryDate.flexLogsComputeMediumAvg)
&& Objects.equals(this.flexLogsComputeSmallAvg, usageSummaryDate.flexLogsComputeSmallAvg)
&& Objects.equals(this.flexLogsComputeXlargeAvg, usageSummaryDate.flexLogsComputeXlargeAvg)
&& Objects.equals(this.flexLogsComputeXsmallAvg, usageSummaryDate.flexLogsComputeXsmallAvg)
&& Objects.equals(this.flexLogsStarterAvg, usageSummaryDate.flexLogsStarterAvg)
&& Objects.equals(
Expand Down Expand Up @@ -5206,6 +5234,7 @@ public int hashCode() {
flexLogsComputeLargeAvg,
flexLogsComputeMediumAvg,
flexLogsComputeSmallAvg,
flexLogsComputeXlargeAvg,
flexLogsComputeXsmallAvg,
flexLogsStarterAvg,
flexLogsStarterStorageIndexAvg,
Expand Down Expand Up @@ -5507,6 +5536,9 @@ public String toString() {
sb.append(" flexLogsComputeSmallAvg: ")
.append(toIndentedString(flexLogsComputeSmallAvg))
.append("\n");
sb.append(" flexLogsComputeXlargeAvg: ")
.append(toIndentedString(flexLogsComputeXlargeAvg))
.append("\n");
sb.append(" flexLogsComputeXsmallAvg: ")
.append(toIndentedString(flexLogsComputeXsmallAvg))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG,
Expand Down Expand Up @@ -516,6 +517,10 @@ public class UsageSummaryDateOrg {
"flex_logs_compute_small_avg";
private Long flexLogsComputeSmallAvg;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG =
"flex_logs_compute_xlarge_avg";
private Long flexLogsComputeXlargeAvg;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG =
"flex_logs_compute_xsmall_avg";
private Long flexLogsComputeXsmallAvg;
Expand Down Expand Up @@ -2837,6 +2842,28 @@ public void setFlexLogsComputeSmallAvg(Long flexLogsComputeSmallAvg) {
this.flexLogsComputeSmallAvg = flexLogsComputeSmallAvg;
}

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

/**
* Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the
* current date for the given org.
*
* @return flexLogsComputeXlargeAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFlexLogsComputeXlargeAvg() {
return flexLogsComputeXlargeAvg;
}

public void setFlexLogsComputeXlargeAvg(Long flexLogsComputeXlargeAvg) {
this.flexLogsComputeXlargeAvg = flexLogsComputeXlargeAvg;
}

public UsageSummaryDateOrg flexLogsComputeXsmallAvg(Long flexLogsComputeXsmallAvg) {
this.flexLogsComputeXsmallAvg = flexLogsComputeXsmallAvg;
return this;
Expand Down Expand Up @@ -5103,6 +5130,8 @@ public boolean equals(Object o) {
&& Objects.equals(
this.flexLogsComputeMediumAvg, usageSummaryDateOrg.flexLogsComputeMediumAvg)
&& Objects.equals(this.flexLogsComputeSmallAvg, usageSummaryDateOrg.flexLogsComputeSmallAvg)
&& Objects.equals(
this.flexLogsComputeXlargeAvg, usageSummaryDateOrg.flexLogsComputeXlargeAvg)
&& Objects.equals(
this.flexLogsComputeXsmallAvg, usageSummaryDateOrg.flexLogsComputeXsmallAvg)
&& Objects.equals(this.flexLogsStarterAvg, usageSummaryDateOrg.flexLogsStarterAvg)
Expand Down Expand Up @@ -5372,6 +5401,7 @@ public int hashCode() {
flexLogsComputeLargeAvg,
flexLogsComputeMediumAvg,
flexLogsComputeSmallAvg,
flexLogsComputeXlargeAvg,
flexLogsComputeXsmallAvg,
flexLogsStarterAvg,
flexLogsStarterStorageIndexAvg,
Expand Down Expand Up @@ -5681,6 +5711,9 @@ public String toString() {
sb.append(" flexLogsComputeSmallAvg: ")
.append(toIndentedString(flexLogsComputeSmallAvg))
.append("\n");
sb.append(" flexLogsComputeXlargeAvg: ")
.append(toIndentedString(flexLogsComputeXlargeAvg))
.append("\n");
sb.append(" flexLogsComputeXsmallAvg: ")
.append(toIndentedString(flexLogsComputeXsmallAvg))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
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,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_STARTER_STORAGE_INDEX_AVG_SUM,
Expand Down Expand Up @@ -546,6 +547,10 @@ public class UsageSummaryResponse {
"flex_logs_compute_small_avg_sum";
private Long flexLogsComputeSmallAvgSum;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM =
"flex_logs_compute_xlarge_avg_sum";
private Long flexLogsComputeXlargeAvgSum;

public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_XSMALL_AVG_SUM =
"flex_logs_compute_xsmall_avg_sum";
private Long flexLogsComputeXsmallAvgSum;
Expand Down Expand Up @@ -2923,6 +2928,28 @@ public void setFlexLogsComputeSmallAvgSum(Long flexLogsComputeSmallAvgSum) {
this.flexLogsComputeSmallAvgSum = flexLogsComputeSmallAvgSum;
}

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

/**
* Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the
* current months for all organizations.
*
* @return flexLogsComputeXlargeAvgSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLEX_LOGS_COMPUTE_XLARGE_AVG_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getFlexLogsComputeXlargeAvgSum() {
return flexLogsComputeXlargeAvgSum;
}

public void setFlexLogsComputeXlargeAvgSum(Long flexLogsComputeXlargeAvgSum) {
this.flexLogsComputeXlargeAvgSum = flexLogsComputeXlargeAvgSum;
}

public UsageSummaryResponse flexLogsComputeXsmallAvgSum(Long flexLogsComputeXsmallAvgSum) {
this.flexLogsComputeXsmallAvgSum = flexLogsComputeXsmallAvgSum;
return this;
Expand Down Expand Up @@ -5382,6 +5409,8 @@ public boolean equals(Object o) {
this.flexLogsComputeMediumAvgSum, usageSummaryResponse.flexLogsComputeMediumAvgSum)
&& Objects.equals(
this.flexLogsComputeSmallAvgSum, usageSummaryResponse.flexLogsComputeSmallAvgSum)
&& Objects.equals(
this.flexLogsComputeXlargeAvgSum, usageSummaryResponse.flexLogsComputeXlargeAvgSum)
&& Objects.equals(
this.flexLogsComputeXsmallAvgSum, usageSummaryResponse.flexLogsComputeXsmallAvgSum)
&& Objects.equals(this.flexLogsStarterAvgSum, usageSummaryResponse.flexLogsStarterAvgSum)
Expand Down Expand Up @@ -5688,6 +5717,7 @@ public int hashCode() {
flexLogsComputeLargeAvgSum,
flexLogsComputeMediumAvgSum,
flexLogsComputeSmallAvgSum,
flexLogsComputeXlargeAvgSum,
flexLogsComputeXsmallAvgSum,
flexLogsStarterAvgSum,
flexLogsStarterStorageIndexAvgSum,
Expand Down Expand Up @@ -6028,6 +6058,9 @@ public String toString() {
sb.append(" flexLogsComputeSmallAvgSum: ")
.append(toIndentedString(flexLogsComputeSmallAvgSum))
.append("\n");
sb.append(" flexLogsComputeXlargeAvgSum: ")
.append(toIndentedString(flexLogsComputeXlargeAvgSum))
.append("\n");
sb.append(" flexLogsComputeXsmallAvgSum: ")
.append(toIndentedString(flexLogsComputeXsmallAvgSum))
.append("\n");
Expand Down