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
32 changes: 32 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21641,11 +21641,22 @@ components:
org.
format: int64
type: integer
csm_host_enterprise_oci_host_count_top99p:
description: Shows the 99th percentile of all Cloud Security Management
Enterprise OCI hosts over all hours in the current date for the given
org.
format: int64
type: integer
csm_host_enterprise_total_host_count_top99p:
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_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
type: integer
cspm_aas_host_top99p:
description: Shows the 99th percentile of all Cloud Security Management
Pro Azure app services hosts over all hours in the current date for all
Expand Down Expand Up @@ -22784,11 +22795,22 @@ components:
org.
format: int64
type: integer
csm_host_enterprise_oci_host_count_top99p:
description: Shows the 99th percentile of all Cloud Security Management
Enterprise OCI hosts over all hours in the current date for the given
org.
format: int64
type: integer
csm_host_enterprise_total_host_count_top99p:
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_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
type: integer
cspm_aas_host_top99p:
description: Shows the 99th percentile of all Cloud Security Management
Pro Azure app services hosts over all hours in the current date for the
Expand Down Expand Up @@ -23934,11 +23956,21 @@ components:
Enterprise GCP hosts over all hours in the current month for all organizations.
format: int64
type: integer
csm_host_enterprise_oci_host_count_top99p_sum:
description: Shows the 99th percentile of all Cloud Security Management
Enterprise OCI hosts over all hours in the current month for all organizations.
format: int64
type: integer
csm_host_enterprise_total_host_count_top99p_sum:
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_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
type: integer
cspm_aas_host_top99p_sum:
description: Shows the 99th percentile of all Cloud Security Management
Pro Azure app services hosts over all hours in the current month for all
Expand Down
36 changes: 36 additions & 0 deletions src/datadogV1/model/model_usage_summary_date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,15 @@ pub struct UsageSummaryDate {
/// Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_enterprise_gcp_host_count_top99p")]
pub csm_host_enterprise_gcp_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Enterprise OCI hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_enterprise_oci_host_count_top99p")]
pub csm_host_enterprise_oci_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_enterprise_total_host_count_top99p")]
pub csm_host_enterprise_total_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Pro OCI hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_pro_oci_host_count_top99p")]
pub csm_host_pro_oci_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for all organizations.
#[serde(rename = "cspm_aas_host_top99p")]
pub cspm_aas_host_top99p: Option<i64>,
Expand Down Expand Up @@ -721,7 +727,9 @@ impl UsageSummaryDate {
csm_host_enterprise_compliance_host_count_top99p: None,
csm_host_enterprise_cws_host_count_top99p: None,
csm_host_enterprise_gcp_host_count_top99p: None,
csm_host_enterprise_oci_host_count_top99p: None,
csm_host_enterprise_total_host_count_top99p: None,
csm_host_pro_oci_host_count_top99p: None,
cspm_aas_host_top99p: None,
cspm_aws_host_top99p: None,
cspm_azure_host_top99p: None,
Expand Down Expand Up @@ -1183,12 +1191,24 @@ impl UsageSummaryDate {
self
}

#[allow(deprecated)]
pub fn csm_host_enterprise_oci_host_count_top99p(mut self, value: i64) -> Self {
self.csm_host_enterprise_oci_host_count_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn csm_host_enterprise_total_host_count_top99p(mut self, value: i64) -> Self {
self.csm_host_enterprise_total_host_count_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn csm_host_pro_oci_host_count_top99p(mut self, value: i64) -> Self {
self.csm_host_pro_oci_host_count_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn cspm_aas_host_top99p(mut self, value: i64) -> Self {
self.cspm_aas_host_top99p = Some(value);
Expand Down Expand Up @@ -2272,7 +2292,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
let mut csm_host_enterprise_compliance_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_cws_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_gcp_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_oci_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_total_host_count_top99p: Option<i64> = None;
let mut csm_host_pro_oci_host_count_top99p: Option<i64> = None;
let mut cspm_aas_host_top99p: Option<i64> = None;
let mut cspm_aws_host_top99p: Option<i64> = None;
let mut cspm_azure_host_top99p: Option<i64> = None;
Expand Down Expand Up @@ -2749,12 +2771,24 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
}
csm_host_enterprise_gcp_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"csm_host_enterprise_oci_host_count_top99p" => {
if v.is_null() {
continue;
}
csm_host_enterprise_oci_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"csm_host_enterprise_total_host_count_top99p" => {
if v.is_null() {
continue;
}
csm_host_enterprise_total_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"csm_host_pro_oci_host_count_top99p" => {
if v.is_null() {
continue;
}
csm_host_pro_oci_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"cspm_aas_host_top99p" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -3786,7 +3820,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
csm_host_enterprise_compliance_host_count_top99p,
csm_host_enterprise_cws_host_count_top99p,
csm_host_enterprise_gcp_host_count_top99p,
csm_host_enterprise_oci_host_count_top99p,
csm_host_enterprise_total_host_count_top99p,
csm_host_pro_oci_host_count_top99p,
cspm_aas_host_top99p,
cspm_aws_host_top99p,
cspm_azure_host_top99p,
Expand Down
36 changes: 36 additions & 0 deletions src/datadogV1/model/model_usage_summary_date_org.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,15 @@ pub struct UsageSummaryDateOrg {
/// Shows the 99th percentile of all Cloud Security Management Enterprise GCP hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_enterprise_gcp_host_count_top99p")]
pub csm_host_enterprise_gcp_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Enterprise OCI hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_enterprise_oci_host_count_top99p")]
pub csm_host_enterprise_oci_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Enterprise hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_enterprise_total_host_count_top99p")]
pub csm_host_enterprise_total_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Pro OCI hosts over all hours in the current date for the given org.
#[serde(rename = "csm_host_pro_oci_host_count_top99p")]
pub csm_host_pro_oci_host_count_top99p: Option<i64>,
/// Shows the 99th percentile of all Cloud Security Management Pro Azure app services hosts over all hours in the current date for the given org.
#[serde(rename = "cspm_aas_host_top99p")]
pub cspm_aas_host_top99p: Option<i64>,
Expand Down Expand Up @@ -742,7 +748,9 @@ impl UsageSummaryDateOrg {
csm_host_enterprise_compliance_host_count_top99p: None,
csm_host_enterprise_cws_host_count_top99p: None,
csm_host_enterprise_gcp_host_count_top99p: None,
csm_host_enterprise_oci_host_count_top99p: None,
csm_host_enterprise_total_host_count_top99p: None,
csm_host_pro_oci_host_count_top99p: None,
cspm_aas_host_top99p: None,
cspm_aws_host_top99p: None,
cspm_azure_host_top99p: None,
Expand Down Expand Up @@ -1220,12 +1228,24 @@ impl UsageSummaryDateOrg {
self
}

#[allow(deprecated)]
pub fn csm_host_enterprise_oci_host_count_top99p(mut self, value: i64) -> Self {
self.csm_host_enterprise_oci_host_count_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn csm_host_enterprise_total_host_count_top99p(mut self, value: i64) -> Self {
self.csm_host_enterprise_total_host_count_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn csm_host_pro_oci_host_count_top99p(mut self, value: i64) -> Self {
self.csm_host_pro_oci_host_count_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn cspm_aas_host_top99p(mut self, value: i64) -> Self {
self.cspm_aas_host_top99p = Some(value);
Expand Down Expand Up @@ -2335,7 +2355,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
let mut csm_host_enterprise_compliance_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_cws_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_gcp_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_oci_host_count_top99p: Option<i64> = None;
let mut csm_host_enterprise_total_host_count_top99p: Option<i64> = None;
let mut csm_host_pro_oci_host_count_top99p: Option<i64> = None;
let mut cspm_aas_host_top99p: Option<i64> = None;
let mut cspm_aws_host_top99p: Option<i64> = None;
let mut cspm_azure_host_top99p: Option<i64> = None;
Expand Down Expand Up @@ -2828,12 +2850,24 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
}
csm_host_enterprise_gcp_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"csm_host_enterprise_oci_host_count_top99p" => {
if v.is_null() {
continue;
}
csm_host_enterprise_oci_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"csm_host_enterprise_total_host_count_top99p" => {
if v.is_null() {
continue;
}
csm_host_enterprise_total_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"csm_host_pro_oci_host_count_top99p" => {
if v.is_null() {
continue;
}
csm_host_pro_oci_host_count_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"cspm_aas_host_top99p" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -3891,7 +3925,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
csm_host_enterprise_compliance_host_count_top99p,
csm_host_enterprise_cws_host_count_top99p,
csm_host_enterprise_gcp_host_count_top99p,
csm_host_enterprise_oci_host_count_top99p,
csm_host_enterprise_total_host_count_top99p,
csm_host_pro_oci_host_count_top99p,
cspm_aas_host_top99p,
cspm_aws_host_top99p,
cspm_azure_host_top99p,
Expand Down
Loading