Module Values.CreateLinkRequestSource

Creates a new link between gateways. Establishes a connection that allows gateways to communicate and exchange bid requests and responses.

Sourcetype nonrec t = {
  1. gatewayId : GatewayId.t;
    (*

    The unique identifier of the gateway.

    *)
  2. peerGatewayId : GatewayId.t;
    (*

    The unique identifier of the peer gateway.

    *)
  3. attributes : LinkAttributes.t option;
    (*

    Attributes of the link.

    *)
  4. httpResponderAllowed : Boolean.t option;
    (*

    Boolean to specify if an HTTP responder is allowed.

    *)
  5. tags : TagsMap.t option;
    (*

    A map of the key-value pairs of the tag or tags to assign to the resource.

    *)
  6. logSettings : LinkLogSettings.t;
    (*

    Settings for the application logs.

    *)
  7. timeoutInMillis : LinkTimeoutInMillis.t option;
    (*

    The timeout value in milliseconds.

    *)
}
Sourceval context_ : string
Sourceval make : ?attributes:??? -> ?httpResponderAllowed:??? -> ?tags:??? -> ?timeoutInMillis:??? -> gatewayId:GatewayId.t -> peerGatewayId:GatewayId.t -> logSettings:LinkLogSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Long of LinkTimeoutInMillis.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of GatewayId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Float of ResponderErrorMaskingForHttpCodeResponseLoggingPercentageFloat.t | `List of [> `Enum of string ] list | `String of ResponderErrorMaskingForHttpCodeHttpCodeString.t ]) list ] list | `String of CustomerProvidedId.t | `Structure of (string * [> `Structure of (string * [> `Double of LinkApplicationLogSamplingErrorLogDouble.t ]) list ]) list ]) 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