Skip to content

Commit 0330021

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 89d5fc6 of spec repo
1 parent 9b795b5 commit 0330021

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91070,7 +91070,7 @@ paths:
9107091070
schema:
9107191071
type: boolean
9107291072
- description: |-
91073-
Only return metrics that have been queried or not queried in the specified window. Dependent on being sent with `filter[queried]`.
91073+
Only return metrics that have been queried or not queried in the specified window. Dependent on being sent with `filter[queried]`. The default value is 2,592,000 seconds (30 days), the maximum value is 15,552,000 seconds (180 days), and the minimum value is 1 second.
9107491074
example: 15552000
9107591075
in: query
9107691076
name: filter[queried][window][seconds]
@@ -91098,7 +91098,7 @@ paths:
9109891098
schema:
9109991099
type: boolean
9110091100
- description: |-
91101-
Only return metrics that have been actively reporting in the specified window.
91101+
Only return metrics that have been actively reporting in the specified window. The default value is 3600 seconds (1 hour), the maximum value is 2,592,000 seconds (30 days), and the minimum value is 1 second.
9110291102
example: 3600
9110391103
in: query
9110491104
name: window[seconds]
@@ -91109,7 +91109,7 @@ paths:
9110991109
maximum: 2592000
9111091110
minimum: 1
9111191111
type: integer
91112-
- description: Maximum number of results per page. Use with `page[cursor]` for pagination.
91112+
- description: Maximum number of results per page. Use with `page[cursor]` for pagination. The default value is 10000, the maximum value is 10000, and the minimum value is 1.
9111391113
in: query
9111491114
name: page[size]
9111591115
required: false

src/main/java/com/datadog/api/client/v2/api/MetricsApi.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1671,8 +1671,9 @@ public ListTagConfigurationsOptionalParameters filterQueried(Boolean filterQueri
16711671
* Set filterQueriedWindowSeconds.
16721672
*
16731673
* @param filterQueriedWindowSeconds Only return metrics that have been queried or not queried
1674-
* in the specified window. Dependent on being sent with <code>filter[queried]</code>.
1675-
* (optional, default to 2592000)
1674+
* in the specified window. Dependent on being sent with <code>filter[queried]</code>. The
1675+
* default value is 2,592,000 seconds (30 days), the maximum value is 15,552,000 seconds
1676+
* (180 days), and the minimum value is 1 second. (optional, default to 2592000)
16761677
* @return ListTagConfigurationsOptionalParameters
16771678
*/
16781679
public ListTagConfigurationsOptionalParameters filterQueriedWindowSeconds(
@@ -1710,7 +1711,8 @@ public ListTagConfigurationsOptionalParameters filterRelatedAssets(
17101711
* Set windowSeconds.
17111712
*
17121713
* @param windowSeconds Only return metrics that have been actively reporting in the specified
1713-
* window. (optional, default to 3600)
1714+
* window. The default value is 3600 seconds (1 hour), the maximum value is 2,592,000
1715+
* seconds (30 days), and the minimum value is 1 second. (optional, default to 3600)
17141716
* @return ListTagConfigurationsOptionalParameters
17151717
*/
17161718
public ListTagConfigurationsOptionalParameters windowSeconds(Long windowSeconds) {
@@ -1722,7 +1724,8 @@ public ListTagConfigurationsOptionalParameters windowSeconds(Long windowSeconds)
17221724
* Set pageSize.
17231725
*
17241726
* @param pageSize Maximum number of results per page. Use with <code>page[cursor]</code> for
1725-
* pagination. (optional, default to 10000)
1727+
* pagination. The default value is 10000, the maximum value is 10000, and the minimum value
1728+
* is 1. (optional, default to 10000)
17261729
* @return ListTagConfigurationsOptionalParameters
17271730
*/
17281731
public ListTagConfigurationsOptionalParameters pageSize(Integer pageSize) {

0 commit comments

Comments
 (0)