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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "55aea96",
"generated": "2025-08-25 15:34:07.121"
"spec_repo_commit": "e22129c",
"generated": "2025-08-25 17:47:43.193"
}
13 changes: 7 additions & 6 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1764,20 +1764,21 @@ components:
- $ref: '#/components/schemas/AWSNamespaceFiltersIncludeOnly'
AWSNamespaceFiltersExcludeOnly:
description: 'Exclude only these namespaces from metrics collection. Defaults
to `["AWS/SQS", "AWS/ElasticMapReduce"]`.
to `["AWS/SQS", "AWS/ElasticMapReduce", "AWS/Usage"]`.

`AWS/SQS` and `AWS/ElasticMapReduce` are excluded by default to reduce your
AWS CloudWatch costs from `GetMetricData` API calls.'
`AWS/SQS`, `AWS/ElasticMapReduce`, and `AWS/Usage` are excluded by default
to reduce your AWS CloudWatch costs from `GetMetricData` API calls.'
properties:
exclude_only:
description: 'Exclude only these namespaces from metrics collection. Defaults
to `["AWS/SQS", "AWS/ElasticMapReduce"]`.
to `["AWS/SQS", "AWS/ElasticMapReduce", "AWS/Usage"]`.

`AWS/SQS` and `AWS/ElasticMapReduce` are excluded by default to reduce
your AWS CloudWatch costs from `GetMetricData` API calls.'
`AWS/SQS`, `AWS/ElasticMapReduce`, and `AWS/Usage` are excluded by default
to reduce your AWS CloudWatch costs from `GetMetricData` API calls.'
example:
- AWS/SQS
- AWS/ElasticMapReduce
- AWS/Usage
items:
example: AWS/SQS
type: string
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v2/model/aws_namespace_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def __init__(self, **kwargs):
"""
AWS Metrics namespace filters. Defaults to ``exclude_only``.

:param exclude_only: Exclude only these namespaces from metrics collection. Defaults to `["AWS/SQS", "AWS/ElasticMapReduce"]`.
`AWS/SQS` and `AWS/ElasticMapReduce` are excluded by default to reduce your AWS CloudWatch costs from `GetMetricData` API calls.
:param exclude_only: Exclude only these namespaces from metrics collection. Defaults to `["AWS/SQS", "AWS/ElasticMapReduce", "AWS/Usage"]`.
`AWS/SQS`, `AWS/ElasticMapReduce`, and `AWS/Usage` are excluded by default to reduce your AWS CloudWatch costs from `GetMetricData` API calls.
:type exclude_only: [str]

:param include_only: Include only these namespaces.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ def openapi_types(_):

def __init__(self_, exclude_only: List[str], **kwargs):
"""
Exclude only these namespaces from metrics collection. Defaults to ``["AWS/SQS", "AWS/ElasticMapReduce"]``.
``AWS/SQS`` and ``AWS/ElasticMapReduce`` are excluded by default to reduce your AWS CloudWatch costs from ``GetMetricData`` API calls.
Exclude only these namespaces from metrics collection. Defaults to ``["AWS/SQS", "AWS/ElasticMapReduce", "AWS/Usage"]``.
``AWS/SQS`` , ``AWS/ElasticMapReduce`` , and ``AWS/Usage`` are excluded by default to reduce your AWS CloudWatch costs from ``GetMetricData`` API calls.

:param exclude_only: Exclude only these namespaces from metrics collection. Defaults to ``["AWS/SQS", "AWS/ElasticMapReduce"]``.
``AWS/SQS`` and ``AWS/ElasticMapReduce`` are excluded by default to reduce your AWS CloudWatch costs from ``GetMetricData`` API calls.
:param exclude_only: Exclude only these namespaces from metrics collection. Defaults to ``["AWS/SQS", "AWS/ElasticMapReduce", "AWS/Usage"]``.
``AWS/SQS`` , ``AWS/ElasticMapReduce`` , and ``AWS/Usage`` are excluded by default to reduce your AWS CloudWatch costs from ``GetMetricData`` API calls.
:type exclude_only: [str]
"""
super().__init__(kwargs)
Expand Down
Loading