Module Values.NodeInterfaceMappingSource

A mapping that's used to pair a logical network interface name on a Node with the physical interface name exposed in the operating system.

Sourcetype nonrec t = {
  1. logicalInterfaceName : string option;
    (*

    A uniform logical interface name to address in a MediaLive channel configuration.

    *)
  2. networkInterfaceMode : NetworkInterfaceMode.t option;
  3. physicalInterfaceName : string option;
    (*

    The name of the physical interface on the hardware that will be running Elemental anywhere.

    *)
  4. physicalInterfaceIpAddresses : string list option;
    (*

    The IP addresses associated with the physical interface on the node hardware.

    *)
}
Sourceval make : ?logicalInterfaceName:??? -> ?networkInterfaceMode:??? -> ?physicalInterfaceName:??? -> ?physicalInterfaceIpAddresses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of string ]) 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