diff --git a/.apigentools-info b/.apigentools-info index 24b8316798..885753e21d 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-10-01 16:17:43.524096", - "spec_repo_commit": "65dbf403" + "regenerated": "2024-10-01 19:12:31.304131", + "spec_repo_commit": "34a01c1d" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-10-01 16:17:43.537947", - "spec_repo_commit": "65dbf403" + "regenerated": "2024-10-01 19:12:31.318120", + "spec_repo_commit": "34a01c1d" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 7c9f856b88..3ed2686dde 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -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. @@ -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. @@ -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. 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 d8b21b37e5..3196641b3d 100644 --- a/src/datadog_api_client/v1/model/usage_summary_date.py +++ b/src/datadog_api_client/v1/model/usage_summary_date.py @@ -111,6 +111,8 @@ def openapi_types(_): "netflow_indexed_events_count_sum": (int,), "npm_host_top99p": (int,), "observability_pipelines_bytes_processed_sum": (int,), + "oci_host_sum": (int,), + "oci_host_top99p": (int,), "online_archive_events_count_sum": (int,), "opentelemetry_apm_host_top99p": (int,), "opentelemetry_host_top99p": (int,), @@ -247,6 +249,8 @@ def openapi_types(_): "netflow_indexed_events_count_sum": "netflow_indexed_events_count_sum", "npm_host_top99p": "npm_host_top99p", "observability_pipelines_bytes_processed_sum": "observability_pipelines_bytes_processed_sum", + "oci_host_sum": "oci_host_sum", + "oci_host_top99p": "oci_host_top99p", "online_archive_events_count_sum": "online_archive_events_count_sum", "opentelemetry_apm_host_top99p": "opentelemetry_apm_host_top99p", "opentelemetry_host_top99p": "opentelemetry_host_top99p", @@ -384,6 +388,8 @@ def __init__( netflow_indexed_events_count_sum: Union[int, UnsetType] = unset, npm_host_top99p: Union[int, UnsetType] = unset, observability_pipelines_bytes_processed_sum: Union[int, UnsetType] = unset, + oci_host_sum: Union[int, UnsetType] = unset, + oci_host_top99p: Union[int, UnsetType] = unset, online_archive_events_count_sum: Union[int, UnsetType] = unset, opentelemetry_apm_host_top99p: Union[int, UnsetType] = unset, opentelemetry_host_top99p: Union[int, UnsetType] = unset, @@ -696,6 +702,12 @@ def __init__( :param observability_pipelines_bytes_processed_sum: Sum of all observability pipelines bytes processed over all hours in the current date for the given org. :type observability_pipelines_bytes_processed_sum: int, optional + :param oci_host_sum: Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + :type oci_host_sum: int, optional + + :param oci_host_top99p: Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + :type oci_host_top99p: int, optional + :param online_archive_events_count_sum: Sum of all online archived events over all hours in the current date for all organizations. :type online_archive_events_count_sum: int, optional @@ -1012,6 +1024,10 @@ def __init__( kwargs["npm_host_top99p"] = npm_host_top99p if observability_pipelines_bytes_processed_sum is not unset: kwargs["observability_pipelines_bytes_processed_sum"] = observability_pipelines_bytes_processed_sum + if oci_host_sum is not unset: + kwargs["oci_host_sum"] = oci_host_sum + if oci_host_top99p is not unset: + kwargs["oci_host_top99p"] = oci_host_top99p if online_archive_events_count_sum is not unset: kwargs["online_archive_events_count_sum"] = online_archive_events_count_sum if opentelemetry_apm_host_top99p 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 c1ffcc9ed2..4cd6fa272d 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 @@ -109,6 +109,8 @@ def openapi_types(_): "netflow_indexed_events_count_sum": (int,), "npm_host_top99p": (int,), "observability_pipelines_bytes_processed_sum": (int,), + "oci_host_sum": (int,), + "oci_host_top99p": (int,), "online_archive_events_count_sum": (int,), "opentelemetry_apm_host_top99p": (int,), "opentelemetry_host_top99p": (int,), @@ -251,6 +253,8 @@ def openapi_types(_): "netflow_indexed_events_count_sum": "netflow_indexed_events_count_sum", "npm_host_top99p": "npm_host_top99p", "observability_pipelines_bytes_processed_sum": "observability_pipelines_bytes_processed_sum", + "oci_host_sum": "oci_host_sum", + "oci_host_top99p": "oci_host_top99p", "online_archive_events_count_sum": "online_archive_events_count_sum", "opentelemetry_apm_host_top99p": "opentelemetry_apm_host_top99p", "opentelemetry_host_top99p": "opentelemetry_host_top99p", @@ -394,6 +398,8 @@ def __init__( netflow_indexed_events_count_sum: Union[int, UnsetType] = unset, npm_host_top99p: Union[int, UnsetType] = unset, observability_pipelines_bytes_processed_sum: Union[int, UnsetType] = unset, + oci_host_sum: Union[int, UnsetType] = unset, + oci_host_top99p: Union[int, UnsetType] = unset, online_archive_events_count_sum: Union[int, UnsetType] = unset, opentelemetry_apm_host_top99p: Union[int, UnsetType] = unset, opentelemetry_host_top99p: Union[int, UnsetType] = unset, @@ -722,6 +728,12 @@ def __init__( :param observability_pipelines_bytes_processed_sum: Sum of all observability pipelines bytes processed over all hours in the current date for the given org. :type observability_pipelines_bytes_processed_sum: int, optional + :param oci_host_sum: Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + :type oci_host_sum: int, optional + + :param oci_host_top99p: Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + :type oci_host_top99p: int, optional + :param online_archive_events_count_sum: Sum of all online archived events over all hours in the current date for the given org. :type online_archive_events_count_sum: int, optional @@ -1051,6 +1063,10 @@ def __init__( kwargs["npm_host_top99p"] = npm_host_top99p if observability_pipelines_bytes_processed_sum is not unset: kwargs["observability_pipelines_bytes_processed_sum"] = observability_pipelines_bytes_processed_sum + if oci_host_sum is not unset: + kwargs["oci_host_sum"] = oci_host_sum + if oci_host_top99p is not unset: + kwargs["oci_host_top99p"] = oci_host_top99p if online_archive_events_count_sum is not unset: kwargs["online_archive_events_count_sum"] = online_archive_events_count_sum if opentelemetry_apm_host_top99p 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 0942a03a89..aa2a4005da 100644 --- a/src/datadog_api_client/v1/model/usage_summary_response.py +++ b/src/datadog_api_client/v1/model/usage_summary_response.py @@ -120,6 +120,8 @@ def openapi_types(_): "netflow_indexed_events_count_agg_sum": (int,), "npm_host_top99p_sum": (int,), "observability_pipelines_bytes_processed_agg_sum": (int,), + "oci_host_agg_sum": (int,), + "oci_host_top99p_sum": (int,), "online_archive_events_count_agg_sum": (int,), "opentelemetry_apm_host_top99p_sum": (int,), "opentelemetry_host_top99p_sum": (int,), @@ -267,6 +269,8 @@ def openapi_types(_): "netflow_indexed_events_count_agg_sum": "netflow_indexed_events_count_agg_sum", "npm_host_top99p_sum": "npm_host_top99p_sum", "observability_pipelines_bytes_processed_agg_sum": "observability_pipelines_bytes_processed_agg_sum", + "oci_host_agg_sum": "oci_host_agg_sum", + "oci_host_top99p_sum": "oci_host_top99p_sum", "online_archive_events_count_agg_sum": "online_archive_events_count_agg_sum", "opentelemetry_apm_host_top99p_sum": "opentelemetry_apm_host_top99p_sum", "opentelemetry_host_top99p_sum": "opentelemetry_host_top99p_sum", @@ -415,6 +419,8 @@ def __init__( netflow_indexed_events_count_agg_sum: Union[int, UnsetType] = unset, npm_host_top99p_sum: Union[int, UnsetType] = unset, observability_pipelines_bytes_processed_agg_sum: Union[int, UnsetType] = unset, + oci_host_agg_sum: Union[int, UnsetType] = unset, + oci_host_top99p_sum: Union[int, UnsetType] = unset, online_archive_events_count_agg_sum: Union[int, UnsetType] = unset, opentelemetry_apm_host_top99p_sum: Union[int, UnsetType] = unset, opentelemetry_host_top99p_sum: Union[int, UnsetType] = unset, @@ -752,6 +758,12 @@ def __init__( :param observability_pipelines_bytes_processed_agg_sum: Sum of all observability pipelines bytes processed over all hours in the current month for all organizations. :type observability_pipelines_bytes_processed_agg_sum: int, optional + :param oci_host_agg_sum: Shows the sum of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations + :type oci_host_agg_sum: int, optional + + :param oci_host_top99p_sum: Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations + :type oci_host_top99p_sum: int, optional + :param online_archive_events_count_agg_sum: Sum of all online archived events over all hours in the current month for all organizations. :type online_archive_events_count_agg_sum: int, optional @@ -1098,6 +1110,10 @@ def __init__( kwargs["npm_host_top99p_sum"] = npm_host_top99p_sum if observability_pipelines_bytes_processed_agg_sum is not unset: kwargs["observability_pipelines_bytes_processed_agg_sum"] = observability_pipelines_bytes_processed_agg_sum + if oci_host_agg_sum is not unset: + kwargs["oci_host_agg_sum"] = oci_host_agg_sum + if oci_host_top99p_sum is not unset: + kwargs["oci_host_top99p_sum"] = oci_host_top99p_sum if online_archive_events_count_agg_sum is not unset: kwargs["online_archive_events_count_agg_sum"] = online_archive_events_count_agg_sum if opentelemetry_apm_host_top99p_sum is not unset: