Skip to content

Commit 9afd4ef

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Regenerate client from commit 2dfddc18 of spec repo (#2717)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 9222551 commit 9afd4ef

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-03-17 17:20:21.464212",
8-
"spec_repo_commit": "29344bf2"
7+
"regenerated": "2025-03-17 21:06:19.299453",
8+
"spec_repo_commit": "2dfddc18"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-17 17:20:21.480204",
13-
"spec_repo_commit": "29344bf2"
12+
"regenerated": "2025-03-17 21:06:19.314659",
13+
"spec_repo_commit": "2dfddc18"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -29328,7 +29328,7 @@ paths:
2932829328
- description: 'When specified, shows additional information about the group
2932929329
states.
2933029330

29331-
Choose one or more from `all`, `alert`, `warn`, and `no data` (`no%20data`).'
29331+
Choose one or more from `all`, `alert`, `warn`, and `no data`.'
2933229332
in: query
2933329333
name: group_states
2933429334
required: false
@@ -36863,7 +36863,10 @@ tags:
3686336863

3686436864
scopes from alerting. Downtime settings, which can be scheduled with start and
3686536865

36866-
end times, prevent all alerting related to specified Datadog tags.'
36866+
end times, prevent all alerting related to specified Datadog tags.
36867+
36868+
36869+
**Note:** `curl` commands require [url encoding](https://curl.se/docs/url-syntax.html).'
3686736870
name: Downtimes
3686836871
- description: 'The Event Management API allows you to programmatically post events
3686936872
to the Events Explorer and fetch events from the Events Explorer. See the [Event
@@ -36940,7 +36943,10 @@ tags:
3694036943
notifies your team when a defined threshold has exceeded.
3694136944

3694236945

36943-
For more information, see [Creating Monitors](https://docs.datadoghq.com/monitors/create/types/).'
36946+
For more information, see [Creating Monitors](https://docs.datadoghq.com/monitors/create/types/).
36947+
36948+
36949+
**Note:** `curl` commands require [url encoding](https://curl.se/docs/url-syntax.html).'
3694436950
externalDocs:
3694536951
description: Find out more at
3694636952
url: https://docs.datadoghq.com/monitors/create/types/

src/main/java/com/datadog/api/client/v1/api/MonitorsApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ public static class ListMonitorsOptionalParameters {
10891089
*
10901090
* @param groupStates When specified, shows additional information about the group states.
10911091
* Choose one or more from <code>all</code>, <code>alert</code>, <code>warn</code>, and
1092-
* <code>no data</code> (<code>no%20data</code>). (optional)
1092+
* <code>no data</code>. (optional)
10931093
* @return ListMonitorsOptionalParameters
10941094
*/
10951095
public ListMonitorsOptionalParameters groupStates(String groupStates) {

src/test/resources/com/datadog/api/client/v1/api/downtimes.feature

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Feature: Downtimes
44
you greater control over monitor notifications by allowing you to globally
55
exclude scopes from alerting. Downtime settings, which can be scheduled
66
with start and end times, prevent all alerting related to specified
7-
Datadog tags.
7+
Datadog tags. **Note:** `curl` commands require [url
8+
encoding](https://curl.se/docs/url-syntax.html).
89

910
Background:
1011
Given a valid "apiKeyAuth" key in the system

src/test/resources/com/datadog/api/client/v1/api/monitors.feature

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ Feature: Monitors
33
[Monitors](https://docs.datadoghq.com/monitors) allow you to watch a
44
metric or check that you care about and notifies your team when a defined
55
threshold has exceeded. For more information, see [Creating
6-
Monitors](https://docs.datadoghq.com/monitors/create/types/).
6+
Monitors](https://docs.datadoghq.com/monitors/create/types/). **Note:**
7+
`curl` commands require [url encoding](https://curl.se/docs/url-
8+
syntax.html).
79

810
Background:
911
Given a valid "apiKeyAuth" key in the system

0 commit comments

Comments
 (0)