Skip to content
Merged
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
48 changes: 48 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22527,6 +22527,14 @@ components:
description: Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
format: int64
type: integer
csm_host_pro_hosts_agentless_scanners_sum:
description: Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for the given org.
format: int64
type: integer
csm_host_pro_hosts_agentless_scanners_top99p:
description: Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for the given org.
format: int64
type: integer
csm_host_pro_oci_host_count_top99p:
description: Shows the 99th percentile of all Cloud Security Management Pro OCI hosts over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -22559,6 +22567,14 @@ components:
description: Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for all organizations.
format: int64
type: integer
cspm_hosts_agentless_scanners_sum:
description: Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for all organizations.
format: int64
type: integer
cspm_hosts_agentless_scanners_top99p:
description: Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for all organizations.
format: int64
type: integer
custom_ts_avg:
description: Shows the average number of distinct custom metrics over all hours in the current date for all organizations.
format: int64
Expand Down Expand Up @@ -23520,6 +23536,14 @@ components:
description: Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
format: int64
type: integer
csm_host_pro_hosts_agentless_scanners_sum:
description: Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for the given org.
format: int64
type: integer
csm_host_pro_hosts_agentless_scanners_top99p:
description: Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for the given org.
format: int64
type: integer
csm_host_pro_oci_host_count_top99p:
description: Shows the 99th percentile of all Cloud Security Management Pro OCI hosts over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -23552,6 +23576,14 @@ components:
description: Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current date for the given org.
format: int64
type: integer
cspm_hosts_agentless_scanners_sum:
description: Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for the given org.
format: int64
type: integer
cspm_hosts_agentless_scanners_top99p:
description: Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current date for the given org.
format: int64
type: integer
custom_historical_ts_avg:
description: Shows the average number of distinct historical custom metrics over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -24523,6 +24555,14 @@ components:
description: Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current month for all organizations.
format: int64
type: integer
csm_host_pro_hosts_agentless_scanners_agg_sum:
description: Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current month for all organizations.
format: int64
type: integer
csm_host_pro_hosts_agentless_scanners_top99p_sum:
description: Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current month for all organizations.
format: int64
type: integer
csm_host_pro_oci_host_count_top99p_sum:
description: Shows the 99th percentile of all Cloud Security Management Pro OCI hosts over all hours in the current month for all organizations.
format: int64
Expand Down Expand Up @@ -24555,6 +24595,14 @@ components:
description: Shows the 99th percentile of all Cloud Security Management Pro hosts over all hours in the current month for all organizations.
format: int64
type: integer
cspm_hosts_agentless_scanners_agg_sum:
description: Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current month for all organizations.
format: int64
type: integer
cspm_hosts_agentless_scanners_top99p_sum:
description: Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all hours in the current month for all organizations.
format: int64
type: integer
custom_historical_ts_sum:
description: Shows the average number of distinct historical custom metrics over all hours in the current month for all organizations.
format: int64
Expand Down
138 changes: 138 additions & 0 deletions src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@
UsageSummaryDate.JSON_PROPERTY_CSM_HOST_ENTERPRISE_GCP_HOST_COUNT_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSM_HOST_ENTERPRISE_OCI_HOST_COUNT_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSM_HOST_ENTERPRISE_TOTAL_HOST_COUNT_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_SUM,
UsageSummaryDate.JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSM_HOST_PRO_OCI_HOST_COUNT_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSPM_AAS_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSPM_AWS_HOST_TOP99P,
Expand All @@ -94,6 +96,8 @@
UsageSummaryDate.JSON_PROPERTY_CSPM_CONTAINER_HWM,
UsageSummaryDate.JSON_PROPERTY_CSPM_GCP_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSPM_HOST_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_SUM,
UsageSummaryDate.JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_TOP99P,
UsageSummaryDate.JSON_PROPERTY_CUSTOM_TS_AVG,
UsageSummaryDate.JSON_PROPERTY_CWS_CONTAINER_COUNT_AVG,
UsageSummaryDate.JSON_PROPERTY_CWS_FARGATE_TASK_AVG,
Expand Down Expand Up @@ -501,6 +505,14 @@ public class UsageSummaryDate {
"csm_host_enterprise_total_host_count_top99p";
private Long csmHostEnterpriseTotalHostCountTop99p;

public static final String JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_SUM =
"csm_host_pro_hosts_agentless_scanners_sum";
private Long csmHostProHostsAgentlessScannersSum;

public static final String JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_TOP99P =
"csm_host_pro_hosts_agentless_scanners_top99p";
private Long csmHostProHostsAgentlessScannersTop99p;

public static final String JSON_PROPERTY_CSM_HOST_PRO_OCI_HOST_COUNT_TOP99P =
"csm_host_pro_oci_host_count_top99p";
private Long csmHostProOciHostCountTop99p;
Expand All @@ -526,6 +538,14 @@ public class UsageSummaryDate {
public static final String JSON_PROPERTY_CSPM_HOST_TOP99P = "cspm_host_top99p";
private Long cspmHostTop99p;

public static final String JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_SUM =
"cspm_hosts_agentless_scanners_sum";
private Long cspmHostsAgentlessScannersSum;

public static final String JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_TOP99P =
"cspm_hosts_agentless_scanners_top99p";
private Long cspmHostsAgentlessScannersTop99p;

public static final String JSON_PROPERTY_CUSTOM_TS_AVG = "custom_ts_avg";
private Long customTsAvg;

Expand Down Expand Up @@ -2616,6 +2636,53 @@ public void setCsmHostEnterpriseTotalHostCountTop99p(Long csmHostEnterpriseTotal
this.csmHostEnterpriseTotalHostCountTop99p = csmHostEnterpriseTotalHostCountTop99p;
}

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

/**
* Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in
* the current date for the given org.
*
* @return csmHostProHostsAgentlessScannersSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCsmHostProHostsAgentlessScannersSum() {
return csmHostProHostsAgentlessScannersSum;
}

public void setCsmHostProHostsAgentlessScannersSum(Long csmHostProHostsAgentlessScannersSum) {
this.csmHostProHostsAgentlessScannersSum = csmHostProHostsAgentlessScannersSum;
}

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

/**
* Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all
* hours in the current date for the given org.
*
* @return csmHostProHostsAgentlessScannersTop99p
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CSM_HOST_PRO_HOSTS_AGENTLESS_SCANNERS_TOP99P)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCsmHostProHostsAgentlessScannersTop99p() {
return csmHostProHostsAgentlessScannersTop99p;
}

public void setCsmHostProHostsAgentlessScannersTop99p(
Long csmHostProHostsAgentlessScannersTop99p) {
this.csmHostProHostsAgentlessScannersTop99p = csmHostProHostsAgentlessScannersTop99p;
}

public UsageSummaryDate csmHostProOciHostCountTop99p(Long csmHostProOciHostCountTop99p) {
this.csmHostProOciHostCountTop99p = csmHostProOciHostCountTop99p;
return this;
Expand Down Expand Up @@ -2792,6 +2859,50 @@ public void setCspmHostTop99p(Long cspmHostTop99p) {
this.cspmHostTop99p = cspmHostTop99p;
}

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

/**
* Shows the sum of all Cloud Security Management Pro Agentless scanner hosts over all hours in
* the current date for all organizations.
*
* @return cspmHostsAgentlessScannersSum
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_SUM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCspmHostsAgentlessScannersSum() {
return cspmHostsAgentlessScannersSum;
}

public void setCspmHostsAgentlessScannersSum(Long cspmHostsAgentlessScannersSum) {
this.cspmHostsAgentlessScannersSum = cspmHostsAgentlessScannersSum;
}

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

/**
* Shows the 99th percentile of all Cloud Security Management Pro Agentless scanner hosts over all
* hours in the current date for all organizations.
*
* @return cspmHostsAgentlessScannersTop99p
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CSPM_HOSTS_AGENTLESS_SCANNERS_TOP99P)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getCspmHostsAgentlessScannersTop99p() {
return cspmHostsAgentlessScannersTop99p;
}

public void setCspmHostsAgentlessScannersTop99p(Long cspmHostsAgentlessScannersTop99p) {
this.cspmHostsAgentlessScannersTop99p = cspmHostsAgentlessScannersTop99p;
}

public UsageSummaryDate customTsAvg(Long customTsAvg) {
this.customTsAvg = customTsAvg;
return this;
Expand Down Expand Up @@ -6845,6 +6956,12 @@ public boolean equals(Object o) {
&& Objects.equals(
this.csmHostEnterpriseTotalHostCountTop99p,
usageSummaryDate.csmHostEnterpriseTotalHostCountTop99p)
&& Objects.equals(
this.csmHostProHostsAgentlessScannersSum,
usageSummaryDate.csmHostProHostsAgentlessScannersSum)
&& Objects.equals(
this.csmHostProHostsAgentlessScannersTop99p,
usageSummaryDate.csmHostProHostsAgentlessScannersTop99p)
&& Objects.equals(
this.csmHostProOciHostCountTop99p, usageSummaryDate.csmHostProOciHostCountTop99p)
&& Objects.equals(this.cspmAasHostTop99p, usageSummaryDate.cspmAasHostTop99p)
Expand All @@ -6854,6 +6971,11 @@ public boolean equals(Object o) {
&& Objects.equals(this.cspmContainerHwm, usageSummaryDate.cspmContainerHwm)
&& Objects.equals(this.cspmGcpHostTop99p, usageSummaryDate.cspmGcpHostTop99p)
&& Objects.equals(this.cspmHostTop99p, usageSummaryDate.cspmHostTop99p)
&& Objects.equals(
this.cspmHostsAgentlessScannersSum, usageSummaryDate.cspmHostsAgentlessScannersSum)
&& Objects.equals(
this.cspmHostsAgentlessScannersTop99p,
usageSummaryDate.cspmHostsAgentlessScannersTop99p)
&& Objects.equals(this.customTsAvg, usageSummaryDate.customTsAvg)
&& Objects.equals(this.cwsContainerCountAvg, usageSummaryDate.cwsContainerCountAvg)
&& Objects.equals(this.cwsFargateTaskAvg, usageSummaryDate.cwsFargateTaskAvg)
Expand Down Expand Up @@ -7246,6 +7368,8 @@ public int hashCode() {
csmHostEnterpriseGcpHostCountTop99p,
csmHostEnterpriseOciHostCountTop99p,
csmHostEnterpriseTotalHostCountTop99p,
csmHostProHostsAgentlessScannersSum,
csmHostProHostsAgentlessScannersTop99p,
csmHostProOciHostCountTop99p,
cspmAasHostTop99p,
cspmAwsHostTop99p,
Expand All @@ -7254,6 +7378,8 @@ public int hashCode() {
cspmContainerHwm,
cspmGcpHostTop99p,
cspmHostTop99p,
cspmHostsAgentlessScannersSum,
cspmHostsAgentlessScannersTop99p,
customTsAvg,
cwsContainerCountAvg,
cwsFargateTaskAvg,
Expand Down Expand Up @@ -7589,6 +7715,12 @@ public String toString() {
sb.append(" csmHostEnterpriseTotalHostCountTop99p: ")
.append(toIndentedString(csmHostEnterpriseTotalHostCountTop99p))
.append("\n");
sb.append(" csmHostProHostsAgentlessScannersSum: ")
.append(toIndentedString(csmHostProHostsAgentlessScannersSum))
.append("\n");
sb.append(" csmHostProHostsAgentlessScannersTop99p: ")
.append(toIndentedString(csmHostProHostsAgentlessScannersTop99p))
.append("\n");
sb.append(" csmHostProOciHostCountTop99p: ")
.append(toIndentedString(csmHostProOciHostCountTop99p))
.append("\n");
Expand All @@ -7601,6 +7733,12 @@ public String toString() {
sb.append(" cspmContainerHwm: ").append(toIndentedString(cspmContainerHwm)).append("\n");
sb.append(" cspmGcpHostTop99p: ").append(toIndentedString(cspmGcpHostTop99p)).append("\n");
sb.append(" cspmHostTop99p: ").append(toIndentedString(cspmHostTop99p)).append("\n");
sb.append(" cspmHostsAgentlessScannersSum: ")
.append(toIndentedString(cspmHostsAgentlessScannersSum))
.append("\n");
sb.append(" cspmHostsAgentlessScannersTop99p: ")
.append(toIndentedString(cspmHostsAgentlessScannersTop99p))
.append("\n");
sb.append(" customTsAvg: ").append(toIndentedString(customTsAvg)).append("\n");
sb.append(" cwsContainerCountAvg: ")
.append(toIndentedString(cwsContainerCountAvg))
Expand Down
Loading
Loading