Module Values.SimulationAppMetadataSource

A collection of metadata about the app.

Sourcetype nonrec t = {
  1. domain : SimSpaceWeaverResourceName.t option;
    (*

    The domain of the app. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.

    *)
  2. name : SimSpaceWeaverLongResourceName.t option;
    (*

    The name of the app.

    *)
  3. simulation : SimSpaceWeaverResourceName.t option;
    (*

    The name of the simulation of the app.

    *)
  4. status : SimulationAppStatus.t option;
    (*

    The current status of the app.

    *)
  5. targetStatus : SimulationAppTargetStatus.t option;
    (*

    The desired status of the app.

    *)
}
Sourceval make : ?domain:??? -> ?name:??? -> ?simulation:??? -> ?status:??? -> ?targetStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SimSpaceWeaverResourceName.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