Module Values.UpdateMonitorSettingsRequestSource

Updates the settings for a Deadline Cloud monitor. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.

Sourcetype nonrec t = {
  1. monitorId : MonitorId.t;
    (*

    The unique identifier of the monitor to update settings for.

    *)
  2. settings : SettingsMap.t;
    (*

    The monitor settings to update as key-value pairs. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.

    *)
}
Sourceval context_ : string
Sourceval make : monitorId:MonitorId.t -> settings:SettingsMap.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of SettingKey.t ] * [> `String of SettingValue.t ]) list | `String of MonitorId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t