Skip to content

Commit 9eb9d5f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 9eb93ee of spec repo
1 parent 220cd83 commit 9eb9d5f

File tree

3 files changed

+86
-0
lines changed

3 files changed

+86
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4521,6 +4521,8 @@ components:
45214521
- asm_serverless_traced_invocations_percentage
45224522
- bits_ai_investigations_usage
45234523
- browser_usage
4524+
- ci_code_coverage_committers_percentage
4525+
- ci_code_coverage_committers_usage
45244526
- ci_pipeline_indexed_spans_usage
45254527
- ci_test_indexed_spans_usage
45264528
- ci_visibility_itr_usage
@@ -4606,6 +4608,8 @@ components:
46064608
- ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE
46074609
- BITS_AI_INVESTIGATIONS_USAGE
46084610
- BROWSER_USAGE
4611+
- CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE
4612+
- CI_CODE_COVERAGE_COMMITTERS_USAGE
46094613
- CI_PIPELINE_INDEXED_SPANS_USAGE
46104614
- CI_TEST_INDEXED_SPANS_USAGE
46114615
- CI_VISIBILITY_ITR_USAGE
@@ -9473,6 +9477,14 @@ components:
94739477
description: The synthetic browser test usage by tag(s).
94749478
format: double
94759479
type: number
9480+
ci_code_coverage_committers_percentage:
9481+
description: The percentage of Code Coverage committers usage by tag(s).
9482+
format: double
9483+
type: number
9484+
ci_code_coverage_committers_usage:
9485+
description: The total Code Coverage committers usage by tag(s).
9486+
format: double
9487+
type: number
94769488
ci_pipeline_indexed_spans_percentage:
94779489
description: The percentage of CI Pipeline Indexed Spans usage by tag(s).
94789490
format: double

src/main/java/com/datadog/api/client/v1/model/HourlyUsageAttributionUsageType.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
4040
"asm_serverless_traced_invocations_percentage",
4141
"bits_ai_investigations_usage",
4242
"browser_usage",
43+
"ci_code_coverage_committers_percentage",
44+
"ci_code_coverage_committers_usage",
4345
"ci_pipeline_indexed_spans_usage",
4446
"ci_test_indexed_spans_usage",
4547
"ci_visibility_itr_usage",
@@ -134,6 +136,10 @@ public class HourlyUsageAttributionUsageType extends ModelEnum<String> {
134136
new HourlyUsageAttributionUsageType("bits_ai_investigations_usage");
135137
public static final HourlyUsageAttributionUsageType BROWSER_USAGE =
136138
new HourlyUsageAttributionUsageType("browser_usage");
139+
public static final HourlyUsageAttributionUsageType CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE =
140+
new HourlyUsageAttributionUsageType("ci_code_coverage_committers_percentage");
141+
public static final HourlyUsageAttributionUsageType CI_CODE_COVERAGE_COMMITTERS_USAGE =
142+
new HourlyUsageAttributionUsageType("ci_code_coverage_committers_usage");
137143
public static final HourlyUsageAttributionUsageType CI_PIPELINE_INDEXED_SPANS_USAGE =
138144
new HourlyUsageAttributionUsageType("ci_pipeline_indexed_spans_usage");
139145
public static final HourlyUsageAttributionUsageType CI_TEST_INDEXED_SPANS_USAGE =

src/main/java/com/datadog/api/client/v1/model/MonthlyUsageAttributionValues.java

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
MonthlyUsageAttributionValues.JSON_PROPERTY_BITS_AI_INVESTIGATIONS_USAGE,
4141
MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_PERCENTAGE,
4242
MonthlyUsageAttributionValues.JSON_PROPERTY_BROWSER_USAGE,
43+
MonthlyUsageAttributionValues.JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_PERCENTAGE,
44+
MonthlyUsageAttributionValues.JSON_PROPERTY_CI_CODE_COVERAGE_COMMITTERS_USAGE,
4345
MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE,
4446
MonthlyUsageAttributionValues.JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_USAGE,
4547
MonthlyUsageAttributionValues.JSON_PROPERTY_CI_TEST_INDEXED_SPANS_PERCENTAGE,
@@ -245,6 +247,14 @@ public class MonthlyUsageAttributionValues {
245247
public static final String JSON_PROPERTY_BROWSER_USAGE = "browser_usage";
246248
private Double browserUsage;
247249

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+
248258
public static final String JSON_PROPERTY_CI_PIPELINE_INDEXED_SPANS_PERCENTAGE =
249259
"ci_pipeline_indexed_spans_percentage";
250260
private Double ciPipelineIndexedSpansPercentage;
@@ -1120,6 +1130,50 @@ public void setBrowserUsage(Double browserUsage) {
11201130
this.browserUsage = browserUsage;
11211131
}
11221132

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+
11231177
public MonthlyUsageAttributionValues ciPipelineIndexedSpansPercentage(
11241178
Double ciPipelineIndexedSpansPercentage) {
11251179
this.ciPipelineIndexedSpansPercentage = ciPipelineIndexedSpansPercentage;
@@ -4237,6 +4291,12 @@ public boolean equals(Object o) {
42374291
this.bitsAiInvestigationsUsage, monthlyUsageAttributionValues.bitsAiInvestigationsUsage)
42384292
&& Objects.equals(this.browserPercentage, monthlyUsageAttributionValues.browserPercentage)
42394293
&& Objects.equals(this.browserUsage, monthlyUsageAttributionValues.browserUsage)
4294+
&& Objects.equals(
4295+
this.ciCodeCoverageCommittersPercentage,
4296+
monthlyUsageAttributionValues.ciCodeCoverageCommittersPercentage)
4297+
&& Objects.equals(
4298+
this.ciCodeCoverageCommittersUsage,
4299+
monthlyUsageAttributionValues.ciCodeCoverageCommittersUsage)
42404300
&& Objects.equals(
42414301
this.ciPipelineIndexedSpansPercentage,
42424302
monthlyUsageAttributionValues.ciPipelineIndexedSpansPercentage)
@@ -4565,6 +4625,8 @@ public int hashCode() {
45654625
bitsAiInvestigationsUsage,
45664626
browserPercentage,
45674627
browserUsage,
4628+
ciCodeCoverageCommittersPercentage,
4629+
ciCodeCoverageCommittersUsage,
45684630
ciPipelineIndexedSpansPercentage,
45694631
ciPipelineIndexedSpansUsage,
45704632
ciTestIndexedSpansPercentage,
@@ -4744,6 +4806,12 @@ public String toString() {
47444806
.append("\n");
47454807
sb.append(" browserPercentage: ").append(toIndentedString(browserPercentage)).append("\n");
47464808
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");
47474815
sb.append(" ciPipelineIndexedSpansPercentage: ")
47484816
.append(toIndentedString(ciPipelineIndexedSpansPercentage))
47494817
.append("\n");

0 commit comments

Comments
 (0)