Skip to content

Commit f42fa25

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
add seconds for start and end for take graph snapshots API description (#1367)
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 f016b6f commit f42fa25

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:22.673897",
8-
"spec_repo_commit": "c9d1fe42"
7+
"regenerated": "2023-03-06 21:58:40.707684",
8+
"spec_repo_commit": "d749ce87"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-03-06 21:45:22.686549",
13-
"spec_repo_commit": "c9d1fe42"
12+
"regenerated": "2023-03-06 21:58:40.720012",
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

src/datadog_api_client/v1/api/snapshots_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ def get_graph_snapshot(
102102
Take graph snapshots.
103103
**Note** : When a snapshot is created, there is some delay before it is available.
104104
105-
:param start: The POSIX timestamp of the start of the query.
105+
:param start: The POSIX timestamp of the start of the query in seconds.
106106
:type start: int
107-
:param end: The POSIX timestamp of the end of the query.
107+
:param end: The POSIX timestamp of the end of the query in seconds.
108108
:type end: int
109109
:param metric_query: The metric query.
110110
:type metric_query: str, optional

0 commit comments

Comments
 (0)