Skip to content

Update docs for RU Rollout New and Deprecated Keys planned for Oct 1st #2020

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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:29.227031",
"spec_repo_commit": "bad4ef97"
"regenerated": "2024-06-27 17:06:08.975577",
"spec_repo_commit": "5ebef994"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-06-26 17:58:29.244148",
"spec_repo_commit": "bad4ef97"
"regenerated": "2024-06-27 17:06:08.992296",
"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 @@ -785,10 +785,10 @@ def __init__(
:param rum_browser_mobile_sessions_usage: The total RUM Browser and Mobile usage by tag(s).
:type rum_browser_mobile_sessions_usage: float, optional

:param rum_replay_sessions_percentage: The percentage of RUM Replay Sessions usage by tag(s).
:param rum_replay_sessions_percentage: The percentage of RUM Session Replay usage by tag(s).
:type rum_replay_sessions_percentage: float, optional

:param rum_replay_sessions_usage: The total RUM Replay Sessions usage by tag(s).
:param rum_replay_sessions_usage: The total RUM Session Replay usage by tag(s).
:type rum_replay_sessions_usage: float, optional

:param sds_scanned_bytes_percentage: The percentage of Sensitive Data Scanner usage by tag(s).
Expand Down
14 changes: 7 additions & 7 deletions src/datadog_api_client/v1/model/usage_rum_sessions_hour.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(
**kwargs,
):
"""
Number of RUM Sessions recorded for each hour for a given organization.
Number of RUM sessions recorded for each hour for a given organization.

:param hour: The hour for the usage.
:type hour: datetime, optional
Expand All @@ -67,22 +67,22 @@ def __init__(
:param public_id: The organization public ID.
:type public_id: str, optional

:param replay_session_count: Contains the number of RUM Replay Sessions (data available beginning November 1, 2021).
:param replay_session_count: Contains the number of RUM Session Replay counts (data available beginning November 1, 2021).
:type replay_session_count: int, optional

:param session_count: Contains the number of browser RUM Lite Sessions.
:param session_count: Contains the number of browser RUM lite Sessions.
:type session_count: int, none_type, optional

:param session_count_android: Contains the number of mobile RUM Sessions on Android (data available beginning December 1, 2020).
:param session_count_android: Contains the number of mobile RUM sessions on Android (data available beginning December 1, 2020).
:type session_count_android: int, none_type, optional

:param session_count_flutter: Contains the number of mobile RUM Sessions on Flutter (data available beginning March 1, 2023).
:param session_count_flutter: Contains the number of mobile RUM sessions on Flutter (data available beginning March 1, 2023).
:type session_count_flutter: int, none_type, optional

:param session_count_ios: Contains the number of mobile RUM Sessions on iOS (data available beginning December 1, 2020).
:param session_count_ios: Contains the number of mobile RUM sessions on iOS (data available beginning December 1, 2020).
:type session_count_ios: int, none_type, optional

:param session_count_reactnative: Contains the number of mobile RUM Sessions on React Native (data available beginning May 1, 2022).
:param session_count_reactnative: Contains the number of mobile RUM sessions on React Native (data available beginning May 1, 2022).
:type session_count_reactnative: int, none_type, optional
"""
if hour is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def openapi_types(_):

def __init__(self_, usage: Union[List[UsageRumSessionsHour], UnsetType] = unset, **kwargs):
"""
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.

:param usage: Get hourly usage for RUM Sessions.
:param usage: Get hourly usage for RUM sessions.
:type usage: [UsageRumSessionsHour], optional
"""
if usage is not unset:
Expand Down
154 changes: 137 additions & 17 deletions src/datadog_api_client/v1/model/usage_summary_date.py

Large diffs are not rendered by default.

156 changes: 138 additions & 18 deletions src/datadog_api_client/v1/model/usage_summary_date_org.py

Large diffs are not rendered by default.

164 changes: 144 additions & 20 deletions src/datadog_api_client/v1/model/usage_summary_response.py

Large diffs are not rendered by default.

Loading