Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.4",
"regenerated": "2023-03-06 21:45:24.920480",
"spec_repo_commit": "c9d1fe42"
"regenerated": "2023-03-06 21:58:34.746320",
"spec_repo_commit": "d749ce87"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-03-06 21:45:24.933171",
"spec_repo_commit": "c9d1fe42"
"regenerated": "2023-03-06 21:58:34.758692",
"spec_repo_commit": "d749ce87"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20761,14 +20761,14 @@ paths:
name: metric_query
schema:
type: string
- description: The POSIX timestamp of the start of the query.
- description: The POSIX timestamp of the start of the query in seconds.
in: query
name: start
required: true
schema:
format: int64
type: integer
- description: The POSIX timestamp of the end of the query.
- description: The POSIX timestamp of the end of the query in seconds.
in: query
name: end
required: true
Expand Down
4 changes: 2 additions & 2 deletions packages/datadog-api-client-v1/apis/SnapshotsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ export class SnapshotsApiResponseProcessor {

export interface SnapshotsApiGetGraphSnapshotRequest {
/**
* The POSIX timestamp of the start of the query.
* The POSIX timestamp of the start of the query in seconds.
* @type number
*/
start: number;
/**
* The POSIX timestamp of the end of the query.
* The POSIX timestamp of the end of the query in seconds.
* @type number
*/
end: number;
Expand Down