Module Values.HybridJobQueueInfoSource

Information about the queue for a specified hybrid job.

Sourcetype nonrec t = {
  1. queue : QueueName.t option;
    (*

    The name of the queue.

    *)
  2. position : String_.t option;
    (*

    Current position of the hybrid job in the jobs queue.

    *)
  3. message : String_.t option;
    (*

    Optional. Provides more information about the queue position. For example, if the hybrid job is complete and no longer in the queue, the message field contains that information.

    *)
}
Sourceval make : ?queue:??? -> ?position:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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