From 5d11de0faff2746f97d61f4cc842cd4ba5e4a1ff Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 27 Jan 2026 18:56:03 +0000 Subject: [PATCH] Regenerate client from commit 56f2c5a of spec repo --- .generator/schemas/v1/openapi.yaml | 30 +++++++++++++++++++ .../v1/model/usage_summary_date.py | 16 ++++++++++ .../v1/model/usage_summary_date_org.py | 16 ++++++++++ .../v1/model/usage_summary_response.py | 16 ++++++++++ 4 files changed, 78 insertions(+) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 6f50d6f09d..a38d274f9b 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -21397,6 +21397,16 @@ components: current date for all organizations (To be deprecated on October 1st, 2024). format: int64 type: integer + ccm_spend_monitored_ent_last: + description: Shows the last value of the amount of cloud spend monitored + for Enterprise over all hours in the current date for all organizations. + format: int64 + type: integer + ccm_spend_monitored_pro_last: + description: Shows the last value of the amount of cloud spend monitored + for Pro over all hours in the current date for all organizations. + format: int64 + type: integer ci_pipeline_indexed_spans_sum: description: Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations. @@ -22529,6 +22539,16 @@ components: current date for the given org (To be deprecated on October 1st, 2024). format: int64 type: integer + ccm_spend_monitored_ent_last: + description: Shows the last value of the amount of cloud spend monitored + for Enterprise over all hours in the current date for the given org. + format: int64 + type: integer + ccm_spend_monitored_pro_last: + description: Shows the last value of the amount of cloud spend monitored + for Pro over all hours in the current date for the given org. + format: int64 + type: integer ci_pipeline_indexed_spans_sum: description: Shows the sum of all CI pipeline indexed spans over all hours in the current date for the given org. @@ -23673,6 +23693,16 @@ components: 2024). format: int64 type: integer + ccm_spend_monitored_ent_last_sum: + description: Shows the sum of the last value of the amount of cloud spend + monitored for Enterprise in the current month for all organizations. + format: int64 + type: integer + ccm_spend_monitored_pro_last_sum: + description: Shows the sum of the last value of the amount of cloud spend + monitored for Pro in the current month for all organizations. + format: int64 + type: integer ci_pipeline_indexed_spans_agg_sum: description: Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations. diff --git a/src/datadog_api_client/v1/model/usage_summary_date.py b/src/datadog_api_client/v1/model/usage_summary_date.py index 842eee6c3c..71ee325abf 100644 --- a/src/datadog_api_client/v1/model/usage_summary_date.py +++ b/src/datadog_api_client/v1/model/usage_summary_date.py @@ -45,6 +45,8 @@ def openapi_types(_): "browser_rum_lite_session_count_sum": (int,), "browser_rum_replay_session_count_sum": (int,), "browser_rum_units_sum": (int,), + "ccm_spend_monitored_ent_last": (int,), + "ccm_spend_monitored_pro_last": (int,), "ci_pipeline_indexed_spans_sum": (int,), "ci_test_indexed_spans_sum": (int,), "ci_visibility_itr_committers_hwm": (int,), @@ -258,6 +260,8 @@ def openapi_types(_): "browser_rum_lite_session_count_sum": "browser_rum_lite_session_count_sum", "browser_rum_replay_session_count_sum": "browser_rum_replay_session_count_sum", "browser_rum_units_sum": "browser_rum_units_sum", + "ccm_spend_monitored_ent_last": "ccm_spend_monitored_ent_last", + "ccm_spend_monitored_pro_last": "ccm_spend_monitored_pro_last", "ci_pipeline_indexed_spans_sum": "ci_pipeline_indexed_spans_sum", "ci_test_indexed_spans_sum": "ci_test_indexed_spans_sum", "ci_visibility_itr_committers_hwm": "ci_visibility_itr_committers_hwm", @@ -472,6 +476,8 @@ def __init__( browser_rum_lite_session_count_sum: Union[int, UnsetType] = unset, browser_rum_replay_session_count_sum: Union[int, UnsetType] = unset, browser_rum_units_sum: Union[int, UnsetType] = unset, + ccm_spend_monitored_ent_last: Union[int, UnsetType] = unset, + ccm_spend_monitored_pro_last: Union[int, UnsetType] = unset, ci_pipeline_indexed_spans_sum: Union[int, UnsetType] = unset, ci_test_indexed_spans_sum: Union[int, UnsetType] = unset, ci_visibility_itr_committers_hwm: Union[int, UnsetType] = unset, @@ -729,6 +735,12 @@ def __init__( :param browser_rum_units_sum: Shows the sum of all browser RUM units over all hours in the current date for all organizations (To be deprecated on October 1st, 2024). **Deprecated**. :type browser_rum_units_sum: int, optional + :param ccm_spend_monitored_ent_last: Shows the last value of the amount of cloud spend monitored for Enterprise over all hours in the current date for all organizations. + :type ccm_spend_monitored_ent_last: int, optional + + :param ccm_spend_monitored_pro_last: Shows the last value of the amount of cloud spend monitored for Pro over all hours in the current date for all organizations. + :type ccm_spend_monitored_pro_last: int, optional + :param ci_pipeline_indexed_spans_sum: Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations. :type ci_pipeline_indexed_spans_sum: int, optional @@ -1338,6 +1350,10 @@ def __init__( kwargs["browser_rum_replay_session_count_sum"] = browser_rum_replay_session_count_sum if browser_rum_units_sum is not unset: kwargs["browser_rum_units_sum"] = browser_rum_units_sum + if ccm_spend_monitored_ent_last is not unset: + kwargs["ccm_spend_monitored_ent_last"] = ccm_spend_monitored_ent_last + if ccm_spend_monitored_pro_last is not unset: + kwargs["ccm_spend_monitored_pro_last"] = ccm_spend_monitored_pro_last if ci_pipeline_indexed_spans_sum is not unset: kwargs["ci_pipeline_indexed_spans_sum"] = ci_pipeline_indexed_spans_sum if ci_test_indexed_spans_sum is not unset: diff --git a/src/datadog_api_client/v1/model/usage_summary_date_org.py b/src/datadog_api_client/v1/model/usage_summary_date_org.py index 3b205d7dd4..436add0a41 100644 --- a/src/datadog_api_client/v1/model/usage_summary_date_org.py +++ b/src/datadog_api_client/v1/model/usage_summary_date_org.py @@ -40,6 +40,8 @@ def openapi_types(_): "browser_rum_lite_session_count_sum": (int,), "browser_rum_replay_session_count_sum": (int,), "browser_rum_units_sum": (int,), + "ccm_spend_monitored_ent_last": (int,), + "ccm_spend_monitored_pro_last": (int,), "ci_pipeline_indexed_spans_sum": (int,), "ci_test_indexed_spans_sum": (int,), "ci_visibility_itr_committers_hwm": (int,), @@ -259,6 +261,8 @@ def openapi_types(_): "browser_rum_lite_session_count_sum": "browser_rum_lite_session_count_sum", "browser_rum_replay_session_count_sum": "browser_rum_replay_session_count_sum", "browser_rum_units_sum": "browser_rum_units_sum", + "ccm_spend_monitored_ent_last": "ccm_spend_monitored_ent_last", + "ccm_spend_monitored_pro_last": "ccm_spend_monitored_pro_last", "ci_pipeline_indexed_spans_sum": "ci_pipeline_indexed_spans_sum", "ci_test_indexed_spans_sum": "ci_test_indexed_spans_sum", "ci_visibility_itr_committers_hwm": "ci_visibility_itr_committers_hwm", @@ -479,6 +483,8 @@ def __init__( browser_rum_lite_session_count_sum: Union[int, UnsetType] = unset, browser_rum_replay_session_count_sum: Union[int, UnsetType] = unset, browser_rum_units_sum: Union[int, UnsetType] = unset, + ccm_spend_monitored_ent_last: Union[int, UnsetType] = unset, + ccm_spend_monitored_pro_last: Union[int, UnsetType] = unset, ci_pipeline_indexed_spans_sum: Union[int, UnsetType] = unset, ci_test_indexed_spans_sum: Union[int, UnsetType] = unset, ci_visibility_itr_committers_hwm: Union[int, UnsetType] = unset, @@ -746,6 +752,12 @@ def __init__( :param browser_rum_units_sum: Shows the sum of all browser RUM units over all hours in the current date for the given org (To be deprecated on October 1st, 2024). **Deprecated**. :type browser_rum_units_sum: int, optional + :param ccm_spend_monitored_ent_last: Shows the last value of the amount of cloud spend monitored for Enterprise over all hours in the current date for the given org. + :type ccm_spend_monitored_ent_last: int, optional + + :param ccm_spend_monitored_pro_last: Shows the last value of the amount of cloud spend monitored for Pro over all hours in the current date for the given org. + :type ccm_spend_monitored_pro_last: int, optional + :param ci_pipeline_indexed_spans_sum: Shows the sum of all CI pipeline indexed spans over all hours in the current date for the given org. :type ci_pipeline_indexed_spans_sum: int, optional @@ -1371,6 +1383,10 @@ def __init__( kwargs["browser_rum_replay_session_count_sum"] = browser_rum_replay_session_count_sum if browser_rum_units_sum is not unset: kwargs["browser_rum_units_sum"] = browser_rum_units_sum + if ccm_spend_monitored_ent_last is not unset: + kwargs["ccm_spend_monitored_ent_last"] = ccm_spend_monitored_ent_last + if ccm_spend_monitored_pro_last is not unset: + kwargs["ccm_spend_monitored_pro_last"] = ccm_spend_monitored_pro_last if ci_pipeline_indexed_spans_sum is not unset: kwargs["ci_pipeline_indexed_spans_sum"] = ci_pipeline_indexed_spans_sum if ci_test_indexed_spans_sum is not unset: diff --git a/src/datadog_api_client/v1/model/usage_summary_response.py b/src/datadog_api_client/v1/model/usage_summary_response.py index e0049a3fb6..13e507ac97 100644 --- a/src/datadog_api_client/v1/model/usage_summary_response.py +++ b/src/datadog_api_client/v1/model/usage_summary_response.py @@ -48,6 +48,8 @@ def openapi_types(_): "browser_rum_lite_session_count_agg_sum": (int,), "browser_rum_replay_session_count_agg_sum": (int,), "browser_rum_units_agg_sum": (int,), + "ccm_spend_monitored_ent_last_sum": (int,), + "ccm_spend_monitored_pro_last_sum": (int,), "ci_pipeline_indexed_spans_agg_sum": (int,), "ci_test_indexed_spans_agg_sum": (int,), "ci_visibility_itr_committers_hwm_sum": (int,), @@ -272,6 +274,8 @@ def openapi_types(_): "browser_rum_lite_session_count_agg_sum": "browser_rum_lite_session_count_agg_sum", "browser_rum_replay_session_count_agg_sum": "browser_rum_replay_session_count_agg_sum", "browser_rum_units_agg_sum": "browser_rum_units_agg_sum", + "ccm_spend_monitored_ent_last_sum": "ccm_spend_monitored_ent_last_sum", + "ccm_spend_monitored_pro_last_sum": "ccm_spend_monitored_pro_last_sum", "ci_pipeline_indexed_spans_agg_sum": "ci_pipeline_indexed_spans_agg_sum", "ci_test_indexed_spans_agg_sum": "ci_test_indexed_spans_agg_sum", "ci_visibility_itr_committers_hwm_sum": "ci_visibility_itr_committers_hwm_sum", @@ -497,6 +501,8 @@ def __init__( browser_rum_lite_session_count_agg_sum: Union[int, UnsetType] = unset, browser_rum_replay_session_count_agg_sum: Union[int, UnsetType] = unset, browser_rum_units_agg_sum: Union[int, UnsetType] = unset, + ccm_spend_monitored_ent_last_sum: Union[int, UnsetType] = unset, + ccm_spend_monitored_pro_last_sum: Union[int, UnsetType] = unset, ci_pipeline_indexed_spans_agg_sum: Union[int, UnsetType] = unset, ci_test_indexed_spans_agg_sum: Union[int, UnsetType] = unset, ci_visibility_itr_committers_hwm_sum: Union[int, UnsetType] = unset, @@ -767,6 +773,12 @@ def __init__( :param browser_rum_units_agg_sum: Shows the sum of all browser RUM units over all hours in the current month for all organizations (To be deprecated on October 1st, 2024). **Deprecated**. :type browser_rum_units_agg_sum: int, optional + :param ccm_spend_monitored_ent_last_sum: Shows the sum of the last value of the amount of cloud spend monitored for Enterprise in the current month for all organizations. + :type ccm_spend_monitored_ent_last_sum: int, optional + + :param ccm_spend_monitored_pro_last_sum: Shows the sum of the last value of the amount of cloud spend monitored for Pro in the current month for all organizations. + :type ccm_spend_monitored_pro_last_sum: int, optional + :param ci_pipeline_indexed_spans_agg_sum: Shows the sum of all CI pipeline indexed spans over all hours in the current month for all organizations. :type ci_pipeline_indexed_spans_agg_sum: int, optional @@ -1408,6 +1420,10 @@ def __init__( kwargs["browser_rum_replay_session_count_agg_sum"] = browser_rum_replay_session_count_agg_sum if browser_rum_units_agg_sum is not unset: kwargs["browser_rum_units_agg_sum"] = browser_rum_units_agg_sum + if ccm_spend_monitored_ent_last_sum is not unset: + kwargs["ccm_spend_monitored_ent_last_sum"] = ccm_spend_monitored_ent_last_sum + if ccm_spend_monitored_pro_last_sum is not unset: + kwargs["ccm_spend_monitored_pro_last_sum"] = ccm_spend_monitored_pro_last_sum if ci_pipeline_indexed_spans_agg_sum is not unset: kwargs["ci_pipeline_indexed_spans_agg_sum"] = ci_pipeline_indexed_spans_agg_sum if ci_test_indexed_spans_agg_sum is not unset: