Skip to content

Commit 6de217b

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
add seconds for start and end for take graph snapshots API description (#1056)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 9ad06e5 commit 6de217b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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": "2023-03-06 21:45:24.920480",
8-
"spec_repo_commit": "c9d1fe42"
7+
"regenerated": "2023-03-06 21:58:34.746320",
8+
"spec_repo_commit": "d749ce87"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-03-06 21:45:24.933171",
13-
"spec_repo_commit": "c9d1fe42"
12+
"regenerated": "2023-03-06 21:58:34.758692",
13+
"spec_repo_commit": "d749ce87"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20761,14 +20761,14 @@ paths:
2076120761
name: metric_query
2076220762
schema:
2076320763
type: string
20764-
- description: The POSIX timestamp of the start of the query.
20764+
- description: The POSIX timestamp of the start of the query in seconds.
2076520765
in: query
2076620766
name: start
2076720767
required: true
2076820768
schema:
2076920769
format: int64
2077020770
type: integer
20771-
- description: The POSIX timestamp of the end of the query.
20771+
- description: The POSIX timestamp of the end of the query in seconds.
2077220772
in: query
2077320773
name: end
2077420774
required: true

packages/datadog-api-client-v1/apis/SnapshotsApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,12 @@ export class SnapshotsApiResponseProcessor {
182182

183183
export interface SnapshotsApiGetGraphSnapshotRequest {
184184
/**
185-
* The POSIX timestamp of the start of the query.
185+
* The POSIX timestamp of the start of the query in seconds.
186186
* @type number
187187
*/
188188
start: number;
189189
/**
190-
* The POSIX timestamp of the end of the query.
190+
* The POSIX timestamp of the end of the query in seconds.
191191
* @type number
192192
*/
193193
end: number;

0 commit comments

Comments
 (0)