Module Values_0.ResolvedTargetsSource

Information about targets that resolved during the Automation execution.

Sourcetype nonrec t = {
  1. parameterValues : TargetParameterList.t option;
    (*

    A list of parameter values sent to targets that resolved during the Automation execution.

    *)
  2. truncated : Boolean.t option;
    (*

    A boolean value indicating whether the resolved target list is truncated.

    *)
}
Sourceval make : ?parameterValues:??? -> ?truncated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of ParameterValue.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