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
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
16 changes: 16 additions & 0 deletions src/datadog_api_client/v1/model/usage_summary_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down
16 changes: 16 additions & 0 deletions src/datadog_api_client/v1/model/usage_summary_date_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down
16 changes: 16 additions & 0 deletions src/datadog_api_client/v1/model/usage_summary_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down