|
36 | 36 | MonthlyUsageAttributionValues.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_USAGE, |
37 | 37 | MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_PERCENTAGE, |
38 | 38 | MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_USAGE, |
| 39 | + MonthlyUsageAttributionValues.JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE, |
| 40 | + MonthlyUsageAttributionValues.JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE, |
39 | 41 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE, |
40 | 42 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_USAGE, |
41 | 43 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_PERCENTAGE, |
@@ -241,6 +243,14 @@ public class MonthlyUsageAttributionValues { |
241 | 243 | public static final String JSON_PROPERTY_BROWSER_USAGE = "browser_usage"; |
242 | 244 | private Double browserUsage; |
243 | 245 |
|
| 246 | + public static final String JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE = |
| 247 | + "ci_code_coverage_committers_percentage"; |
| 248 | + private Double ciCodeCoverageCommittersPercentage; |
| 249 | + |
| 250 | + public static final String JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE = |
| 251 | + "ci_code_coverage_committers_usage"; |
| 252 | + private Double ciCodeCoverageCommittersUsage; |
| 253 | + |
244 | 254 | public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE = |
245 | 255 | "ci_pipeline_indexed_spans_percentage"; |
246 | 256 | private Double ciPipelineIndexedSpansPercentage; |
@@ -1116,6 +1126,50 @@ public void setBrowserUsage(Double browserUsage) { |
1116 | 1126 | this.browserUsage = browserUsage; |
1117 | 1127 | } |
1118 | 1128 |
|
| 1129 | + public MonthlyUsageAttributionValues ciCodeCoverageCommittersPercentage( |
| 1130 | + Double ciCodeCoverageCommittersPercentage) { |
| 1131 | + this.ciCodeCoverageCommittersPercentage = ciCodeCoverageCommittersPercentage; |
| 1132 | + return this; |
| 1133 | + } |
| 1134 | + |
| 1135 | + /** |
| 1136 | + * The percentage of Code Coverage committers usage by tag(s). |
| 1137 | + * |
| 1138 | + * @return ciCodeCoverageCommittersPercentage |
| 1139 | + */ |
| 1140 | + @jakarta.annotation.Nullable |
| 1141 | + @JsonProperty(JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE) |
| 1142 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1143 | + public Double getCiCodeCoverageCommittersPercentage() { |
| 1144 | + return ciCodeCoverageCommittersPercentage; |
| 1145 | + } |
| 1146 | + |
| 1147 | + public void setCiCodeCoverageCommittersPercentage(Double ciCodeCoverageCommittersPercentage) { |
| 1148 | + this.ciCodeCoverageCommittersPercentage = ciCodeCoverageCommittersPercentage; |
| 1149 | + } |
| 1150 | + |
| 1151 | + public MonthlyUsageAttributionValues ciCodeCoverageCommittersUsage( |
| 1152 | + Double ciCodeCoverageCommittersUsage) { |
| 1153 | + this.ciCodeCoverageCommittersUsage = ciCodeCoverageCommittersUsage; |
| 1154 | + return this; |
| 1155 | + } |
| 1156 | + |
| 1157 | + /** |
| 1158 | + * The total Code Coverage committers usage by tag(s). |
| 1159 | + * |
| 1160 | + * @return ciCodeCoverageCommittersUsage |
| 1161 | + */ |
| 1162 | + @jakarta.annotation.Nullable |
| 1163 | + @JsonProperty(JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE) |
| 1164 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1165 | + public Double getCiCodeCoverageCommittersUsage() { |
| 1166 | + return ciCodeCoverageCommittersUsage; |
| 1167 | + } |
| 1168 | + |
| 1169 | + public void setCiCodeCoverageCommittersUsage(Double ciCodeCoverageCommittersUsage) { |
| 1170 | + this.ciCodeCoverageCommittersUsage = ciCodeCoverageCommittersUsage; |
| 1171 | + } |
| 1172 | + |
1119 | 1173 | public MonthlyUsageAttributionValues ciPipelineIndexedSpansPercentage( |
1120 | 1174 | Double ciPipelineIndexedSpansPercentage) { |
1121 | 1175 | this.ciPipelineIndexedSpansPercentage = ciPipelineIndexedSpansPercentage; |
@@ -4233,6 +4287,12 @@ public boolean equals(Object o) { |
4233 | 4287 | this.bitsAiInvestigationsUsage, monthlyUsageAttributionValues.bitsAiInvestigationsUsage) |
4234 | 4288 | && Objects.equals(this.browserPercentage, monthlyUsageAttributionValues.browserPercentage) |
4235 | 4289 | && Objects.equals(this.browserUsage, monthlyUsageAttributionValues.browserUsage) |
| 4290 | + && Objects.equals( |
| 4291 | + this.ciCodeCoverageCommittersPercentage, |
| 4292 | + monthlyUsageAttributionValues.ciCodeCoverageCommittersPercentage) |
| 4293 | + && Objects.equals( |
| 4294 | + this.ciCodeCoverageCommittersUsage, |
| 4295 | + monthlyUsageAttributionValues.ciCodeCoverageCommittersUsage) |
4236 | 4296 | && Objects.equals( |
4237 | 4297 | this.ciPipelineIndexedSpansPercentage, |
4238 | 4298 | monthlyUsageAttributionValues.ciPipelineIndexedSpansPercentage) |
@@ -4561,6 +4621,8 @@ public int hashCode() { |
4561 | 4621 | bitsAiInvestigationsUsage, |
4562 | 4622 | browserPercentage, |
4563 | 4623 | browserUsage, |
| 4624 | + ciCodeCoverageCommittersPercentage, |
| 4625 | + ciCodeCoverageCommittersUsage, |
4564 | 4626 | ciPipelineIndexedSpansPercentage, |
4565 | 4627 | ciPipelineIndexedSpansUsage, |
4566 | 4628 | ciTestIndexedSpansPercentage, |
@@ -4740,6 +4802,12 @@ public String toString() { |
4740 | 4802 | .append("\n"); |
4741 | 4803 | sb.append(" browserPercentage: ").append(toIndentedString(browserPercentage)).append("\n"); |
4742 | 4804 | sb.append(" browserUsage: ").append(toIndentedString(browserUsage)).append("\n"); |
| 4805 | + sb.append(" ciCodeCoverageCommittersPercentage: ") |
| 4806 | + .append(toIndentedString(ciCodeCoverageCommittersPercentage)) |
| 4807 | + .append("\n"); |
| 4808 | + sb.append(" ciCodeCoverageCommittersUsage: ") |
| 4809 | + .append(toIndentedString(ciCodeCoverageCommittersUsage)) |
| 4810 | + .append("\n"); |
4743 | 4811 | sb.append(" ciPipelineIndexedSpansPercentage: ") |
4744 | 4812 | .append(toIndentedString(ciPipelineIndexedSpansPercentage)) |
4745 | 4813 | .append("\n"); |
|
0 commit comments