Skip to content

Commit e92b9a3

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 554217a of spec repo
1 parent e10909b commit e92b9a3

4 files changed

Lines changed: 225 additions & 0 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22615,6 +22615,10 @@ components:
2261522615
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
2261622616
format: int64
2261722617
type: integer
22618+
infra_storage_mgmt_objects_avg:
22619+
description: Shows the average of all storage management objects over all hours in the current date for all organizations.
22620+
format: int64
22621+
type: integer
2261822622
ingested_events_bytes_sum:
2261922623
description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
2262022624
format: int64
@@ -23031,6 +23035,10 @@ components:
2303123035
description: Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
2303223036
format: int64
2303323037
type: integer
23038+
storage_management_object_count_avg:
23039+
description: Shows the average of all storage management objects over all hours in the current date for all organizations.
23040+
format: int64
23041+
type: integer
2303423042
synthetics_browser_check_calls_count_sum:
2303523043
description: Shows the sum of all Synthetic browser tests over all hours in the current date for all organizations.
2303623044
format: int64
@@ -23612,6 +23620,10 @@ components:
2361223620
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
2361323621
format: int64
2361423622
type: integer
23623+
infra_storage_mgmt_objects_avg:
23624+
description: Shows the average of all storage management objects over all hours in the current date for the given org.
23625+
format: int64
23626+
type: integer
2361523627
ingested_events_bytes_sum:
2361623628
description: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
2361723629
format: int64
@@ -24032,6 +24044,10 @@ components:
2403224044
description: Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
2403324045
format: int64
2403424046
type: integer
24047+
storage_management_object_count_avg:
24048+
description: Shows the average of all storage management objects over all hours in the current date for the given org.
24049+
format: int64
24050+
type: integer
2403524051
synthetics_browser_check_calls_count_sum:
2403624052
description: Shows the sum of all Synthetic browser tests over all hours in the current date for the given org.
2403724053
format: int64
@@ -24612,6 +24628,10 @@ components:
2461224628
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
2461324629
format: int64
2461424630
type: integer
24631+
infra_storage_mgmt_objects_avg_sum:
24632+
description: Shows the average of all storage management objects over all hours in the current month for all organizations.
24633+
format: int64
24634+
type: integer
2461524635
ingested_events_bytes_agg_sum:
2461624636
description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
2461724637
format: int64
@@ -25055,6 +25075,10 @@ components:
2505525075
description: Shows the first date of usage in the current month for all organizations.
2505625076
format: date-time
2505725077
type: string
25078+
storage_management_object_count_avg_sum:
25079+
description: Shows the average of all storage management objects over all hours in the current month for all organizations.
25080+
format: int64
25081+
type: integer
2505825082
synthetics_browser_check_calls_count_agg_sum:
2505925083
description: Shows the sum of all Synthetic browser tests over all hours in the current month for all organizations.
2506025084
format: int64

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

Lines changed: 66 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_AVG,
154155
UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
155156
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM,
156157
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_TOP99P,
@@ -256,6 +257,7 @@
256257
UsageSummaryDate.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG,
257258
UsageSummaryDate.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG,
258259
UsageSummaryDate.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM,
260+
UsageSummaryDate.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG,
259261
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM,
260262
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM,
261263
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM,
@@ -729,6 +731,10 @@ public class UsageSummaryDate {
729731
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p";
730732
private Long infraHostTop99p;
731733

734+
public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG =
735+
"infra_storage_mgmt_objects_avg";
736+
private Long infraStorageMgmtObjectsAvg;
737+
732738
public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum";
733739
private Long ingestedEventsBytesSum;
734740

@@ -1118,6 +1124,10 @@ public class UsageSummaryDate {
11181124
"siem_analyzed_logs_add_on_count_sum";
11191125
private Long siemAnalyzedLogsAddOnCountSum;
11201126

1127+
public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG =
1128+
"storage_management_object_count_avg";
1129+
private Long storageManagementObjectCountAvg;
1130+
11211131
public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM =
11221132
"synthetics_browser_check_calls_count_sum";
11231133
private Long syntheticsBrowserCheckCallsCountSum;
@@ -4063,6 +4073,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
40634073
this.infraHostTop99p = infraHostTop99p;
40644074
}
40654075

4076+
public UsageSummaryDate infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
4077+
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
4078+
return this;
4079+
}
4080+
4081+
/**
4082+
* Shows the average of all storage management objects over all hours in the current date for all
4083+
* organizations.
4084+
*
4085+
* @return infraStorageMgmtObjectsAvg
4086+
*/
4087+
@jakarta.annotation.Nullable
4088+
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG)
4089+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
4090+
public Long getInfraStorageMgmtObjectsAvg() {
4091+
return infraStorageMgmtObjectsAvg;
4092+
}
4093+
4094+
public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
4095+
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
4096+
}
4097+
40664098
public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
40674099
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
40684100
return this;
@@ -6431,6 +6463,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum)
64316463
this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum;
64326464
}
64336465

6466+
public UsageSummaryDate storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
6467+
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
6468+
return this;
6469+
}
6470+
6471+
/**
6472+
* Shows the average of all storage management objects over all hours in the current date for all
6473+
* organizations.
6474+
*
6475+
* @return storageManagementObjectCountAvg
6476+
*/
6477+
@jakarta.annotation.Nullable
6478+
@JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG)
6479+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
6480+
public Long getStorageManagementObjectCountAvg() {
6481+
return storageManagementObjectCountAvg;
6482+
}
6483+
6484+
public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
6485+
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
6486+
}
6487+
64346488
public UsageSummaryDate syntheticsBrowserCheckCallsCountSum(
64356489
Long syntheticsBrowserCheckCallsCountSum) {
64366490
this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum;
@@ -6917,6 +6971,8 @@ public boolean equals(Object o) {
69176971
usageSummaryDate.infraHostBasicInfraBasicVsphereTop99p)
69186972
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDate.infraHostBasicTop99p)
69196973
&& Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p)
6974+
&& Objects.equals(
6975+
this.infraStorageMgmtObjectsAvg, usageSummaryDate.infraStorageMgmtObjectsAvg)
69206976
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum)
69216977
&& Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum)
69226978
&& Objects.equals(this.iotDeviceTop99p, usageSummaryDate.iotDeviceTop99p)
@@ -7123,6 +7179,8 @@ public boolean equals(Object o) {
71237179
this.serverlessAppsTotalCountAvg, usageSummaryDate.serverlessAppsTotalCountAvg)
71247180
&& Objects.equals(
71257181
this.siemAnalyzedLogsAddOnCountSum, usageSummaryDate.siemAnalyzedLogsAddOnCountSum)
7182+
&& Objects.equals(
7183+
this.storageManagementObjectCountAvg, usageSummaryDate.storageManagementObjectCountAvg)
71267184
&& Objects.equals(
71277185
this.syntheticsBrowserCheckCallsCountSum,
71287186
usageSummaryDate.syntheticsBrowserCheckCallsCountSum)
@@ -7282,6 +7340,7 @@ public int hashCode() {
72827340
infraHostBasicInfraBasicVsphereTop99p,
72837341
infraHostBasicTop99p,
72847342
infraHostTop99p,
7343+
infraStorageMgmtObjectsAvg,
72857344
ingestedEventsBytesSum,
72867345
iotDeviceSum,
72877346
iotDeviceTop99p,
@@ -7383,6 +7442,7 @@ public int hashCode() {
73837442
serverlessAppsInfraGcpGkeAutopilotPodsAvg,
73847443
serverlessAppsTotalCountAvg,
73857444
siemAnalyzedLogsAddOnCountSum,
7445+
storageManagementObjectCountAvg,
73867446
syntheticsBrowserCheckCallsCountSum,
73877447
syntheticsCheckCallsCountSum,
73887448
syntheticsMobileTestRunsSum,
@@ -7712,6 +7772,9 @@ public String toString() {
77127772
.append(toIndentedString(infraHostBasicTop99p))
77137773
.append("\n");
77147774
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
7775+
sb.append(" infraStorageMgmtObjectsAvg: ")
7776+
.append(toIndentedString(infraStorageMgmtObjectsAvg))
7777+
.append("\n");
77157778
sb.append(" ingestedEventsBytesSum: ")
77167779
.append(toIndentedString(ingestedEventsBytesSum))
77177780
.append("\n");
@@ -7983,6 +8046,9 @@ public String toString() {
79838046
sb.append(" siemAnalyzedLogsAddOnCountSum: ")
79848047
.append(toIndentedString(siemAnalyzedLogsAddOnCountSum))
79858048
.append("\n");
8049+
sb.append(" storageManagementObjectCountAvg: ")
8050+
.append(toIndentedString(storageManagementObjectCountAvg))
8051+
.append("\n");
79868052
sb.append(" syntheticsBrowserCheckCallsCountSum: ")
79878053
.append(toIndentedString(syntheticsBrowserCheckCallsCountSum))
79888054
.append("\n");

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

Lines changed: 67 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_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,
@@ -260,6 +261,7 @@
260261
UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG,
261262
UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG,
262263
UsageSummaryDateOrg.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM,
264+
UsageSummaryDateOrg.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG,
263265
UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM,
264266
UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM,
265267
UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM,
@@ -745,6 +747,10 @@ public class UsageSummaryDateOrg {
745747
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p";
746748
private Long infraHostTop99p;
747749

750+
public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG =
751+
"infra_storage_mgmt_objects_avg";
752+
private Long infraStorageMgmtObjectsAvg;
753+
748754
public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum";
749755
private Long ingestedEventsBytesSum;
750756

@@ -1140,6 +1146,10 @@ public class UsageSummaryDateOrg {
11401146
"siem_analyzed_logs_add_on_count_sum";
11411147
private Long siemAnalyzedLogsAddOnCountSum;
11421148

1149+
public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG =
1150+
"storage_management_object_count_avg";
1151+
private Long storageManagementObjectCountAvg;
1152+
11431153
public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM =
11441154
"synthetics_browser_check_calls_count_sum";
11451155
private Long syntheticsBrowserCheckCallsCountSum;
@@ -4171,6 +4181,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
41714181
this.infraHostTop99p = infraHostTop99p;
41724182
}
41734183

4184+
public UsageSummaryDateOrg infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
4185+
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
4186+
return this;
4187+
}
4188+
4189+
/**
4190+
* Shows the average of all storage management objects over all hours in the current date for the
4191+
* given org.
4192+
*
4193+
* @return infraStorageMgmtObjectsAvg
4194+
*/
4195+
@jakarta.annotation.Nullable
4196+
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG)
4197+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
4198+
public Long getInfraStorageMgmtObjectsAvg() {
4199+
return infraStorageMgmtObjectsAvg;
4200+
}
4201+
4202+
public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
4203+
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
4204+
}
4205+
41744206
public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
41754207
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
41764208
return this;
@@ -6570,6 +6602,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum)
65706602
this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum;
65716603
}
65726604

6605+
public UsageSummaryDateOrg storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
6606+
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
6607+
return this;
6608+
}
6609+
6610+
/**
6611+
* Shows the average of all storage management objects over all hours in the current date for the
6612+
* given org.
6613+
*
6614+
* @return storageManagementObjectCountAvg
6615+
*/
6616+
@jakarta.annotation.Nullable
6617+
@JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG)
6618+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
6619+
public Long getStorageManagementObjectCountAvg() {
6620+
return storageManagementObjectCountAvg;
6621+
}
6622+
6623+
public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
6624+
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
6625+
}
6626+
65736627
public UsageSummaryDateOrg syntheticsBrowserCheckCallsCountSum(
65746628
Long syntheticsBrowserCheckCallsCountSum) {
65756629
this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum;
@@ -7071,6 +7125,8 @@ public boolean equals(Object o) {
70717125
usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p)
70727126
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p)
70737127
&& Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p)
7128+
&& Objects.equals(
7129+
this.infraStorageMgmtObjectsAvg, usageSummaryDateOrg.infraStorageMgmtObjectsAvg)
70747130
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum)
70757131
&& Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum)
70767132
&& Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum)
@@ -7290,6 +7346,9 @@ public boolean equals(Object o) {
72907346
this.serverlessAppsTotalCountAvg, usageSummaryDateOrg.serverlessAppsTotalCountAvg)
72917347
&& Objects.equals(
72927348
this.siemAnalyzedLogsAddOnCountSum, usageSummaryDateOrg.siemAnalyzedLogsAddOnCountSum)
7349+
&& Objects.equals(
7350+
this.storageManagementObjectCountAvg,
7351+
usageSummaryDateOrg.storageManagementObjectCountAvg)
72937352
&& Objects.equals(
72947353
this.syntheticsBrowserCheckCallsCountSum,
72957354
usageSummaryDateOrg.syntheticsBrowserCheckCallsCountSum)
@@ -7453,6 +7512,7 @@ public int hashCode() {
74537512
infraHostBasicInfraBasicVsphereTop99p,
74547513
infraHostBasicTop99p,
74557514
infraHostTop99p,
7515+
infraStorageMgmtObjectsAvg,
74567516
ingestedEventsBytesSum,
74577517
iotDeviceAggSum,
74587518
iotDeviceTop99pSum,
@@ -7556,6 +7616,7 @@ public int hashCode() {
75567616
serverlessAppsInfraGcpGkeAutopilotPodsAvg,
75577617
serverlessAppsTotalCountAvg,
75587618
siemAnalyzedLogsAddOnCountSum,
7619+
storageManagementObjectCountAvg,
75597620
syntheticsBrowserCheckCallsCountSum,
75607621
syntheticsCheckCallsCountSum,
75617622
syntheticsMobileTestRunsSum,
@@ -7891,6 +7952,9 @@ public String toString() {
78917952
.append(toIndentedString(infraHostBasicTop99p))
78927953
.append("\n");
78937954
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
7955+
sb.append(" infraStorageMgmtObjectsAvg: ")
7956+
.append(toIndentedString(infraStorageMgmtObjectsAvg))
7957+
.append("\n");
78947958
sb.append(" ingestedEventsBytesSum: ")
78957959
.append(toIndentedString(ingestedEventsBytesSum))
78967960
.append("\n");
@@ -8164,6 +8228,9 @@ public String toString() {
81648228
sb.append(" siemAnalyzedLogsAddOnCountSum: ")
81658229
.append(toIndentedString(siemAnalyzedLogsAddOnCountSum))
81668230
.append("\n");
8231+
sb.append(" storageManagementObjectCountAvg: ")
8232+
.append(toIndentedString(storageManagementObjectCountAvg))
8233+
.append("\n");
81678234
sb.append(" syntheticsBrowserCheckCallsCountSum: ")
81688235
.append(toIndentedString(syntheticsBrowserCheckCallsCountSum))
81698236
.append("\n");

0 commit comments

Comments
 (0)