Skip to content
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

Deprecate options from logs aggregate API public spec #2476

Merged
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
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": "2025-03-28 15:07:46.000209",
"spec_repo_commit": "3f3e8eaf"
"regenerated": "2025-03-28 19:43:01.676721",
"spec_repo_commit": "1d2132af"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-28 15:07:46.022107",
"spec_repo_commit": "3f3e8eaf"
"regenerated": "2025-03-28 19:43:01.699661",
"spec_repo_commit": "1d2132af"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19109,10 +19109,10 @@ components:
type: string
type: object
LogsQueryOptions:
deprecated: true
description: 'Global query options that are used during the query.

Note: you should supply either timezone or time offset, but not both. Otherwise,
the query will fail.'
Note: These fields are currently deprecated and do not affect the query results.'
properties:
timeOffset:
description: The time offset (in seconds) to apply to the query.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
:type group_by: [LogsGroupBy], optional

:param options: Global query options that are used during the query.
Note: you should supply either timezone or time offset, but not both. Otherwise, the query will fail.
Note: These fields are currently deprecated and do not affect the query results. **Deprecated**.
:type options: LogsQueryOptions, optional

:param page: Paging settings
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v2/model/logs_list_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(
:type filter: LogsQueryFilter, optional

:param options: Global query options that are used during the query.
Note: you should supply either timezone or time offset, but not both. Otherwise, the query will fail.
Note: These fields are currently deprecated and do not affect the query results. **Deprecated**.
:type options: LogsQueryOptions, optional

:param page: Paging attributes for listing logs.
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v2/model/logs_query_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def openapi_types(_):
def __init__(self_, time_offset: Union[int, UnsetType] = unset, timezone: Union[str, UnsetType] = unset, **kwargs):
"""
Global query options that are used during the query.
Note: you should supply either timezone or time offset, but not both. Otherwise, the query will fail.
Note: These fields are currently deprecated and do not affect the query results.

:param time_offset: The time offset (in seconds) to apply to the query.
:type time_offset: int, optional
Expand Down