Skip to content

Commit 3f2e78c

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Specify date format supported by RUM search filters (#908)
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 e8c8462 commit 3f2e78c

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:42.642223",
8-
"spec_repo_commit": "df75b65d"
7+
"regenerated": "2022-11-15 14:55:26.877566",
8+
"spec_repo_commit": "63774181"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-11-14 21:41:42.653634",
13-
"spec_repo_commit": "df75b65d"
12+
"regenerated": "2022-11-15 14:55:26.894629",
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

packages/datadog-api-client-v2/models/RUMQueryFilter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111
*/
1212
export class RUMQueryFilter {
1313
/**
14-
* The minimum time for the requested events; supports date, math, and regular timestamps (in milliseconds).
14+
* 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).
1515
*/
1616
"from"?: string;
1717
/**
1818
* The search query following the RUM search syntax.
1919
*/
2020
"query"?: string;
2121
/**
22-
* The maximum time for the requested events; supports date, math, and regular timestamps (in milliseconds).
22+
* 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).
2323
*/
2424
"to"?: string;
2525

0 commit comments

Comments
 (0)