Module Values.AddBridgeNetworkOutputRequestSource

Add a network output to an existing bridge.

Sourcetype nonrec t = {
  1. ipAddress : String_.t;
    (*

    The network output IP Address.

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

    The network output name. This name is used to reference the output and must be unique among outputs in this bridge.

    *)
  3. networkName : String_.t;
    (*

    The network output's gateway network name.

    *)
  4. port : Integer.t;
    (*

    The network output port.

    *)
  5. protocol : Protocol.t;
    (*

    The network output protocol. Elemental MediaConnect no longer supports the Fujitsu QoS protocol. This reference is maintained for legacy purposes only.

    *)
  6. ttl : Integer.t;
    (*

    The network output TTL.

    *)
}
Sourceval context_ : string
Sourceval make : ipAddress:String_.t -> name:String_.t -> networkName:String_.t -> port:Integer.t -> protocol:Protocol.t -> ttl:Integer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `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