Skip to content

Commit

Permalink
Regenerate client from commit afd4e5e0 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Feb 20, 2024
1 parent 4aea472 commit 7dc692f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
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-02-20 12:21:47.886534",
"spec_repo_commit": "7e467650"
"regenerated": "2024-02-20 14:57:22.779776",
"spec_repo_commit": "afd4e5e0"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-02-20 12:21:47.901998",
"spec_repo_commit": "7e467650"
"regenerated": "2024-02-20 14:57:22.794304",
"spec_repo_commit": "afd4e5e0"
}
}
}
4 changes: 3 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28095,14 +28095,16 @@ paths:
schema:
type: string
- description: The number of hours of look back (from now) to estimate cardinality
with.
with. Estimates are based on historical data, and unspecified fields default
to the minimum 49 hours.
example: 49
in: query
name: filter[hours_ago]
required: false
schema:
format: int32
maximum: 2147483647
minimum: 49
type: integer
- description: The number of aggregations that a `count`, `rate`, or `gauge`
metric is configured to use. Max number of aggregation combos is 9.
Expand Down
3 changes: 2 additions & 1 deletion src/datadog_api_client/v2/api/metrics_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ def __init__(self, api_client=None):
"filter_hours_ago": {
"validation": {
"inclusive_maximum": 2147483647,
"inclusive_minimum": 49,
},
"openapi_types": (int,),
"attribute": "filter[hours_ago]",
Expand Down Expand Up @@ -546,7 +547,7 @@ def estimate_metrics_output_series(
:type metric_name: str
:param filter_groups: Filtered tag keys that the metric is configured to query with.
:type filter_groups: str, optional
:param filter_hours_ago: The number of hours of look back (from now) to estimate cardinality with.
:param filter_hours_ago: 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.
:type filter_hours_ago: int, optional
:param filter_num_aggregations: The number of aggregations that a ``count`` , ``rate`` , or ``gauge`` metric is configured to use. Max number of aggregation combos is 9.
:type filter_num_aggregations: int, optional
Expand Down

0 comments on commit 7dc692f

Please sign in to comment.