Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22615,6 +22615,10 @@ components:
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
format: int64
type: integer
infra_storage_mgmt_objects_avg:
description: Shows the average of all storage management objects over all hours in the current date for all organizations.
format: int64
type: integer
ingested_events_bytes_sum:
description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
format: int64
Expand Down Expand Up @@ -23031,6 +23035,10 @@ components:
description: Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
format: int64
type: integer
storage_management_object_count_avg:
description: Shows the average of all storage management objects over all hours in the current date for all organizations.
format: int64
type: integer
synthetics_browser_check_calls_count_sum:
description: Shows the sum of all Synthetic browser tests over all hours in the current date for all organizations.
format: int64
Expand Down Expand Up @@ -23612,6 +23620,10 @@ components:
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
format: int64
type: integer
infra_storage_mgmt_objects_avg:
description: Shows the average of all storage management objects over all hours in the current date for the given org.
format: int64
type: integer
ingested_events_bytes_sum:
description: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -24032,6 +24044,10 @@ components:
description: Shows the sum of all log events analyzed by Cloud SIEM over all hours in the current date for the given org.
format: int64
type: integer
storage_management_object_count_avg:
description: Shows the average of all storage management objects over all hours in the current date for the given org.
format: int64
type: integer
synthetics_browser_check_calls_count_sum:
description: Shows the sum of all Synthetic browser tests over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -24612,6 +24628,10 @@ components:
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
format: int64
type: integer
infra_storage_mgmt_objects_avg_sum:
description: Shows the average of all storage management objects over all hours in the current month for all organizations.
format: int64
type: integer
ingested_events_bytes_agg_sum:
description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
format: int64
Expand Down Expand Up @@ -25055,6 +25075,10 @@ components:
description: Shows the first date of usage in the current month for all organizations.
format: date-time
type: string
storage_management_object_count_avg_sum:
description: Shows the average of all storage management objects over all hours in the current month for all organizations.
format: int64
type: integer
synthetics_browser_check_calls_count_agg_sum:
description: Shows the sum of all Synthetic browser tests over all hours in the current month for all organizations.
format: int64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P,
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P,
UsageSummaryDate.JSON_PROPERTY_INFRA_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG,
UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM,
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_TOP99P,
Expand Down Expand Up @@ -256,6 +257,7 @@
UsageSummaryDate.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG,
UsageSummaryDate.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG,
UsageSummaryDate.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM,
UsageSummaryDate.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM,
Expand Down Expand Up @@ -729,6 +731,10 @@ public class UsageSummaryDate {
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p";
private Long infraHostTop99p;

public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG =
"infra_storage_mgmt_objects_avg";
private Long infraStorageMgmtObjectsAvg;

public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum";
private Long ingestedEventsBytesSum;

Expand Down Expand Up @@ -1118,6 +1124,10 @@ public class UsageSummaryDate {
"siem_analyzed_logs_add_on_count_sum";
private Long siemAnalyzedLogsAddOnCountSum;

public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG =
"storage_management_object_count_avg";
private Long storageManagementObjectCountAvg;

public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM =
"synthetics_browser_check_calls_count_sum";
private Long syntheticsBrowserCheckCallsCountSum;
Expand Down Expand Up @@ -4063,6 +4073,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
this.infraHostTop99p = infraHostTop99p;
}

public UsageSummaryDate infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
return this;
}

/**
* Shows the average of all storage management objects over all hours in the current date for all
* organizations.
*
* @return infraStorageMgmtObjectsAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getInfraStorageMgmtObjectsAvg() {
return infraStorageMgmtObjectsAvg;
}

public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
}

public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
return this;
Expand Down Expand Up @@ -6431,6 +6463,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum)
this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum;
}

public UsageSummaryDate storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
return this;
}

/**
* Shows the average of all storage management objects over all hours in the current date for all
* organizations.
*
* @return storageManagementObjectCountAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getStorageManagementObjectCountAvg() {
return storageManagementObjectCountAvg;
}

public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
}

public UsageSummaryDate syntheticsBrowserCheckCallsCountSum(
Long syntheticsBrowserCheckCallsCountSum) {
this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum;
Expand Down Expand Up @@ -6917,6 +6971,8 @@ public boolean equals(Object o) {
usageSummaryDate.infraHostBasicInfraBasicVsphereTop99p)
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDate.infraHostBasicTop99p)
&& Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p)
&& Objects.equals(
this.infraStorageMgmtObjectsAvg, usageSummaryDate.infraStorageMgmtObjectsAvg)
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum)
&& Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum)
&& Objects.equals(this.iotDeviceTop99p, usageSummaryDate.iotDeviceTop99p)
Expand Down Expand Up @@ -7123,6 +7179,8 @@ public boolean equals(Object o) {
this.serverlessAppsTotalCountAvg, usageSummaryDate.serverlessAppsTotalCountAvg)
&& Objects.equals(
this.siemAnalyzedLogsAddOnCountSum, usageSummaryDate.siemAnalyzedLogsAddOnCountSum)
&& Objects.equals(
this.storageManagementObjectCountAvg, usageSummaryDate.storageManagementObjectCountAvg)
&& Objects.equals(
this.syntheticsBrowserCheckCallsCountSum,
usageSummaryDate.syntheticsBrowserCheckCallsCountSum)
Expand Down Expand Up @@ -7282,6 +7340,7 @@ public int hashCode() {
infraHostBasicInfraBasicVsphereTop99p,
infraHostBasicTop99p,
infraHostTop99p,
infraStorageMgmtObjectsAvg,
ingestedEventsBytesSum,
iotDeviceSum,
iotDeviceTop99p,
Expand Down Expand Up @@ -7383,6 +7442,7 @@ public int hashCode() {
serverlessAppsInfraGcpGkeAutopilotPodsAvg,
serverlessAppsTotalCountAvg,
siemAnalyzedLogsAddOnCountSum,
storageManagementObjectCountAvg,
syntheticsBrowserCheckCallsCountSum,
syntheticsCheckCallsCountSum,
syntheticsMobileTestRunsSum,
Expand Down Expand Up @@ -7712,6 +7772,9 @@ public String toString() {
.append(toIndentedString(infraHostBasicTop99p))
.append("\n");
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
sb.append(" infraStorageMgmtObjectsAvg: ")
.append(toIndentedString(infraStorageMgmtObjectsAvg))
.append("\n");
sb.append(" ingestedEventsBytesSum: ")
.append(toIndentedString(ingestedEventsBytesSum))
.append("\n");
Expand Down Expand Up @@ -7983,6 +8046,9 @@ public String toString() {
sb.append(" siemAnalyzedLogsAddOnCountSum: ")
.append(toIndentedString(siemAnalyzedLogsAddOnCountSum))
.append("\n");
sb.append(" storageManagementObjectCountAvg: ")
.append(toIndentedString(storageManagementObjectCountAvg))
.append("\n");
sb.append(" syntheticsBrowserCheckCallsCountSum: ")
.append(toIndentedString(syntheticsBrowserCheckCallsCountSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_HOST_TOP99P,
UsageSummaryDateOrg.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_AGG_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM,
Expand Down Expand Up @@ -260,6 +261,7 @@
UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_INFRA_GCP_GKE_AUTOPILOT_PODS_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_SERVERLESS_APPS_TOTAL_COUNT_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_SIEM_ANALYZED_LOGS_ADD_ON_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG,
UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_CHECK_CALLS_COUNT_SUM,
UsageSummaryDateOrg.JSON_PROPERTY_SYNTHETICS_MOBILE_TEST_RUNS_SUM,
Expand Down Expand Up @@ -745,6 +747,10 @@ public class UsageSummaryDateOrg {
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P = "infra_host_top99p";
private Long infraHostTop99p;

public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG =
"infra_storage_mgmt_objects_avg";
private Long infraStorageMgmtObjectsAvg;

public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM = "ingested_events_bytes_sum";
private Long ingestedEventsBytesSum;

Expand Down Expand Up @@ -1140,6 +1146,10 @@ public class UsageSummaryDateOrg {
"siem_analyzed_logs_add_on_count_sum";
private Long siemAnalyzedLogsAddOnCountSum;

public static final String JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG =
"storage_management_object_count_avg";
private Long storageManagementObjectCountAvg;

public static final String JSON_PROPERTY_SYNTHETICS_BROWSER_CHECK_CALLS_COUNT_SUM =
"synthetics_browser_check_calls_count_sum";
private Long syntheticsBrowserCheckCallsCountSum;
Expand Down Expand Up @@ -4171,6 +4181,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
this.infraHostTop99p = infraHostTop99p;
}

public UsageSummaryDateOrg infraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
return this;
}

/**
* Shows the average of all storage management objects over all hours in the current date for the
* given org.
*
* @return infraStorageMgmtObjectsAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getInfraStorageMgmtObjectsAvg() {
return infraStorageMgmtObjectsAvg;
}

public void setInfraStorageMgmtObjectsAvg(Long infraStorageMgmtObjectsAvg) {
this.infraStorageMgmtObjectsAvg = infraStorageMgmtObjectsAvg;
}

public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
return this;
Expand Down Expand Up @@ -6570,6 +6602,28 @@ public void setSiemAnalyzedLogsAddOnCountSum(Long siemAnalyzedLogsAddOnCountSum)
this.siemAnalyzedLogsAddOnCountSum = siemAnalyzedLogsAddOnCountSum;
}

public UsageSummaryDateOrg storageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
return this;
}

/**
* Shows the average of all storage management objects over all hours in the current date for the
* given org.
*
* @return storageManagementObjectCountAvg
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STORAGE_MANAGEMENT_OBJECT_COUNT_AVG)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getStorageManagementObjectCountAvg() {
return storageManagementObjectCountAvg;
}

public void setStorageManagementObjectCountAvg(Long storageManagementObjectCountAvg) {
this.storageManagementObjectCountAvg = storageManagementObjectCountAvg;
}

public UsageSummaryDateOrg syntheticsBrowserCheckCallsCountSum(
Long syntheticsBrowserCheckCallsCountSum) {
this.syntheticsBrowserCheckCallsCountSum = syntheticsBrowserCheckCallsCountSum;
Expand Down Expand Up @@ -7071,6 +7125,8 @@ public boolean equals(Object o) {
usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p)
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p)
&& Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p)
&& Objects.equals(
this.infraStorageMgmtObjectsAvg, usageSummaryDateOrg.infraStorageMgmtObjectsAvg)
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum)
&& Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum)
&& Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum)
Expand Down Expand Up @@ -7290,6 +7346,9 @@ public boolean equals(Object o) {
this.serverlessAppsTotalCountAvg, usageSummaryDateOrg.serverlessAppsTotalCountAvg)
&& Objects.equals(
this.siemAnalyzedLogsAddOnCountSum, usageSummaryDateOrg.siemAnalyzedLogsAddOnCountSum)
&& Objects.equals(
this.storageManagementObjectCountAvg,
usageSummaryDateOrg.storageManagementObjectCountAvg)
&& Objects.equals(
this.syntheticsBrowserCheckCallsCountSum,
usageSummaryDateOrg.syntheticsBrowserCheckCallsCountSum)
Expand Down Expand Up @@ -7453,6 +7512,7 @@ public int hashCode() {
infraHostBasicInfraBasicVsphereTop99p,
infraHostBasicTop99p,
infraHostTop99p,
infraStorageMgmtObjectsAvg,
ingestedEventsBytesSum,
iotDeviceAggSum,
iotDeviceTop99pSum,
Expand Down Expand Up @@ -7556,6 +7616,7 @@ public int hashCode() {
serverlessAppsInfraGcpGkeAutopilotPodsAvg,
serverlessAppsTotalCountAvg,
siemAnalyzedLogsAddOnCountSum,
storageManagementObjectCountAvg,
syntheticsBrowserCheckCallsCountSum,
syntheticsCheckCallsCountSum,
syntheticsMobileTestRunsSum,
Expand Down Expand Up @@ -7891,6 +7952,9 @@ public String toString() {
.append(toIndentedString(infraHostBasicTop99p))
.append("\n");
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
sb.append(" infraStorageMgmtObjectsAvg: ")
.append(toIndentedString(infraStorageMgmtObjectsAvg))
.append("\n");
sb.append(" ingestedEventsBytesSum: ")
.append(toIndentedString(ingestedEventsBytesSum))
.append("\n");
Expand Down Expand Up @@ -8164,6 +8228,9 @@ public String toString() {
sb.append(" siemAnalyzedLogsAddOnCountSum: ")
.append(toIndentedString(siemAnalyzedLogsAddOnCountSum))
.append("\n");
sb.append(" storageManagementObjectCountAvg: ")
.append(toIndentedString(storageManagementObjectCountAvg))
.append("\n");
sb.append(" syntheticsBrowserCheckCallsCountSum: ")
.append(toIndentedString(syntheticsBrowserCheckCallsCountSum))
.append("\n");
Expand Down
Loading
Loading