@@ -56,7 +56,7 @@ impl GetMonitorOptionalParams {
56
56
#[ derive( Clone , Default , Debug ) ]
57
57
pub struct ListMonitorsOptionalParams {
58
58
/// When specified, shows additional information about the group states.
59
- /// Choose one or more from `all`, `alert`, `warn`, and `no data` (`no%20data`) .
59
+ /// Choose one or more from `all`, `alert`, `warn`, and `no data`.
60
60
pub group_states : Option < String > ,
61
61
/// A string to filter monitors by name.
62
62
pub name : Option < String > ,
@@ -78,7 +78,7 @@ pub struct ListMonitorsOptionalParams {
78
78
79
79
impl ListMonitorsOptionalParams {
80
80
/// When specified, shows additional information about the group states.
81
- /// Choose one or more from `all`, `alert`, `warn`, and `no data` (`no%20data`) .
81
+ /// Choose one or more from `all`, `alert`, `warn`, and `no data`.
82
82
pub fn group_states ( mut self , value : String ) -> Self {
83
83
self . group_states = Some ( value) ;
84
84
self
@@ -323,6 +323,8 @@ pub enum ValidateMonitorError {
323
323
/// notifies your team when a defined threshold has exceeded.
324
324
///
325
325
/// For more information, see [Creating Monitors](<https://docs.datadoghq.com/monitors/create/types/>).
326
+ ///
327
+ /// **Note:** `curl` commands require [url encoding](<https://curl.se/docs/url-syntax.html>).
326
328
#[ derive( Debug , Clone ) ]
327
329
pub struct MonitorsAPI {
328
330
config : datadog:: Configuration ,
0 commit comments