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
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21397,6 +21397,16 @@ components:
current date for all organizations (To be deprecated on October 1st, 2024).
format: int64
type: integer
ccm_spend_monitored_ent_last:
description: Shows the last value of the amount of cloud spend monitored
for Enterprise over all hours in the current date for all organizations.
format: int64
type: integer
ccm_spend_monitored_pro_last:
description: Shows the last value of the amount of cloud spend monitored
for Pro over all hours in the current date for all organizations.
format: int64
type: integer
ci_pipeline_indexed_spans_sum:
description: Shows the sum of all CI pipeline indexed spans over all hours
in the current month for all organizations.
Expand Down Expand Up @@ -22529,6 +22539,16 @@ components:
current date for the given org (To be deprecated on October 1st, 2024).
format: int64
type: integer
ccm_spend_monitored_ent_last:
description: Shows the last value of the amount of cloud spend monitored
for Enterprise over all hours in the current date for the given org.
format: int64
type: integer
ccm_spend_monitored_pro_last:
description: Shows the last value of the amount of cloud spend monitored
for Pro over all hours in the current date for the given org.
format: int64
type: integer
ci_pipeline_indexed_spans_sum:
description: Shows the sum of all CI pipeline indexed spans over all hours
in the current date for the given org.
Expand Down Expand Up @@ -23673,6 +23693,16 @@ components:
2024).
format: int64
type: integer
ccm_spend_monitored_ent_last_sum:
description: Shows the sum of the last value of the amount of cloud spend
monitored for Enterprise in the current month for all organizations.
format: int64
type: integer
ccm_spend_monitored_pro_last_sum:
description: Shows the sum of the last value of the amount of cloud spend
monitored for Pro in the current month for all organizations.
format: int64
type: integer
ci_pipeline_indexed_spans_agg_sum:
description: Shows the sum of all CI pipeline indexed spans over all hours
in the current month for all organizations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM,
UsageSummaryDate.JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST,
UsageSummaryDate.JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST,
UsageSummaryDate.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_SUM,
UsageSummaryDate.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_SUM,
UsageSummaryDate.JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM,
Expand Down Expand Up @@ -313,6 +315,14 @@ public class UsageSummaryDate {
public static final String JSON_PROPERTY_BROWSER_RUM_UNITS_SUM = "browser_rum_units_sum";
private Long browserRumUnitsSum;

public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST =
"ccm_spend_monitored_ent_last";
private Long ccmSpendMonitoredEntLast;

public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST =
"ccm_spend_monitored_pro_last";
private Long ccmSpendMonitoredProLast;

public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_SUM =
"ci_pipeline_indexed_spans_sum";
private Long ciPipelineIndexedSpansSum;
Expand Down Expand Up @@ -1488,6 +1498,50 @@ public void setBrowserRumUnitsSum(Long browserRumUnitsSum) {
this.browserRumUnitsSum = browserRumUnitsSum;
}

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

/**
* Shows the last value of the amount of cloud spend monitored for Enterprise over all hours in
* the current date for all organizations.
*
* @return ccmSpendMonitoredEntLast
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCcmSpendMonitoredEntLast() {
return ccmSpendMonitoredEntLast;
}

public void setCcmSpendMonitoredEntLast(Long ccmSpendMonitoredEntLast) {
this.ccmSpendMonitoredEntLast = ccmSpendMonitoredEntLast;
}

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

/**
* Shows the last value of the amount of cloud spend monitored for Pro over all hours in the
* current date for all organizations.
*
* @return ccmSpendMonitoredProLast
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCcmSpendMonitoredProLast() {
return ccmSpendMonitoredProLast;
}

public void setCcmSpendMonitoredProLast(Long ccmSpendMonitoredProLast) {
this.ccmSpendMonitoredProLast = ccmSpendMonitoredProLast;
}

public UsageSummaryDate ciPipelineIndexedSpansSum(Long ciPipelineIndexedSpansSum) {
this.ciPipelineIndexedSpansSum = ciPipelineIndexedSpansSum;
return this;
Expand Down Expand Up @@ -5897,6 +5951,8 @@ public boolean equals(Object o) {
&& Objects.equals(
this.browserRumReplaySessionCountSum, usageSummaryDate.browserRumReplaySessionCountSum)
&& Objects.equals(this.browserRumUnitsSum, usageSummaryDate.browserRumUnitsSum)
&& Objects.equals(this.ccmSpendMonitoredEntLast, usageSummaryDate.ccmSpendMonitoredEntLast)
&& Objects.equals(this.ccmSpendMonitoredProLast, usageSummaryDate.ccmSpendMonitoredProLast)
&& Objects.equals(
this.ciPipelineIndexedSpansSum, usageSummaryDate.ciPipelineIndexedSpansSum)
&& Objects.equals(this.ciTestIndexedSpansSum, usageSummaryDate.ciTestIndexedSpansSum)
Expand Down Expand Up @@ -6281,6 +6337,8 @@ public int hashCode() {
browserRumLiteSessionCountSum,
browserRumReplaySessionCountSum,
browserRumUnitsSum,
ccmSpendMonitoredEntLast,
ccmSpendMonitoredProLast,
ciPipelineIndexedSpansSum,
ciTestIndexedSpansSum,
ciVisibilityItrCommittersHwm,
Expand Down Expand Up @@ -6526,6 +6584,12 @@ public String toString() {
.append(toIndentedString(browserRumReplaySessionCountSum))
.append("\n");
sb.append(" browserRumUnitsSum: ").append(toIndentedString(browserRumUnitsSum)).append("\n");
sb.append(" ccmSpendMonitoredEntLast: ")
.append(toIndentedString(ccmSpendMonitoredEntLast))
.append("\n");
sb.append(" ccmSpendMonitoredProLast: ")
.append(toIndentedString(ccmSpendMonitoredProLast))
.append("\n");
sb.append(" ciPipelineIndexedSpansSum: ")
.append(toIndentedString(ciPipelineIndexedSpansSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_BROWSER_RUM_UNITS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST,
UsageSummaryDateOrg.JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST,
UsageSummaryDateOrg.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM,
Expand Down Expand Up @@ -323,6 +325,14 @@ public class UsageSummaryDateOrg {
public static final String JSON_PROPERTY_BROWSER_RUM_UNITS_SUM = "browser_rum_units_sum";
private Long browserRumUnitsSum;

public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST =
"ccm_spend_monitored_ent_last";
private Long ccmSpendMonitoredEntLast;

public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST =
"ccm_spend_monitored_pro_last";
private Long ccmSpendMonitoredProLast;

public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_SUM =
"ci_pipeline_indexed_spans_sum";
private Long ciPipelineIndexedSpansSum;
Expand Down Expand Up @@ -1551,6 +1561,50 @@ public void setBrowserRumUnitsSum(Long browserRumUnitsSum) {
this.browserRumUnitsSum = browserRumUnitsSum;
}

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

/**
* Shows the last value of the amount of cloud spend monitored for Enterprise over all hours in
* the current date for the given org.
*
* @return ccmSpendMonitoredEntLast
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCcmSpendMonitoredEntLast() {
return ccmSpendMonitoredEntLast;
}

public void setCcmSpendMonitoredEntLast(Long ccmSpendMonitoredEntLast) {
this.ccmSpendMonitoredEntLast = ccmSpendMonitoredEntLast;
}

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

/**
* Shows the last value of the amount of cloud spend monitored for Pro over all hours in the
* current date for the given org.
*
* @return ccmSpendMonitoredProLast
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCcmSpendMonitoredProLast() {
return ccmSpendMonitoredProLast;
}

public void setCcmSpendMonitoredProLast(Long ccmSpendMonitoredProLast) {
this.ccmSpendMonitoredProLast = ccmSpendMonitoredProLast;
}

public UsageSummaryDateOrg ciPipelineIndexedSpansSum(Long ciPipelineIndexedSpansSum) {
this.ciPipelineIndexedSpansSum = ciPipelineIndexedSpansSum;
return this;
Expand Down Expand Up @@ -6040,6 +6094,10 @@ public boolean equals(Object o) {
this.browserRumReplaySessionCountSum,
usageSummaryDateOrg.browserRumReplaySessionCountSum)
&& Objects.equals(this.browserRumUnitsSum, usageSummaryDateOrg.browserRumUnitsSum)
&& Objects.equals(
this.ccmSpendMonitoredEntLast, usageSummaryDateOrg.ccmSpendMonitoredEntLast)
&& Objects.equals(
this.ccmSpendMonitoredProLast, usageSummaryDateOrg.ccmSpendMonitoredProLast)
&& Objects.equals(
this.ciPipelineIndexedSpansSum, usageSummaryDateOrg.ciPipelineIndexedSpansSum)
&& Objects.equals(this.ciTestIndexedSpansSum, usageSummaryDateOrg.ciTestIndexedSpansSum)
Expand Down Expand Up @@ -6447,6 +6505,8 @@ public int hashCode() {
browserRumLiteSessionCountSum,
browserRumReplaySessionCountSum,
browserRumUnitsSum,
ccmSpendMonitoredEntLast,
ccmSpendMonitoredProLast,
ciPipelineIndexedSpansSum,
ciTestIndexedSpansSum,
ciVisibilityItrCommittersHwm,
Expand Down Expand Up @@ -6698,6 +6758,12 @@ public String toString() {
.append(toIndentedString(browserRumReplaySessionCountSum))
.append("\n");
sb.append(" browserRumUnitsSum: ").append(toIndentedString(browserRumUnitsSum)).append("\n");
sb.append(" ccmSpendMonitoredEntLast: ")
.append(toIndentedString(ccmSpendMonitoredEntLast))
.append("\n");
sb.append(" ccmSpendMonitoredProLast: ")
.append(toIndentedString(ccmSpendMonitoredProLast))
.append("\n");
sb.append(" ciPipelineIndexedSpansSum: ")
.append(toIndentedString(ciPipelineIndexedSpansSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_LITE_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_REPLAY_SESSION_COUNT_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_BROWSER_RUM_UNITS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST_SUM,
UsageSummaryResponse.JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_CI_VISIBILITY_ITR_COMMITTERS_HWM_SUM,
Expand Down Expand Up @@ -339,6 +341,14 @@ public class UsageSummaryResponse {
public static final String JSON_PROPERTY_BROWSER_RUM_UNITS_AGG_SUM = "browser_rum_units_agg_sum";
private Long browserRumUnitsAggSum;

public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST_SUM =
"ccm_spend_monitored_ent_last_sum";
private Long ccmSpendMonitoredEntLastSum;

public static final String JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST_SUM =
"ccm_spend_monitored_pro_last_sum";
private Long ccmSpendMonitoredProLastSum;

public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_AGG_SUM =
"ci_pipeline_indexed_spans_agg_sum";
private Long ciPipelineIndexedSpansAggSum;
Expand Down Expand Up @@ -1605,6 +1615,50 @@ public void setBrowserRumUnitsAggSum(Long browserRumUnitsAggSum) {
this.browserRumUnitsAggSum = browserRumUnitsAggSum;
}

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

/**
* Shows the sum of the last value of the amount of cloud spend monitored for Enterprise in the
* current month for all organizations.
*
* @return ccmSpendMonitoredEntLastSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_ENT_LAST_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCcmSpendMonitoredEntLastSum() {
return ccmSpendMonitoredEntLastSum;
}

public void setCcmSpendMonitoredEntLastSum(Long ccmSpendMonitoredEntLastSum) {
this.ccmSpendMonitoredEntLastSum = ccmSpendMonitoredEntLastSum;
}

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

/**
* Shows the sum of the last value of the amount of cloud spend monitored for Pro in the current
* month for all organizations.
*
* @return ccmSpendMonitoredProLastSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CCM_SPEND_MONITORED_PRO_LAST_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCcmSpendMonitoredProLastSum() {
return ccmSpendMonitoredProLastSum;
}

public void setCcmSpendMonitoredProLastSum(Long ccmSpendMonitoredProLastSum) {
this.ccmSpendMonitoredProLastSum = ccmSpendMonitoredProLastSum;
}

public UsageSummaryResponse ciPipelineIndexedSpansAggSum(Long ciPipelineIndexedSpansAggSum) {
this.ciPipelineIndexedSpansAggSum = ciPipelineIndexedSpansAggSum;
return this;
Expand Down Expand Up @@ -6322,6 +6376,10 @@ public boolean equals(Object o) {
this.browserRumReplaySessionCountAggSum,
usageSummaryResponse.browserRumReplaySessionCountAggSum)
&& Objects.equals(this.browserRumUnitsAggSum, usageSummaryResponse.browserRumUnitsAggSum)
&& Objects.equals(
this.ccmSpendMonitoredEntLastSum, usageSummaryResponse.ccmSpendMonitoredEntLastSum)
&& Objects.equals(
this.ccmSpendMonitoredProLastSum, usageSummaryResponse.ccmSpendMonitoredProLastSum)
&& Objects.equals(
this.ciPipelineIndexedSpansAggSum, usageSummaryResponse.ciPipelineIndexedSpansAggSum)
&& Objects.equals(
Expand Down Expand Up @@ -6795,6 +6853,8 @@ public int hashCode() {
browserRumLiteSessionCountAggSum,
browserRumReplaySessionCountAggSum,
browserRumUnitsAggSum,
ccmSpendMonitoredEntLastSum,
ccmSpendMonitoredProLastSum,
ciPipelineIndexedSpansAggSum,
ciTestIndexedSpansAggSum,
ciVisibilityItrCommittersHwmSum,
Expand Down Expand Up @@ -7057,6 +7117,12 @@ public String toString() {
sb.append(" browserRumUnitsAggSum: ")
.append(toIndentedString(browserRumUnitsAggSum))
.append("\n");
sb.append(" ccmSpendMonitoredEntLastSum: ")
.append(toIndentedString(ccmSpendMonitoredEntLastSum))
.append("\n");
sb.append(" ccmSpendMonitoredProLastSum: ")
.append(toIndentedString(ccmSpendMonitoredProLastSum))
.append("\n");
sb.append(" ciPipelineIndexedSpansAggSum: ")
.append(toIndentedString(ciPipelineIndexedSpansAggSum))
.append("\n");
Expand Down
Loading