Module Values.AutomatedReasoningPolicyDisjointRuleSetSource

Represents a set of rules that operate on completely separate variables, indicating they address different concerns or domains within the policy.

Sourcetype nonrec t = {
  1. variables : AutomatedReasoningPolicyDefinitionVariableNameList.t option;
    (*

    The set of variables that are used by the rules in this disjoint set.

    *)
  2. rules : AutomatedReasoningPolicyDisjointedRuleIdList.t option;
    (*

    The list of rules that form this disjoint set, all operating on the same set of variables.

    *)
}
Sourceval make : ?variables:??? -> ?rules:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AutomatedReasoningPolicyDefinitionVariableName.t ] 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