Module Values.GrpcGatewayRouteMatchSource

An object that represents the criteria for determining a request match.

Sourcetype nonrec t = {
  1. hostname : GatewayRouteHostnameMatch.t option;
    (*

    The gateway route host name to be matched on.

    *)
  2. metadata : GrpcGatewayRouteMetadataList.t option;
    (*

    The gateway route metadata to be matched on.

    *)
  3. port : ListenerPort.t option;
    (*

    The gateway route port to be matched on.

    *)
  4. serviceName : ServiceName.t option;
    (*

    The fully qualified domain name for the service to match from the request.

    *)
}
Sourceval make : ?hostname:??? -> ?metadata:??? -> ?port:??? -> ?serviceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ListenerPort.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderName.t | `Structure of (string * [> `String of HeaderMatch.t | `Structure of (string * [> `Long of Long.t ]) list ]) list ]) list ] list | `String of ServiceName.t | `Structure of (string * [> `String of ExactHostName.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