Skip to content

Commit 0992188

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Specify date format supported by RUM search filters (#1559)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent fb90fcd commit 0992188

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
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:41.809436",
8-
"spec_repo_commit": "df75b65d"
7+
"regenerated": "2022-11-15 14:55:26.120613",
8+
"spec_repo_commit": "63774181"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-11-14 21:41:41.821003",
13-
"spec_repo_commit": "df75b65d"
12+
"regenerated": "2022-11-15 14:55:26.135689",
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/main/java/com/datadog/api/client/v2/model/RUMQueryFilter.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ public RUMQueryFilter from(String from) {
3737
}
3838

3939
/**
40-
* The minimum time for the requested events; supports date, math, and regular timestamps (in
41-
* milliseconds).
40+
* The minimum time for the requested events; supports date (in <a
41+
* href="https://www.w3.org/TR/NOTE-datetime">ISO 8601</a> format with full date, hours, minutes,
42+
* and the <code>Z</code> UTC indicator - seconds and fractional seconds are optional), math, and
43+
* regular timestamps (in milliseconds).
4244
*
4345
* @return from
4446
*/
@@ -80,8 +82,10 @@ public RUMQueryFilter to(String to) {
8082
}
8183

8284
/**
83-
* The maximum time for the requested events; supports date, math, and regular timestamps (in
84-
* milliseconds).
85+
* The maximum time for the requested events; supports date (in <a
86+
* href="https://www.w3.org/TR/NOTE-datetime">ISO 8601</a> format with full date, hours, minutes,
87+
* and the <code>Z</code> UTC indicator - seconds and fractional seconds are optional), math, and
88+
* regular timestamps (in milliseconds).
8589
*
8690
* @return to
8791
*/

0 commit comments

Comments
 (0)