Skip to content

Commit 76159bd

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 2738500d of spec repo
1 parent 9222551 commit 76159bd

File tree

5 files changed

+23
-14
lines changed

5 files changed

+23
-14
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-18 00:13:58.232925",
8+
"spec_repo_commit": "2738500d"
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-18 00:13:58.249360",
13+
"spec_repo_commit": "2738500d"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+13-7
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
@@ -29913,15 +29913,15 @@ paths:
2991329913
- apiKeyAuth: []
2991429914
appKeyAuth: []
2991529915
- AuthZ:
29916-
- monitors_write
29916+
- monitors_read
2991729917
summary: Validate a monitor
2991829918
tags:
2991929919
- Monitors
2992029920
x-codegen-request-body-name: body
2992129921
x-permission:
2992229922
operator: OR
2992329923
permissions:
29924-
- monitors_write
29924+
- monitors_read
2992529925
/api/v1/monitor/{monitor_id}:
2992629926
delete:
2992729927
description: Delete the specified monitor
@@ -30214,15 +30214,15 @@ paths:
3021430214
- apiKeyAuth: []
3021530215
appKeyAuth: []
3021630216
- AuthZ:
30217-
- monitors_write
30217+
- monitors_read
3021830218
summary: Validate an existing monitor
3021930219
tags:
3022030220
- Monitors
3022130221
x-codegen-request-body-name: body
3022230222
x-permission:
3022330223
operator: OR
3022430224
permissions:
30225-
- monitors_write
30225+
- monitors_read
3022630226
/api/v1/monthly_custom_reports:
3022730227
get:
3022830228
deprecated: true
@@ -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)