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
12 changes: 12 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22424,6 +22424,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_count_avg:
description: Shows the average number of 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 @@ -23401,6 +23405,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_count_avg:
description: Shows the average number of 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 @@ -24381,6 +24389,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_count_avg_sum:
description: Shows the average number of 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
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,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_COUNT_AVG,
UsageSummaryDate.JSON_PROPERTY_INGESTED_EVENTS_BYTES_SUM,
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_SUM,
UsageSummaryDate.JSON_PROPERTY_IOT_DEVICE_TOP99P,
Expand Down Expand Up @@ -720,6 +721,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_COUNT_AVG =
"infra_storage_mgmt_objects_count_avg";
private Long infraStorageMgmtObjectsCountAvg;

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

Expand Down Expand Up @@ -4014,6 +4019,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
this.infraHostTop99p = infraHostTop99p;
}

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

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

public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) {
this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg;
}

public UsageSummaryDate ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
return this;
Expand Down Expand Up @@ -6766,6 +6793,8 @@ public boolean equals(Object o) {
usageSummaryDate.infraHostBasicInfraBasicVsphereTop99p)
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDate.infraHostBasicTop99p)
&& Objects.equals(this.infraHostTop99p, usageSummaryDate.infraHostTop99p)
&& Objects.equals(
this.infraStorageMgmtObjectsCountAvg, usageSummaryDate.infraStorageMgmtObjectsCountAvg)
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDate.ingestedEventsBytesSum)
&& Objects.equals(this.iotDeviceSum, usageSummaryDate.iotDeviceSum)
&& Objects.equals(this.iotDeviceTop99p, usageSummaryDate.iotDeviceTop99p)
Expand Down Expand Up @@ -7118,6 +7147,7 @@ public int hashCode() {
infraHostBasicInfraBasicVsphereTop99p,
infraHostBasicTop99p,
infraHostTop99p,
infraStorageMgmtObjectsCountAvg,
ingestedEventsBytesSum,
iotDeviceSum,
iotDeviceTop99p,
Expand Down Expand Up @@ -7541,6 +7571,9 @@ public String toString() {
.append(toIndentedString(infraHostBasicTop99p))
.append("\n");
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
sb.append(" infraStorageMgmtObjectsCountAvg: ")
.append(toIndentedString(infraStorageMgmtObjectsCountAvg))
.append("\n");
sb.append(" ingestedEventsBytesSum: ")
.append(toIndentedString(ingestedEventsBytesSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,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_COUNT_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 @@ -736,6 +737,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_COUNT_AVG =
"infra_storage_mgmt_objects_count_avg";
private Long infraStorageMgmtObjectsCountAvg;

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

Expand Down Expand Up @@ -4122,6 +4127,28 @@ public void setInfraHostTop99p(Long infraHostTop99p) {
this.infraHostTop99p = infraHostTop99p;
}

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

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

public void setInfraStorageMgmtObjectsCountAvg(Long infraStorageMgmtObjectsCountAvg) {
this.infraStorageMgmtObjectsCountAvg = infraStorageMgmtObjectsCountAvg;
}

public UsageSummaryDateOrg ingestedEventsBytesSum(Long ingestedEventsBytesSum) {
this.ingestedEventsBytesSum = ingestedEventsBytesSum;
return this;
Expand Down Expand Up @@ -6920,6 +6947,9 @@ public boolean equals(Object o) {
usageSummaryDateOrg.infraHostBasicInfraBasicVsphereTop99p)
&& Objects.equals(this.infraHostBasicTop99p, usageSummaryDateOrg.infraHostBasicTop99p)
&& Objects.equals(this.infraHostTop99p, usageSummaryDateOrg.infraHostTop99p)
&& Objects.equals(
this.infraStorageMgmtObjectsCountAvg,
usageSummaryDateOrg.infraStorageMgmtObjectsCountAvg)
&& Objects.equals(this.ingestedEventsBytesSum, usageSummaryDateOrg.ingestedEventsBytesSum)
&& Objects.equals(this.iotDeviceAggSum, usageSummaryDateOrg.iotDeviceAggSum)
&& Objects.equals(this.iotDeviceTop99pSum, usageSummaryDateOrg.iotDeviceTop99pSum)
Expand Down Expand Up @@ -7289,6 +7319,7 @@ public int hashCode() {
infraHostBasicInfraBasicVsphereTop99p,
infraHostBasicTop99p,
infraHostTop99p,
infraStorageMgmtObjectsCountAvg,
ingestedEventsBytesSum,
iotDeviceAggSum,
iotDeviceTop99pSum,
Expand Down Expand Up @@ -7720,6 +7751,9 @@ public String toString() {
.append(toIndentedString(infraHostBasicTop99p))
.append("\n");
sb.append(" infraHostTop99p: ").append(toIndentedString(infraHostTop99p)).append("\n");
sb.append(" infraStorageMgmtObjectsCountAvg: ")
.append(toIndentedString(infraStorageMgmtObjectsCountAvg))
.append("\n");
sb.append(" ingestedEventsBytesSum: ")
.append(toIndentedString(ingestedEventsBytesSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_INFRA_BASIC_VSPHERE_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_BASIC_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_INFRA_HOST_TOP99P_SUM,
UsageSummaryResponse.JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM,
UsageSummaryResponse.JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_AGG_SUM,
UsageSummaryResponse.JSON_PROPERTY_IOT_DEVICE_TOP99P_SUM,
Expand Down Expand Up @@ -776,6 +777,10 @@ public class UsageSummaryResponse {
public static final String JSON_PROPERTY_INFRA_HOST_TOP99P_SUM = "infra_host_top99p_sum";
private Long infraHostTop99pSum;

public static final String JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM =
"infra_storage_mgmt_objects_count_avg_sum";
private Long infraStorageMgmtObjectsCountAvgSum;

public static final String JSON_PROPERTY_INGESTED_EVENTS_BYTES_AGG_SUM =
"ingested_events_bytes_agg_sum";
private Long ingestedEventsBytesAggSum;
Expand Down Expand Up @@ -4214,6 +4219,29 @@ public void setInfraHostTop99pSum(Long infraHostTop99pSum) {
this.infraHostTop99pSum = infraHostTop99pSum;
}

public UsageSummaryResponse infraStorageMgmtObjectsCountAvgSum(
Long infraStorageMgmtObjectsCountAvgSum) {
this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum;
return this;
}

/**
* Shows the average number of storage management objects over all hours in the current month for
* all organizations.
*
* @return infraStorageMgmtObjectsCountAvgSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INFRA_STORAGE_MGMT_OBJECTS_COUNT_AVG_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getInfraStorageMgmtObjectsCountAvgSum() {
return infraStorageMgmtObjectsCountAvgSum;
}

public void setInfraStorageMgmtObjectsCountAvgSum(Long infraStorageMgmtObjectsCountAvgSum) {
this.infraStorageMgmtObjectsCountAvgSum = infraStorageMgmtObjectsCountAvgSum;
}

public UsageSummaryResponse ingestedEventsBytesAggSum(Long ingestedEventsBytesAggSum) {
this.ingestedEventsBytesAggSum = ingestedEventsBytesAggSum;
return this;
Expand Down Expand Up @@ -7250,6 +7278,9 @@ public boolean equals(Object o) {
&& Objects.equals(
this.infraHostBasicTop99pSum, usageSummaryResponse.infraHostBasicTop99pSum)
&& Objects.equals(this.infraHostTop99pSum, usageSummaryResponse.infraHostTop99pSum)
&& Objects.equals(
this.infraStorageMgmtObjectsCountAvgSum,
usageSummaryResponse.infraStorageMgmtObjectsCountAvgSum)
&& Objects.equals(
this.ingestedEventsBytesAggSum, usageSummaryResponse.ingestedEventsBytesAggSum)
&& Objects.equals(this.iotDeviceAggSum, usageSummaryResponse.iotDeviceAggSum)
Expand Down Expand Up @@ -7658,6 +7689,7 @@ public int hashCode() {
infraHostBasicInfraBasicVsphereTop99pSum,
infraHostBasicTop99pSum,
infraHostTop99pSum,
infraStorageMgmtObjectsCountAvgSum,
ingestedEventsBytesAggSum,
iotDeviceAggSum,
iotDeviceTop99pSum,
Expand Down Expand Up @@ -8136,6 +8168,9 @@ public String toString() {
.append(toIndentedString(infraHostBasicTop99pSum))
.append("\n");
sb.append(" infraHostTop99pSum: ").append(toIndentedString(infraHostTop99pSum)).append("\n");
sb.append(" infraStorageMgmtObjectsCountAvgSum: ")
.append(toIndentedString(infraStorageMgmtObjectsCountAvgSum))
.append("\n");
sb.append(" ingestedEventsBytesAggSum: ")
.append(toIndentedString(ingestedEventsBytesAggSum))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31e"
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31d"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31d"
"id": "d5bade64-6ebb-4f4d-903d-8069b52bb31e"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eeb"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eea"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "73fd406e-d686-10bd-50ee-83f2c499e8a8"
"id": "73fd406e-d686-10bd-50ee-83f2c499e8a9"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eea"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eec"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "a3ebb722-60eb-fa89-589a-ff3630e3a2cd"
"id": "a3ebb722-60eb-fa89-589a-ff3630e3a2ce"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eec"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9ee9"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "3d4d0603-9fed-1cc5-8004-086b9b6ef690"
"id": "3d4d0603-9fed-1cc5-8004-086b9b6ef691"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "101a55f5-5a26-d616-5fb4-8d0451d83d10"
"id": "101a55f5-5a26-d616-5fb4-8d0451d83d11"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d11"
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0e"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0e"
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d10"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9ee9"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eeb"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f1"
"id": "79babc38-7a70-5347-c8a6-73b0e70145ec"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145ed"
"id": "79babc38-7a70-5347-c8a6-73b0e70145eb"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f6"
"id": "79babc38-7a70-5347-c8a6-73b0e70145f2"
},
{
"httpRequest": {
Expand Down
Loading
Loading