Skip to content

Commit 8ab8ecc

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f6e78d2 of spec repo
1 parent b1b71a9 commit 8ab8ecc

File tree

4 files changed

+113
-0
lines changed

4 files changed

+113
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21445,6 +21445,10 @@ components:
2144521445
description: Shows the average of all Fargate tasks over all hours in the current date for all organizations.
2144621446
format: int64
2144721447
type: integer
21448+
feature_flags_config_requests_sum:
21449+
description: Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the current date for all organizations.
21450+
format: int64
21451+
type: integer
2144821452
flex_logs_compute_large_avg:
2144921453
description: Shows the average number of Flex Logs Compute Large Instances over all hours in the current date for the given org.
2145021454
format: int64
@@ -22394,6 +22398,10 @@ components:
2239422398
description: Shows the high-water mark of all Fargate tasks over all hours in the current date for the given org.
2239522399
format: int64
2239622400
type: integer
22401+
feature_flags_config_requests_sum:
22402+
description: Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the current date for the given org.
22403+
format: int64
22404+
type: integer
2239722405
flex_logs_compute_large_avg:
2239822406
description: Shows the average number of Flex Logs Compute Large Instances over all hours in the current date for the given org.
2239922407
format: int64
@@ -23353,6 +23361,10 @@ components:
2335323361
description: Shows the sum of the high-water marks of all Fargate tasks over all hours in the current month for all organizations.
2335423362
format: int64
2335523363
type: integer
23364+
feature_flags_config_requests_agg_sum:
23365+
description: Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the current month for all organizations.
23366+
format: int64
23367+
type: integer
2335623368
flex_logs_compute_large_avg_sum:
2335723369
description: Shows the average number of Flex Logs Compute Large Instances over all hours in the current months for all organizations.
2335823370
format: int64

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
UsageSummaryDate.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG,
128128
UsageSummaryDate.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG,
129129
UsageSummaryDate.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM,
130+
UsageSummaryDate.JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM,
130131
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
131132
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
132133
UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
@@ -630,6 +631,10 @@ public class UsageSummaryDate {
630631
public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM = "fargate_tasks_count_hwm";
631632
private Long fargateTasksCountHwm;
632633

634+
public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM =
635+
"feature_flags_config_requests_sum";
636+
private Long featureFlagsConfigRequestsSum;
637+
633638
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG =
634639
"flex_logs_compute_large_avg";
635640
private Long flexLogsComputeLargeAvg;
@@ -3471,6 +3476,28 @@ public void setFargateTasksCountHwm(Long fargateTasksCountHwm) {
34713476
this.fargateTasksCountHwm = fargateTasksCountHwm;
34723477
}
34733478

3479+
public UsageSummaryDate featureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) {
3480+
this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum;
3481+
return this;
3482+
}
3483+
3484+
/**
3485+
* Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the
3486+
* current date for all organizations.
3487+
*
3488+
* @return featureFlagsConfigRequestsSum
3489+
*/
3490+
@jakarta.annotation.Nullable
3491+
@JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM)
3492+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3493+
public Long getFeatureFlagsConfigRequestsSum() {
3494+
return featureFlagsConfigRequestsSum;
3495+
}
3496+
3497+
public void setFeatureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) {
3498+
this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum;
3499+
}
3500+
34743501
public UsageSummaryDate flexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) {
34753502
this.flexLogsComputeLargeAvg = flexLogsComputeLargeAvg;
34763503
return this;
@@ -6563,6 +6590,8 @@ public boolean equals(Object o) {
65636590
usageSummaryDate.fargateContainerProfilerProfilingFargateEksAvg)
65646591
&& Objects.equals(this.fargateTasksCountAvg, usageSummaryDate.fargateTasksCountAvg)
65656592
&& Objects.equals(this.fargateTasksCountHwm, usageSummaryDate.fargateTasksCountHwm)
6593+
&& Objects.equals(
6594+
this.featureFlagsConfigRequestsSum, usageSummaryDate.featureFlagsConfigRequestsSum)
65666595
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDate.flexLogsComputeLargeAvg)
65676596
&& Objects.equals(this.flexLogsComputeMediumAvg, usageSummaryDate.flexLogsComputeMediumAvg)
65686597
&& Objects.equals(this.flexLogsComputeSmallAvg, usageSummaryDate.flexLogsComputeSmallAvg)
@@ -6917,6 +6946,7 @@ public int hashCode() {
69176946
fargateContainerProfilerProfilingFargateEksAvg,
69186947
fargateTasksCountAvg,
69196948
fargateTasksCountHwm,
6949+
featureFlagsConfigRequestsSum,
69206950
flexLogsComputeLargeAvg,
69216951
flexLogsComputeMediumAvg,
69226952
flexLogsComputeSmallAvg,
@@ -7298,6 +7328,9 @@ public String toString() {
72987328
sb.append(" fargateTasksCountHwm: ")
72997329
.append(toIndentedString(fargateTasksCountHwm))
73007330
.append("\n");
7331+
sb.append(" featureFlagsConfigRequestsSum: ")
7332+
.append(toIndentedString(featureFlagsConfigRequestsSum))
7333+
.append("\n");
73017334
sb.append(" flexLogsComputeLargeAvg: ")
73027335
.append(toIndentedString(flexLogsComputeLargeAvg))
73037336
.append("\n");

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG,
128128
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG,
129129
UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM,
130+
UsageSummaryDateOrg.JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM,
130131
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG,
131132
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG,
132133
UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG,
@@ -643,6 +644,10 @@ public class UsageSummaryDateOrg {
643644
public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM = "fargate_tasks_count_hwm";
644645
private Long fargateTasksCountHwm;
645646

647+
public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM =
648+
"feature_flags_config_requests_sum";
649+
private Long featureFlagsConfigRequestsSum;
650+
646651
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG =
647652
"flex_logs_compute_large_avg";
648653
private Long flexLogsComputeLargeAvg;
@@ -3555,6 +3560,28 @@ public void setFargateTasksCountHwm(Long fargateTasksCountHwm) {
35553560
this.fargateTasksCountHwm = fargateTasksCountHwm;
35563561
}
35573562

3563+
public UsageSummaryDateOrg featureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) {
3564+
this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum;
3565+
return this;
3566+
}
3567+
3568+
/**
3569+
* Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the
3570+
* current date for the given org.
3571+
*
3572+
* @return featureFlagsConfigRequestsSum
3573+
*/
3574+
@jakarta.annotation.Nullable
3575+
@JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_SUM)
3576+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3577+
public Long getFeatureFlagsConfigRequestsSum() {
3578+
return featureFlagsConfigRequestsSum;
3579+
}
3580+
3581+
public void setFeatureFlagsConfigRequestsSum(Long featureFlagsConfigRequestsSum) {
3582+
this.featureFlagsConfigRequestsSum = featureFlagsConfigRequestsSum;
3583+
}
3584+
35583585
public UsageSummaryDateOrg flexLogsComputeLargeAvg(Long flexLogsComputeLargeAvg) {
35593586
this.flexLogsComputeLargeAvg = flexLogsComputeLargeAvg;
35603587
return this;
@@ -6712,6 +6739,8 @@ public boolean equals(Object o) {
67126739
usageSummaryDateOrg.fargateContainerProfilerProfilingFargateEksAvg)
67136740
&& Objects.equals(this.fargateTasksCountAvg, usageSummaryDateOrg.fargateTasksCountAvg)
67146741
&& Objects.equals(this.fargateTasksCountHwm, usageSummaryDateOrg.fargateTasksCountHwm)
6742+
&& Objects.equals(
6743+
this.featureFlagsConfigRequestsSum, usageSummaryDateOrg.featureFlagsConfigRequestsSum)
67156744
&& Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDateOrg.flexLogsComputeLargeAvg)
67166745
&& Objects.equals(
67176746
this.flexLogsComputeMediumAvg, usageSummaryDateOrg.flexLogsComputeMediumAvg)
@@ -7087,6 +7116,7 @@ public int hashCode() {
70877116
fargateContainerProfilerProfilingFargateEksAvg,
70887117
fargateTasksCountAvg,
70897118
fargateTasksCountHwm,
7119+
featureFlagsConfigRequestsSum,
70907120
flexLogsComputeLargeAvg,
70917121
flexLogsComputeMediumAvg,
70927122
flexLogsComputeSmallAvg,
@@ -7476,6 +7506,9 @@ public String toString() {
74767506
sb.append(" fargateTasksCountHwm: ")
74777507
.append(toIndentedString(fargateTasksCountHwm))
74787508
.append("\n");
7509+
sb.append(" featureFlagsConfigRequestsSum: ")
7510+
.append(toIndentedString(featureFlagsConfigRequestsSum))
7511+
.append("\n");
74797512
sb.append(" flexLogsComputeLargeAvg: ")
74807513
.append(toIndentedString(flexLogsComputeLargeAvg))
74817514
.append("\n");

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

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@
133133
UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM,
134134
UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM,
135135
UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM,
136+
UsageSummaryResponse.JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM,
136137
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM,
137138
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_MEDIUM_AVG_SUM,
138139
UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_SMALL_AVG_SUM,
@@ -683,6 +684,10 @@ public class UsageSummaryResponse {
683684
"fargate_tasks_count_hwm_sum";
684685
private Long fargateTasksCountHwmSum;
685686

687+
public static final String JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM =
688+
"feature_flags_config_requests_agg_sum";
689+
private Long featureFlagsConfigRequestsAggSum;
690+
686691
public static final String JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM =
687692
"flex_logs_compute_large_avg_sum";
688693
private Long flexLogsComputeLargeAvgSum;
@@ -3659,6 +3664,29 @@ public void setFargateTasksCountHwmSum(Long fargateTasksCountHwmSum) {
36593664
this.fargateTasksCountHwmSum = fargateTasksCountHwmSum;
36603665
}
36613666

3667+
public UsageSummaryResponse featureFlagsConfigRequestsAggSum(
3668+
Long featureFlagsConfigRequestsAggSum) {
3669+
this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum;
3670+
return this;
3671+
}
3672+
3673+
/**
3674+
* Shows the sum of all Feature Flags Client-Side SDK config requests over all hours in the
3675+
* current month for all organizations.
3676+
*
3677+
* @return featureFlagsConfigRequestsAggSum
3678+
*/
3679+
@jakarta.annotation.Nullable
3680+
@JsonProperty(JSON_PROPERTY_FEATURE_FLAGS_CONFIG_REQUESTS_AGG_SUM)
3681+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
3682+
public Long getFeatureFlagsConfigRequestsAggSum() {
3683+
return featureFlagsConfigRequestsAggSum;
3684+
}
3685+
3686+
public void setFeatureFlagsConfigRequestsAggSum(Long featureFlagsConfigRequestsAggSum) {
3687+
this.featureFlagsConfigRequestsAggSum = featureFlagsConfigRequestsAggSum;
3688+
}
3689+
36623690
public UsageSummaryResponse flexLogsComputeLargeAvgSum(Long flexLogsComputeLargeAvgSum) {
36633691
this.flexLogsComputeLargeAvgSum = flexLogsComputeLargeAvgSum;
36643692
return this;
@@ -7031,6 +7059,9 @@ public boolean equals(Object o) {
70317059
this.fargateTasksCountAvgSum, usageSummaryResponse.fargateTasksCountAvgSum)
70327060
&& Objects.equals(
70337061
this.fargateTasksCountHwmSum, usageSummaryResponse.fargateTasksCountHwmSum)
7062+
&& Objects.equals(
7063+
this.featureFlagsConfigRequestsAggSum,
7064+
usageSummaryResponse.featureFlagsConfigRequestsAggSum)
70347065
&& Objects.equals(
70357066
this.flexLogsComputeLargeAvgSum, usageSummaryResponse.flexLogsComputeLargeAvgSum)
70367067
&& Objects.equals(
@@ -7449,6 +7480,7 @@ public int hashCode() {
74497480
fargateContainerProfilerProfilingFargateEksAvgSum,
74507481
fargateTasksCountAvgSum,
74517482
fargateTasksCountHwmSum,
7483+
featureFlagsConfigRequestsAggSum,
74527484
flexLogsComputeLargeAvgSum,
74537485
flexLogsComputeMediumAvgSum,
74547486
flexLogsComputeSmallAvgSum,
@@ -7879,6 +7911,9 @@ public String toString() {
78797911
sb.append(" fargateTasksCountHwmSum: ")
78807912
.append(toIndentedString(fargateTasksCountHwmSum))
78817913
.append("\n");
7914+
sb.append(" featureFlagsConfigRequestsAggSum: ")
7915+
.append(toIndentedString(featureFlagsConfigRequestsAggSum))
7916+
.append("\n");
78827917
sb.append(" flexLogsComputeLargeAvgSum: ")
78837918
.append(toIndentedString(flexLogsComputeLargeAvgSum))
78847919
.append("\n");

0 commit comments

Comments
 (0)