Skip to content

Commit

Permalink
Add documention for OCI Integration (#2188)
Browse files Browse the repository at this point in the history
Co-authored-by: ci.datadog-api-spec <[email protected]>
  • Loading branch information
api-clients-generation-pipeline[bot] and ci.datadog-api-spec authored Oct 1, 2024
1 parent 2b605bc commit 8788659
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 4 deletions.
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-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"
}
}
}
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
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 @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
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 @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
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 @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 8788659

Please sign in to comment.