Module Values.SimulationAppEndpointInfoSource

Information about the network endpoint that you can use to connect to your custom or service app. For more information about SimSpace Weaver apps, see Key concepts: Apps in the SimSpace Weaver User Guide..

Sourcetype nonrec t = {
  1. address : NonEmptyString.t option;
    (*

    The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.

    *)
  2. ingressPortMappings : AppPortMappings.t option;
    (*

    The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.

    *)
}
Sourceval make : ?address:??? -> ?ingressPortMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of PortNumber.t ]) list ] list | `String of NonEmptyString.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