Module Values.SetStatusInputSource

Contains the parameters for SetStatus.

Sourcetype nonrec t = {
  1. pipelineId : Id.t;
    (*

    The ID of the pipeline that contains the objects.

    *)
  2. objectIds : IdList.t;
    (*

    The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.

    *)
  3. status : String_.t;
    (*

    The status to be set on all the objects specified in objectIds. For components, use PAUSE or RESUME. For instances, use TRY_CANCEL, RERUN, or MARK_FINISHED.

    *)
}
Sourceval context_ : string
Sourceval make : pipelineId:Id.t -> objectIds:IdList.t -> status:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Id.t ] list | `String of Id.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