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.6",
"regenerated": "2024-09-25 18:39:40.361154",
"spec_repo_commit": "1fa8186c"
"regenerated": "2024-09-26 19:34:40.400740",
"spec_repo_commit": "83debf9e"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-25 18:39:40.375874",
"spec_repo_commit": "1fa8186c"
"regenerated": "2024-09-26 19:34:40.414847",
"spec_repo_commit": "83debf9e"
}
}
}
5 changes: 2 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32775,8 +32775,7 @@ paths:
schema:
type: string
- description: The number of hours of look back (from now) to estimate cardinality
with. Estimates are based on historical data, and unspecified fields default
to the minimum 49 hours.
with. If unspecified, it defaults to 0 hours.
example: 49
in: query
name: filter[hours_ago]
Expand Down Expand Up @@ -32805,7 +32804,7 @@ paths:
schema:
type: boolean
- description: A window, in hours, from the look back to estimate cardinality
with.
with. The minimum and default is 1 hour.
example: 6
in: query
name: filter[timespan_h]
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/com/datadog/api/client/v2/api/MetricsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -683,8 +683,7 @@ public EstimateMetricsOutputSeriesOptionalParameters filterGroups(String filterG
* Set filterHoursAgo.
*
* @param filterHoursAgo The number of hours of look back (from now) to estimate cardinality
* with. Estimates are based on historical data, and unspecified fields default to the
* minimum 49 hours. (optional)
* with. If unspecified, it defaults to 0 hours. (optional)
* @return EstimateMetricsOutputSeriesOptionalParameters
*/
public EstimateMetricsOutputSeriesOptionalParameters filterHoursAgo(Integer filterHoursAgo) {
Expand Down Expand Up @@ -722,7 +721,7 @@ public EstimateMetricsOutputSeriesOptionalParameters filterPct(Boolean filterPct
* Set filterTimespanH.
*
* @param filterTimespanH A window, in hours, from the look back to estimate cardinality with.
* (optional)
* The minimum and default is 1 hour. (optional)
* @return EstimateMetricsOutputSeriesOptionalParameters
*/
public EstimateMetricsOutputSeriesOptionalParameters filterTimespanH(Integer filterTimespanH) {
Expand Down