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-06-26 17:58:26.884209",
"spec_repo_commit": "bad4ef97"
"regenerated": "2024-06-27 17:06:12.818018",
"spec_repo_commit": "5ebef994"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-06-26 17:58:26.903696",
"spec_repo_commit": "bad4ef97"
"regenerated": "2024-06-27 17:06:12.835182",
"spec_repo_commit": "5ebef994"
}
}
}
531 changes: 442 additions & 89 deletions .generator/schemas/v1/openapi.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,10 @@ pub struct MonthlyUsageAttributionValues {
/// The total RUM Browser and Mobile usage by tag(s).
#[serde(rename = "rum_browser_mobile_sessions_usage")]
pub rum_browser_mobile_sessions_usage: Option<f64>,
/// The percentage of RUM Replay Sessions usage by tag(s).
/// The percentage of RUM Session Replay usage by tag(s).
#[serde(rename = "rum_replay_sessions_percentage")]
pub rum_replay_sessions_percentage: Option<f64>,
/// The total RUM Replay Sessions usage by tag(s).
/// The total RUM Session Replay usage by tag(s).
#[serde(rename = "rum_replay_sessions_usage")]
pub rum_replay_sessions_usage: Option<f64>,
/// The percentage of Sensitive Data Scanner usage by tag(s).
Expand Down
14 changes: 7 additions & 7 deletions src/datadogV1/model/model_usage_rum_sessions_hour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};

/// Number of RUM Sessions recorded for each hour for a given organization.
/// Number of RUM sessions recorded for each hour for a given organization.
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
Expand All @@ -20,38 +20,38 @@ pub struct UsageRumSessionsHour {
/// The organization public ID.
#[serde(rename = "public_id")]
pub public_id: Option<String>,
/// Contains the number of RUM Replay Sessions (data available beginning November 1, 2021).
/// Contains the number of RUM Session Replay counts (data available beginning November 1, 2021).
#[serde(rename = "replay_session_count")]
pub replay_session_count: Option<i64>,
/// Contains the number of browser RUM Lite Sessions.
/// Contains the number of browser RUM lite Sessions.
#[serde(
rename = "session_count",
default,
with = "::serde_with::rust::double_option"
)]
pub session_count: Option<Option<i64>>,
/// Contains the number of mobile RUM Sessions on Android (data available beginning December 1, 2020).
/// Contains the number of mobile RUM sessions on Android (data available beginning December 1, 2020).
#[serde(
rename = "session_count_android",
default,
with = "::serde_with::rust::double_option"
)]
pub session_count_android: Option<Option<i64>>,
/// Contains the number of mobile RUM Sessions on Flutter (data available beginning March 1, 2023).
/// Contains the number of mobile RUM sessions on Flutter (data available beginning March 1, 2023).
#[serde(
rename = "session_count_flutter",
default,
with = "::serde_with::rust::double_option"
)]
pub session_count_flutter: Option<Option<i64>>,
/// Contains the number of mobile RUM Sessions on iOS (data available beginning December 1, 2020).
/// Contains the number of mobile RUM sessions on iOS (data available beginning December 1, 2020).
#[serde(
rename = "session_count_ios",
default,
with = "::serde_with::rust::double_option"
)]
pub session_count_ios: Option<Option<i64>>,
/// Contains the number of mobile RUM Sessions on React Native (data available beginning May 1, 2022).
/// Contains the number of mobile RUM sessions on React Native (data available beginning May 1, 2022).
#[serde(
rename = "session_count_reactnative",
default,
Expand Down
4 changes: 2 additions & 2 deletions src/datadogV1/model/model_usage_rum_sessions_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};

/// Response containing the number of RUM Sessions for each hour for a given organization.
/// Response containing the number of RUM sessions for each hour for a given organization.
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct UsageRumSessionsResponse {
/// Get hourly usage for RUM Sessions.
/// Get hourly usage for RUM sessions.
#[serde(rename = "usage")]
pub usage: Option<Vec<crate::datadogV1::model::UsageRumSessionsHour>>,
#[serde(skip)]
Expand Down
Loading