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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 16:17:40.147007",
"spec_repo_commit": "65dbf403"
"regenerated": "2024-10-01 19:12:36.177491",
"spec_repo_commit": "34a01c1d"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 16:17:40.161239",
"spec_repo_commit": "65dbf403"
"regenerated": "2024-10-01 19:12:36.192598",
"spec_repo_commit": "34a01c1d"
}
}
}
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19490,6 +19490,16 @@ components:
hours in the current date for the given org.
format: int64
type: integer
oci_host_sum:
description: Shows the sum of all Oracle Cloud Infrastructure hosts over
all hours in the current date for the given org.
format: int64
type: integer
oci_host_top99p:
description: Shows the 99th percentile of all Oracle Cloud Infrastructure
hosts over all hours in the current date for the given org.
format: int64
type: integer
online_archive_events_count_sum:
description: Sum of all online archived events over all hours in the current
date for all organizations.
Expand Down Expand Up @@ -20229,6 +20239,16 @@ components:
hours in the current date for the given org.
format: int64
type: integer
oci_host_sum:
description: Shows the sum of all Oracle Cloud Infrastructure hosts over
all hours in the current date for the given org.
format: int64
type: integer
oci_host_top99p:
description: Shows the 99th percentile of all Oracle Cloud Infrastructure
hosts over all hours in the current date for the given org.
format: int64
type: integer
online_archive_events_count_sum:
description: Sum of all online archived events over all hours in the current
date for the given org.
Expand Down Expand Up @@ -20991,6 +21011,16 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
oci_host_agg_sum:
description: Shows the sum of Oracle Cloud Infrastructure hosts over all
hours in the current months for all organizations
format: int64
type: integer
oci_host_top99p_sum:
description: Shows the 99th percentile of Oracle Cloud Infrastructure hosts
over all hours in the current months for all organizations
format: int64
type: integer
online_archive_events_count_agg_sum:
description: Sum of all online archived events over all hours in the current
month for all organizations.
Expand Down
38 changes: 38 additions & 0 deletions src/datadogV1/model/model_usage_summary_date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,12 @@ pub struct UsageSummaryDate {
/// Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
#[serde(rename = "observability_pipelines_bytes_processed_sum")]
pub observability_pipelines_bytes_processed_sum: Option<i64>,
/// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
#[serde(rename = "oci_host_sum")]
pub oci_host_sum: Option<i64>,
/// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
#[serde(rename = "oci_host_top99p")]
pub oci_host_top99p: Option<i64>,
/// Sum of all online archived events over all hours in the current date for all organizations.
#[serde(rename = "online_archive_events_count_sum")]
pub online_archive_events_count_sum: Option<i64>,
Expand Down Expand Up @@ -522,6 +528,8 @@ impl UsageSummaryDate {
netflow_indexed_events_count_sum: None,
npm_host_top99p: None,
observability_pipelines_bytes_processed_sum: None,
oci_host_sum: None,
oci_host_top99p: None,
online_archive_events_count_sum: None,
opentelemetry_apm_host_top99p: None,
opentelemetry_host_top99p: None,
Expand Down Expand Up @@ -1095,6 +1103,18 @@ impl UsageSummaryDate {
self
}

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

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

#[allow(deprecated)]
pub fn online_archive_events_count_sum(mut self, value: i64) -> Self {
self.online_archive_events_count_sum = Some(value);
Expand Down Expand Up @@ -1490,6 +1510,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
let mut netflow_indexed_events_count_sum: Option<i64> = None;
let mut npm_host_top99p: Option<i64> = None;
let mut observability_pipelines_bytes_processed_sum: Option<i64> = None;
let mut oci_host_sum: Option<i64> = None;
let mut oci_host_top99p: Option<i64> = None;
let mut online_archive_events_count_sum: Option<i64> = None;
let mut opentelemetry_apm_host_top99p: Option<i64> = None;
let mut opentelemetry_host_top99p: Option<i64> = None;
Expand Down Expand Up @@ -2152,6 +2174,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
observability_pipelines_bytes_processed_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"oci_host_sum" => {
if v.is_null() {
continue;
}
oci_host_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"oci_host_top99p" => {
if v.is_null() {
continue;
}
oci_host_top99p =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"online_archive_events_count_sum" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -2570,6 +2606,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
netflow_indexed_events_count_sum,
npm_host_top99p,
observability_pipelines_bytes_processed_sum,
oci_host_sum,
oci_host_top99p,
online_archive_events_count_sum,
opentelemetry_apm_host_top99p,
opentelemetry_host_top99p,
Expand Down
38 changes: 38 additions & 0 deletions src/datadogV1/model/model_usage_summary_date_org.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,12 @@ pub struct UsageSummaryDateOrg {
/// Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
#[serde(rename = "observability_pipelines_bytes_processed_sum")]
pub observability_pipelines_bytes_processed_sum: Option<i64>,
/// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
#[serde(rename = "oci_host_sum")]
pub oci_host_sum: Option<i64>,
/// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
#[serde(rename = "oci_host_top99p")]
pub oci_host_top99p: Option<i64>,
/// Sum of all online archived events over all hours in the current date for the given org.
#[serde(rename = "online_archive_events_count_sum")]
pub online_archive_events_count_sum: Option<i64>,
Expand Down Expand Up @@ -546,6 +552,8 @@ impl UsageSummaryDateOrg {
netflow_indexed_events_count_sum: None,
npm_host_top99p: None,
observability_pipelines_bytes_processed_sum: None,
oci_host_sum: None,
oci_host_top99p: None,
online_archive_events_count_sum: None,
opentelemetry_apm_host_top99p: None,
opentelemetry_host_top99p: None,
Expand Down Expand Up @@ -1150,6 +1158,18 @@ impl UsageSummaryDateOrg {
self
}

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

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

#[allow(deprecated)]
pub fn online_archive_events_count_sum(mut self, value: i64) -> Self {
self.online_archive_events_count_sum = Some(value);
Expand Down Expand Up @@ -1556,6 +1576,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
let mut netflow_indexed_events_count_sum: Option<i64> = None;
let mut npm_host_top99p: Option<i64> = None;
let mut observability_pipelines_bytes_processed_sum: Option<i64> = None;
let mut oci_host_sum: Option<i64> = None;
let mut oci_host_top99p: Option<i64> = None;
let mut online_archive_events_count_sum: Option<i64> = None;
let mut opentelemetry_apm_host_top99p: Option<i64> = None;
let mut opentelemetry_host_top99p: Option<i64> = None;
Expand Down Expand Up @@ -2253,6 +2275,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
observability_pipelines_bytes_processed_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"oci_host_sum" => {
if v.is_null() {
continue;
}
oci_host_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"oci_host_top99p" => {
if v.is_null() {
continue;
}
oci_host_top99p =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"online_archive_events_count_sum" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -2682,6 +2718,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
netflow_indexed_events_count_sum,
npm_host_top99p,
observability_pipelines_bytes_processed_sum,
oci_host_sum,
oci_host_top99p,
online_archive_events_count_sum,
opentelemetry_apm_host_top99p,
opentelemetry_host_top99p,
Expand Down
38 changes: 38 additions & 0 deletions src/datadogV1/model/model_usage_summary_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,12 @@ pub struct UsageSummaryResponse {
/// Sum of all observability pipelines bytes processed over all hours in the current month for all organizations.
#[serde(rename = "observability_pipelines_bytes_processed_agg_sum")]
pub observability_pipelines_bytes_processed_agg_sum: Option<i64>,
/// Shows the sum of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
#[serde(rename = "oci_host_agg_sum")]
pub oci_host_agg_sum: Option<i64>,
/// Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
#[serde(rename = "oci_host_top99p_sum")]
pub oci_host_top99p_sum: Option<i64>,
/// Sum of all online archived events over all hours in the current month for all organizations.
#[serde(rename = "online_archive_events_count_agg_sum")]
pub online_archive_events_count_agg_sum: Option<i64>,
Expand Down Expand Up @@ -565,6 +571,8 @@ impl UsageSummaryResponse {
netflow_indexed_events_count_agg_sum: None,
npm_host_top99p_sum: None,
observability_pipelines_bytes_processed_agg_sum: None,
oci_host_agg_sum: None,
oci_host_top99p_sum: None,
online_archive_events_count_agg_sum: None,
opentelemetry_apm_host_top99p_sum: None,
opentelemetry_host_top99p_sum: None,
Expand Down Expand Up @@ -1184,6 +1192,18 @@ impl UsageSummaryResponse {
self
}

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

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

#[allow(deprecated)]
pub fn online_archive_events_count_agg_sum(mut self, value: i64) -> Self {
self.online_archive_events_count_agg_sum = Some(value);
Expand Down Expand Up @@ -1610,6 +1630,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
let mut netflow_indexed_events_count_agg_sum: Option<i64> = None;
let mut npm_host_top99p_sum: Option<i64> = None;
let mut observability_pipelines_bytes_processed_agg_sum: Option<i64> = None;
let mut oci_host_agg_sum: Option<i64> = None;
let mut oci_host_top99p_sum: Option<i64> = None;
let mut online_archive_events_count_agg_sum: Option<i64> = None;
let mut opentelemetry_apm_host_top99p_sum: Option<i64> = None;
let mut opentelemetry_host_top99p_sum: Option<i64> = None;
Expand Down Expand Up @@ -2325,6 +2347,20 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
observability_pipelines_bytes_processed_agg_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"oci_host_agg_sum" => {
if v.is_null() {
continue;
}
oci_host_agg_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"oci_host_top99p_sum" => {
if v.is_null() {
continue;
}
oci_host_top99p_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"online_archive_events_count_agg_sum" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -2777,6 +2813,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
netflow_indexed_events_count_agg_sum,
npm_host_top99p_sum,
observability_pipelines_bytes_processed_agg_sum,
oci_host_agg_sum,
oci_host_top99p_sum,
online_archive_events_count_agg_sum,
opentelemetry_apm_host_top99p_sum,
opentelemetry_host_top99p_sum,
Expand Down
Loading