|
40 | 40 | MonthlyUsageAttributionValues.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_USAGE, |
41 | 41 | MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_PERCENTAGE, |
42 | 42 | MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_USAGE, |
| 43 | + MonthlyUsageAttributionValues.JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE, |
| 44 | + MonthlyUsageAttributionValues.JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE, |
43 | 45 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE, |
44 | 46 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_USAGE, |
45 | 47 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_PERCENTAGE, |
@@ -245,6 +247,14 @@ public class MonthlyUsageAttributionValues { |
245 | 247 | public static final String JSON_PROPERTY_BROWSER_USAGE = "browser_usage"; |
246 | 248 | private Double browserUsage; |
247 | 249 |
|
| 250 | + public static final String JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE = |
| 251 | + "ci_code_coverage_committers_percentage"; |
| 252 | + private Double ciCodeCoverageCommittersPercentage; |
| 253 | + |
| 254 | + public static final String JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE = |
| 255 | + "ci_code_coverage_committers_usage"; |
| 256 | + private Double ciCodeCoverageCommittersUsage; |
| 257 | + |
248 | 258 | public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE = |
249 | 259 | "ci_pipeline_indexed_spans_percentage"; |
250 | 260 | private Double ciPipelineIndexedSpansPercentage; |
@@ -1120,6 +1130,50 @@ public void setBrowserUsage(Double browserUsage) { |
1120 | 1130 | this.browserUsage = browserUsage; |
1121 | 1131 | } |
1122 | 1132 |
|
| 1133 | + public MonthlyUsageAttributionValues ciCodeCoverageCommittersPercentage( |
| 1134 | + Double ciCodeCoverageCommittersPercentage) { |
| 1135 | + this.ciCodeCoverageCommittersPercentage = ciCodeCoverageCommittersPercentage; |
| 1136 | + return this; |
| 1137 | + } |
| 1138 | + |
| 1139 | + /** |
| 1140 | + * The percentage of Code Coverage committers usage by tag(s). |
| 1141 | + * |
| 1142 | + * @return ciCodeCoverageCommittersPercentage |
| 1143 | + */ |
| 1144 | + @jakarta.annotation.Nullable |
| 1145 | + @JsonProperty(JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE) |
| 1146 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1147 | + public Double getCiCodeCoverageCommittersPercentage() { |
| 1148 | + return ciCodeCoverageCommittersPercentage; |
| 1149 | + } |
| 1150 | + |
| 1151 | + public void setCiCodeCoverageCommittersPercentage(Double ciCodeCoverageCommittersPercentage) { |
| 1152 | + this.ciCodeCoverageCommittersPercentage = ciCodeCoverageCommittersPercentage; |
| 1153 | + } |
| 1154 | + |
| 1155 | + public MonthlyUsageAttributionValues ciCodeCoverageCommittersUsage( |
| 1156 | + Double ciCodeCoverageCommittersUsage) { |
| 1157 | + this.ciCodeCoverageCommittersUsage = ciCodeCoverageCommittersUsage; |
| 1158 | + return this; |
| 1159 | + } |
| 1160 | + |
| 1161 | + /** |
| 1162 | + * The total Code Coverage committers usage by tag(s). |
| 1163 | + * |
| 1164 | + * @return ciCodeCoverageCommittersUsage |
| 1165 | + */ |
| 1166 | + @jakarta.annotation.Nullable |
| 1167 | + @JsonProperty(JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE) |
| 1168 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1169 | + public Double getCiCodeCoverageCommittersUsage() { |
| 1170 | + return ciCodeCoverageCommittersUsage; |
| 1171 | + } |
| 1172 | + |
| 1173 | + public void setCiCodeCoverageCommittersUsage(Double ciCodeCoverageCommittersUsage) { |
| 1174 | + this.ciCodeCoverageCommittersUsage = ciCodeCoverageCommittersUsage; |
| 1175 | + } |
| 1176 | + |
1123 | 1177 | public MonthlyUsageAttributionValues ciPipelineIndexedSpansPercentage( |
1124 | 1178 | Double ciPipelineIndexedSpansPercentage) { |
1125 | 1179 | this.ciPipelineIndexedSpansPercentage = ciPipelineIndexedSpansPercentage; |
@@ -4237,6 +4291,12 @@ public boolean equals(Object o) { |
4237 | 4291 | this.bitsAiInvestigationsUsage, monthlyUsageAttributionValues.bitsAiInvestigationsUsage) |
4238 | 4292 | && Objects.equals(this.browserPercentage, monthlyUsageAttributionValues.browserPercentage) |
4239 | 4293 | && Objects.equals(this.browserUsage, monthlyUsageAttributionValues.browserUsage) |
| 4294 | + && Objects.equals( |
| 4295 | + this.ciCodeCoverageCommittersPercentage, |
| 4296 | + monthlyUsageAttributionValues.ciCodeCoverageCommittersPercentage) |
| 4297 | + && Objects.equals( |
| 4298 | + this.ciCodeCoverageCommittersUsage, |
| 4299 | + monthlyUsageAttributionValues.ciCodeCoverageCommittersUsage) |
4240 | 4300 | && Objects.equals( |
4241 | 4301 | this.ciPipelineIndexedSpansPercentage, |
4242 | 4302 | monthlyUsageAttributionValues.ciPipelineIndexedSpansPercentage) |
@@ -4565,6 +4625,8 @@ public int hashCode() { |
4565 | 4625 | bitsAiInvestigationsUsage, |
4566 | 4626 | browserPercentage, |
4567 | 4627 | browserUsage, |
| 4628 | + ciCodeCoverageCommittersPercentage, |
| 4629 | + ciCodeCoverageCommittersUsage, |
4568 | 4630 | ciPipelineIndexedSpansPercentage, |
4569 | 4631 | ciPipelineIndexedSpansUsage, |
4570 | 4632 | ciTestIndexedSpansPercentage, |
@@ -4744,6 +4806,12 @@ public String toString() { |
4744 | 4806 | .append("\n"); |
4745 | 4807 | sb.append(" browserPercentage: ").append(toIndentedString(browserPercentage)).append("\n"); |
4746 | 4808 | sb.append(" browserUsage: ").append(toIndentedString(browserUsage)).append("\n"); |
| 4809 | + sb.append(" ciCodeCoverageCommittersPercentage: ") |
| 4810 | + .append(toIndentedString(ciCodeCoverageCommittersPercentage)) |
| 4811 | + .append("\n"); |
| 4812 | + sb.append(" ciCodeCoverageCommittersUsage: ") |
| 4813 | + .append(toIndentedString(ciCodeCoverageCommittersUsage)) |
| 4814 | + .append("\n"); |
4747 | 4815 | sb.append(" ciPipelineIndexedSpansPercentage: ") |
4748 | 4816 | .append(toIndentedString(ciPipelineIndexedSpansPercentage)) |
4749 | 4817 | .append("\n"); |
|
0 commit comments