Skip to content

Commit 4b68a58

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a3957e5 of spec repo
1 parent 9b047fc commit 4b68a58

4 files changed

Lines changed: 114 additions & 0 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22439,6 +22439,10 @@ components:
2243922439
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
2244022440
format: int64
2244122441
type: integer
22442+
infra_storage_mgmt_objects_count_avg:
22443+
description: Shows the average number of storage management objects over all hours in the current date for all organizations.
22444+
format: int64
22445+
type: integer
2244222446
ingested_events_bytes_sum:
2244322447
description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
2244422448
format: int64
@@ -23436,6 +23440,10 @@ components:
2343623440
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
2343723441
format: int64
2343823442
type: integer
23443+
infra_storage_mgmt_objects_count_avg:
23444+
description: Shows the average number of storage management objects over all hours in the current date for the given org.
23445+
format: int64
23446+
type: integer
2343923447
ingested_events_bytes_sum:
2344023448
description: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
2344123449
format: int64
@@ -24436,6 +24444,10 @@ components:
2443624444
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
2443724445
format: int64
2443824446
type: integer
24447+
infra_storage_mgmt_objects_count_avg_sum:
24448+
description: Shows the average number of storage management objects over all hours in the current month for all organizations.
24449+
format: int64
24450+
type: integer
2443924451
ingested_events_bytes_agg_sum:
2444024452
description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
2444124453
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
@@ -151,6 +151,7 @@
151151
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P,
152152
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P,
153153
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_TOP99P,
154+
UsageSummaryDate.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG,
154155
UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
155156
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM,
156157
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_TOP99P,
@@ -729,6 +730,10 @@ public class UsageSummaryDate {
729730
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p";
730731
private Long infraHostTop99p;
731732

733+
public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG =
734+
"infra_storage_mgmt_objects_count_avg";
735+
private Long infraStorageMgmtObjectsCountAvg;
736+
732737
public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum";
733738
private Long ingestedEventsBytesSum;
734739

@@ -4063,6 +4068,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
40634068
this.infraHostTop99p = infraHostTop99p;
40644069
}
40654070

4071+
public UsageSummaryDate infraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) {
4072+
this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg;
4073+
return this;
4074+
}
4075+
4076+
/**
4077+
* Shows the average number of storage management objects over all hours in the current date for
4078+
* all organizations.
4079+
*
4080+
* @return infraStorageMgmtObjectsCountAvg
4081+
*/
4082+
@jakarta.annotation.Nullable
4083+
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG)
4084+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
4085+
public Long getInfraStorageMgmtObjectsCountAvg() {
4086+
return infraStorageMgmtObjectsCountAvg;
4087+
}
4088+
4089+
public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) {
4090+
this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg;
4091+
}
4092+
40664093
public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
40674094
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
40684095
return this;
@@ -6917,6 +6944,8 @@ public boolean equals(Object o) {
69176944
usageSummaryDate.infraHostBasicInfraBasicVsphereTop99p)
69186945
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDate.infraHostBasicTop99p)
69196946
&& Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p)
6947+
&& Objects.equals(
6948+
this.infraStorageMgmtObjectsCountAvg, usageSummaryDate.infraStorageMgmtObjectsCountAvg)
69206949
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum)
69216950
&& Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum)
69226951
&& Objects.equals(this.iotDeviceTop99p, usageSummaryDate.iotDeviceTop99p)
@@ -7282,6 +7311,7 @@ public int hashCode() {
72827311
infraHostBasicInfraBasicVsphereTop99p,
72837312
infraHostBasicTop99p,
72847313
infraHostTop99p,
7314+
infraStorageMgmtObjectsCountAvg,
72857315
ingestedEventsBytesSum,
72867316
iotDeviceSum,
72877317
iotDeviceTop99p,
@@ -7712,6 +7742,9 @@ public String toString() {
77127742
.append(toIndentedString(infraHostBasicTop99p))
77137743
.append("\n");
77147744
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
7745+
sb.append(" infraStorageMgmtObjectsCountAvg: ")
7746+
.append(toIndentedString(infraStorageMgmtObjectsCountAvg))
7747+
.append("\n");
77157748
sb.append(" ingestedEventsBytesSum: ")
77167749
.append(toIndentedString(ingestedEventsBytesSum))
77177750
.append("\n");

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

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@
152152
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P,
153153
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P,
154154
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_TOP99P,
155+
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG,
155156
UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
156157
UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_AGG_SUM,
157158
UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM,
@@ -745,6 +746,10 @@ public class UsageSummaryDateOrg {
745746
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p";
746747
private Long infraHostTop99p;
747748

749+
public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG =
750+
"infra_storage_mgmt_objects_count_avg";
751+
private Long infraStorageMgmtObjectsCountAvg;
752+
748753
public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum";
749754
private Long ingestedEventsBytesSum;
750755

@@ -4171,6 +4176,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
41714176
this.infraHostTop99p = infraHostTop99p;
41724177
}
41734178

4179+
public UsageSummaryDateOrg infraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) {
4180+
this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg;
4181+
return this;
4182+
}
4183+
4184+
/**
4185+
* Shows the average number of storage management objects over all hours in the current date for
4186+
* the given org.
4187+
*
4188+
* @return infraStorageMgmtObjectsCountAvg
4189+
*/
4190+
@jakarta.annotation.Nullable
4191+
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG)
4192+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
4193+
public Long getInfraStorageMgmtObjectsCountAvg() {
4194+
return infraStorageMgmtObjectsCountAvg;
4195+
}
4196+
4197+
public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) {
4198+
this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg;
4199+
}
4200+
41744201
public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
41754202
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
41764203
return this;
@@ -7071,6 +7098,9 @@ public boolean equals(Object o) {
70717098
usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p)
70727099
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p)
70737100
&& Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p)
7101+
&& Objects.equals(
7102+
this.infraStorageMgmtObjectsCountAvg,
7103+
usageSummaryDateOrg.infraStorageMgmtObjectsCountAvg)
70747104
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum)
70757105
&& Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum)
70767106
&& Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum)
@@ -7453,6 +7483,7 @@ public int hashCode() {
74537483
infraHostBasicInfraBasicVsphereTop99p,
74547484
infraHostBasicTop99p,
74557485
infraHostTop99p,
7486+
infraStorageMgmtObjectsCountAvg,
74567487
ingestedEventsBytesSum,
74577488
iotDeviceAggSum,
74587489
iotDeviceTop99pSum,
@@ -7891,6 +7922,9 @@ public String toString() {
78917922
.append(toIndentedString(infraHostBasicTop99p))
78927923
.append("\n");
78937924
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
7925+
sb.append(" infraStorageMgmtObjectsCountAvg: ")
7926+
.append(toIndentedString(infraStorageMgmtObjectsCountAvg))
7927+
.append("\n");
78947928
sb.append(" ingestedEventsBytesSum: ")
78957929
.append(toIndentedString(ingestedEventsBytesSum))
78967930
.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
@@ -157,6 +157,7 @@
157157
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P_SUM,
158158
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P_SUM,
159159
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM,
160+
UsageSummaryResponse.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM,
160161
UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM,
161162
UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM,
162163
UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM,
@@ -787,6 +788,10 @@ public class UsageSummaryResponse {
787788
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum";
788789
private Long infraHostTop99pSum;
789790

791+
public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM =
792+
"infra_storage_mgmt_objects_count_avg_sum";
793+
private Long infraStorageMgmtObjectsCountAvgSum;
794+
790795
public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM =
791796
"ingested_events_bytes_agg_sum";
792797
private Long ingestedEventsBytesAggSum;
@@ -4266,6 +4271,29 @@ public void setInfraHostTop99pSum(Long infraHostTop99pSum) {
42664271
this.infraHostTop99pSum = infraHostTop99pSum;
42674272
}
42684273

4274+
public UsageSummaryResponse infraStorageMgmtObjectsCountAvgSum(
4275+
Long infraStorageMgmtObjectsCountAvgSum) {
4276+
this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum;
4277+
return this;
4278+
}
4279+
4280+
/**
4281+
* Shows the average number of storage management objects over all hours in the current month for
4282+
* all organizations.
4283+
*
4284+
* @return infraStorageMgmtObjectsCountAvgSum
4285+
*/
4286+
@jakarta.annotation.Nullable
4287+
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM)
4288+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
4289+
public Long getInfraStorageMgmtObjectsCountAvgSum() {
4290+
return infraStorageMgmtObjectsCountAvgSum;
4291+
}
4292+
4293+
public void setInfraStorageMgmtObjectsCountAvgSum(Long infraStorageMgmtObjectsCountAvgSum) {
4294+
this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum;
4295+
}
4296+
42694297
public UsageSummaryResponse ingestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) {
42704298
this.ingestedEventsBytesAggSum = ingestedEventsBytesAggSum;
42714299
return this;
@@ -7409,6 +7437,9 @@ public boolean equals(Object o) {
74097437
&& Objects.equals(
74107438
this.infraHostBasicTop99pSum, usageSummaryResponse.infraHostBasicTop99pSum)
74117439
&& Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum)
7440+
&& Objects.equals(
7441+
this.infraStorageMgmtObjectsCountAvgSum,
7442+
usageSummaryResponse.infraStorageMgmtObjectsCountAvgSum)
74127443
&& Objects.equals(
74137444
this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum)
74147445
&& Objects.equals(this.iotDeviceAggSum, usageSummaryResponse.iotDeviceAggSum)
@@ -7830,6 +7861,7 @@ public int hashCode() {
78307861
infraHostBasicInfraBasicVsphereTop99pSum,
78317862
infraHostBasicTop99pSum,
78327863
infraHostTop99pSum,
7864+
infraStorageMgmtObjectsCountAvgSum,
78337865
ingestedEventsBytesAggSum,
78347866
iotDeviceAggSum,
78357867
iotDeviceTop99pSum,
@@ -8315,6 +8347,9 @@ public String toString() {
83158347
.append(toIndentedString(infraHostBasicTop99pSum))
83168348
.append("\n");
83178349
sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n");
8350+
sb.append(" infraStorageMgmtObjectsCountAvgSum: ")
8351+
.append(toIndentedString(infraStorageMgmtObjectsCountAvgSum))
8352+
.append("\n");
83188353
sb.append(" ingestedEventsBytesAggSum: ")
83198354
.append(toIndentedString(ingestedEventsBytesAggSum))
83208355
.append("\n");

0 commit comments

Comments
 (0)