Module Values.NodeRepairConfigOverridesSource

Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.

Sourcetype nonrec t = {
  1. nodeMonitoringCondition : String_.t option;
    (*

    Specify an unhealthy condition reported by the node monitoring agent that this override would apply to.

    *)
  2. nodeUnhealthyReason : String_.t option;
    (*

    Specify a reason reported by the node monitoring agent that this override would apply to.

    *)
  3. minRepairWaitTimeMins : NonZeroInteger.t option;
    (*

    Specify the minimum time in minutes to wait before attempting to repair a node with this specific nodeMonitoringCondition and nodeUnhealthyReason.

    *)
  4. repairAction : RepairAction.t option;
    (*

    Specify the repair action to take for nodes when all of the specified conditions are met.

    *)
}
Sourceval make : ?nodeMonitoringCondition:??? -> ?nodeUnhealthyReason:??? -> ?minRepairWaitTimeMins:??? -> ?repairAction:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NonZeroInteger.t | `String of String_.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