Skip to content

[aws-ints] Update v2 API spec to reflect ICS default namespaces change #2753

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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": "d02c8a3",
"generated": "2025-08-08 12:07:20.979"
"spec_repo_commit": "3dcb30e",
"generated": "2025-08-08 16:30:47.014"
}
13 changes: 7 additions & 6 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1763,20 +1763,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