Module Values.PipelineObjectSource

Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.

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

    The ID of the object.

    *)
  2. name : Id.t;
    (*

    The name of the object.

    *)
  3. fields : FieldList.t;
    (*

    Key-value pairs that define the properties of the object.

    *)
}
Sourceval context_ : string
Sourceval make : id:Id.t -> name:Id.t -> fields:FieldList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldNameString.t ]) list ] 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