Module Values.AddBridgeNetworkSourceRequestSource

Add a network source to an existing bridge.

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

    The network source multicast IP.

    *)
  2. multicastSourceSettings : MulticastSourceSettings.t option;
    (*

    The settings related to the multicast source.

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

    The name of the network source. This name is used to reference the source and must be unique among sources in this bridge.

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

    The network source's gateway network name.

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

    The network source port.

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

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

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