Module Values.FrameworkControlSource

Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.

Sourcetype nonrec t = {
  1. controlName : ControlName.t;
    (*

    The name of a control. This name is between 1 and 256 characters.

    *)
  2. controlInputParameters : ControlInputParameters.t option;
    (*

    The name/value pairs.

    *)
  3. controlScope : ControlScope.t option;
    (*

    The scope of a control. The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans. For more information, see ControlScope.

    *)
}
Sourceval context_ : string
Sourceval make : ?controlInputParameters:??? -> ?controlScope:??? -> controlName:ControlName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ParameterName.t ]) list ] list | `String of ControlName.t | `Structure of (string * [> `List of [> `String of string ] list | `Map of ([> `String of string ] * [> `String of string ]) 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