Module Values.BatchUpdateExclusionWindowsInputSource

Add or remove time window exclusions for one or more Service Level Objectives (SLOs).

Sourcetype nonrec t = {
  1. sloIds : ServiceLevelObjectiveIds.t;
    (*

    The list of SLO IDs to add or remove exclusion windows from.

    *)
  2. addExclusionWindows : ExclusionWindows.t option;
    (*

    A list of exclusion windows to add to the specified SLOs. You can add up to 10 exclusion windows per SLO.

    *)
  3. removeExclusionWindows : ExclusionWindows.t option;
    (*

    A list of exclusion windows to remove from the specified SLOs. The window configuration must match an existing exclusion window.

    *)
}
Sourceval context_ : string
Sourceval make : ?addExclusionWindows:??? -> ?removeExclusionWindows:??? -> sloIds:ServiceLevelObjectiveIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of ExclusionReason.t | `Structure of (string * [> `Enum of string | `Integer of ExclusionDuration.t | `String of Expression.t ]) list | `Timestamp of Timestamp.t ]) list ] list ]) 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