|
36 | 36 | MonthlyUsageAttributionValues.JSON_PROPERTY_APPSEC_USAGE, |
37 | 37 | MonthlyUsageAttributionValues.JSON_PROPERTY_ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE, |
38 | 38 | MonthlyUsageAttributionValues.JSON_PROPERTY_ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE, |
| 39 | + MonthlyUsageAttributionValues.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_PERCENTAGE, |
| 40 | + MonthlyUsageAttributionValues.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_USAGE, |
39 | 41 | MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_PERCENTAGE, |
40 | 42 | MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_USAGE, |
41 | 43 | MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE, |
@@ -227,6 +229,14 @@ public class MonthlyUsageAttributionValues { |
227 | 229 | "asm_serverless_traced_invocations_usage"; |
228 | 230 | private Double asmServerlessTracedInvocationsUsage; |
229 | 231 |
|
| 232 | + public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_PERCENTAGE = |
| 233 | + "bits_ai_investigations_percentage"; |
| 234 | + private Double bitsAiInvestigationsPercentage; |
| 235 | + |
| 236 | + public static final String JSON_PROPERTY_BITS_AI_INVESTIGATIONS_USAGE = |
| 237 | + "bits_ai_investigations_usage"; |
| 238 | + private Double bitsAiInvestigationsUsage; |
| 239 | + |
230 | 240 | public static final String JSON_PROPERTY_BROWSER_PERCENTAGE = "browser_percentage"; |
231 | 241 | private Double browserPercentage; |
232 | 242 |
|
@@ -1016,6 +1026,49 @@ public void setAsmServerlessTracedInvocationsUsage(Double asmServerlessTracedInv |
1016 | 1026 | this.asmServerlessTracedInvocationsUsage = asmServerlessTracedInvocationsUsage; |
1017 | 1027 | } |
1018 | 1028 |
|
| 1029 | + public MonthlyUsageAttributionValues bitsAiInvestigationsPercentage( |
| 1030 | + Double bitsAiInvestigationsPercentage) { |
| 1031 | + this.bitsAiInvestigationsPercentage = bitsAiInvestigationsPercentage; |
| 1032 | + return this; |
| 1033 | + } |
| 1034 | + |
| 1035 | + /** |
| 1036 | + * The percentage of Bits AI <code>SRE</code> investigation usage by tag(s). |
| 1037 | + * |
| 1038 | + * @return bitsAiInvestigationsPercentage |
| 1039 | + */ |
| 1040 | + @jakarta.annotation.Nullable |
| 1041 | + @JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_PERCENTAGE) |
| 1042 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1043 | + public Double getBitsAiInvestigationsPercentage() { |
| 1044 | + return bitsAiInvestigationsPercentage; |
| 1045 | + } |
| 1046 | + |
| 1047 | + public void setBitsAiInvestigationsPercentage(Double bitsAiInvestigationsPercentage) { |
| 1048 | + this.bitsAiInvestigationsPercentage = bitsAiInvestigationsPercentage; |
| 1049 | + } |
| 1050 | + |
| 1051 | + public MonthlyUsageAttributionValues bitsAiInvestigationsUsage(Double bitsAiInvestigationsUsage) { |
| 1052 | + this.bitsAiInvestigationsUsage = bitsAiInvestigationsUsage; |
| 1053 | + return this; |
| 1054 | + } |
| 1055 | + |
| 1056 | + /** |
| 1057 | + * The Bits AI <code>SRE</code> investigation usage by tag(s). |
| 1058 | + * |
| 1059 | + * @return bitsAiInvestigationsUsage |
| 1060 | + */ |
| 1061 | + @jakarta.annotation.Nullable |
| 1062 | + @JsonProperty(JSON_PROPERTY_BITS_AI_INVESTIGATIONS_USAGE) |
| 1063 | + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) |
| 1064 | + public Double getBitsAiInvestigationsUsage() { |
| 1065 | + return bitsAiInvestigationsUsage; |
| 1066 | + } |
| 1067 | + |
| 1068 | + public void setBitsAiInvestigationsUsage(Double bitsAiInvestigationsUsage) { |
| 1069 | + this.bitsAiInvestigationsUsage = bitsAiInvestigationsUsage; |
| 1070 | + } |
| 1071 | + |
1019 | 1072 | public MonthlyUsageAttributionValues browserPercentage(Double browserPercentage) { |
1020 | 1073 | this.browserPercentage = browserPercentage; |
1021 | 1074 | return this; |
@@ -4126,6 +4179,11 @@ public boolean equals(Object o) { |
4126 | 4179 | && Objects.equals( |
4127 | 4180 | this.asmServerlessTracedInvocationsUsage, |
4128 | 4181 | monthlyUsageAttributionValues.asmServerlessTracedInvocationsUsage) |
| 4182 | + && Objects.equals( |
| 4183 | + this.bitsAiInvestigationsPercentage, |
| 4184 | + monthlyUsageAttributionValues.bitsAiInvestigationsPercentage) |
| 4185 | + && Objects.equals( |
| 4186 | + this.bitsAiInvestigationsUsage, monthlyUsageAttributionValues.bitsAiInvestigationsUsage) |
4129 | 4187 | && Objects.equals(this.browserPercentage, monthlyUsageAttributionValues.browserPercentage) |
4130 | 4188 | && Objects.equals(this.browserUsage, monthlyUsageAttributionValues.browserUsage) |
4131 | 4189 | && Objects.equals( |
@@ -4448,6 +4506,8 @@ public int hashCode() { |
4448 | 4506 | appsecUsage, |
4449 | 4507 | asmServerlessTracedInvocationsPercentage, |
4450 | 4508 | asmServerlessTracedInvocationsUsage, |
| 4509 | + bitsAiInvestigationsPercentage, |
| 4510 | + bitsAiInvestigationsUsage, |
4451 | 4511 | browserPercentage, |
4452 | 4512 | browserUsage, |
4453 | 4513 | ciPipelineIndexedSpansPercentage, |
@@ -4619,6 +4679,12 @@ public String toString() { |
4619 | 4679 | sb.append(" asmServerlessTracedInvocationsUsage: ") |
4620 | 4680 | .append(toIndentedString(asmServerlessTracedInvocationsUsage)) |
4621 | 4681 | .append("\n"); |
| 4682 | + sb.append(" bitsAiInvestigationsPercentage: ") |
| 4683 | + .append(toIndentedString(bitsAiInvestigationsPercentage)) |
| 4684 | + .append("\n"); |
| 4685 | + sb.append(" bitsAiInvestigationsUsage: ") |
| 4686 | + .append(toIndentedString(bitsAiInvestigationsUsage)) |
| 4687 | + .append("\n"); |
4622 | 4688 | sb.append(" browserPercentage: ").append(toIndentedString(browserPercentage)).append("\n"); |
4623 | 4689 | sb.append(" browserUsage: ").append(toIndentedString(browserUsage)).append("\n"); |
4624 | 4690 | sb.append(" ciPipelineIndexedSpansPercentage: ") |
|
0 commit comments