Skip to content

Commit ce30a40

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Specify date format supported by RUM search filters (#1234)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 2d9b54b commit ce30a40

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.4",
7-
"regenerated": "2022-11-14 21:41:46.426303",
8-
"spec_repo_commit": "df75b65d"
7+
"regenerated": "2022-11-15 14:55:26.354217",
8+
"spec_repo_commit": "63774181"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-11-14 21:41:46.440042",
13-
"spec_repo_commit": "df75b65d"
12+
"regenerated": "2022-11-15 14:55:26.366493",
13+
"spec_repo_commit": "63774181"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7250,8 +7250,10 @@ components:
72507250
properties:
72517251
from:
72527252
default: now-15m
7253-
description: The minimum time for the requested events; supports date, math,
7254-
and regular timestamps (in milliseconds).
7253+
description: The minimum time for the requested events; supports date (in
7254+
[ISO 8601](https://www.w3.org/TR/NOTE-datetime) format with full date,
7255+
hours, minutes, and the `Z` UTC indicator - seconds and fractional seconds
7256+
are optional), math, and regular timestamps (in milliseconds).
72557257
example: now-15m
72567258
type: string
72577259
query:
@@ -7261,8 +7263,10 @@ components:
72617263
type: string
72627264
to:
72637265
default: now
7264-
description: The maximum time for the requested events; supports date, math,
7265-
and regular timestamps (in milliseconds).
7266+
description: The maximum time for the requested events; supports date (in
7267+
[ISO 8601](https://www.w3.org/TR/NOTE-datetime) format with full date,
7268+
hours, minutes, and the `Z` UTC indicator - seconds and fractional seconds
7269+
are optional), math, and regular timestamps (in milliseconds).
72667270
example: now
72677271
type: string
72687272
type: object

src/datadog_api_client/v2/model/rum_query_filter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ def __init__(
3838
"""
3939
The search and filter query settings.
4040
41-
:param _from: The minimum time for the requested events; supports date, math, and regular timestamps (in milliseconds).
41+
:param _from: The minimum time for the requested events; supports date (in `ISO 8601 <https://www.w3.org/TR/NOTE-datetime>`_ format with full date, hours, minutes, and the ``Z`` UTC indicator - seconds and fractional seconds are optional), math, and regular timestamps (in milliseconds).
4242
:type _from: str, optional
4343
4444
:param query: The search query following the RUM search syntax.
4545
:type query: str, optional
4646
47-
:param to: The maximum time for the requested events; supports date, math, and regular timestamps (in milliseconds).
47+
:param to: The maximum time for the requested events; supports date (in `ISO 8601 <https://www.w3.org/TR/NOTE-datetime>`_ format with full date, hours, minutes, and the ``Z`` UTC indicator - seconds and fractional seconds are optional), math, and regular timestamps (in milliseconds).
4848
:type to: str, optional
4949
"""
5050
if _from is not unset:

0 commit comments

Comments
 (0)