Module Values.GatewayRouteSpecSource

An object that represents a gateway route specification. Specify one gateway route type.

Sourcetype nonrec t = {
  1. grpcRoute : GrpcGatewayRoute.t option;
    (*

    An object that represents the specification of a gRPC gateway route.

    *)
  2. http2Route : HttpGatewayRoute.t option;
    (*

    An object that represents the specification of an HTTP/2 gateway route.

    *)
  3. httpRoute : HttpGatewayRoute.t option;
    (*

    An object that represents the specification of an HTTP gateway route.

    *)
  4. priority : GatewayRoutePriority.t option;
    (*

    The ordering of the gateway routes spec.

    *)
}
Sourceval make : ?grpcRoute:??? -> ?http2Route:??? -> ?httpRoute:??? -> ?priority:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GatewayRoutePriority.t | `Structure of (string * [> `Structure of (string * [> `Enum 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 * [> `Integer of ListenerPort.t | `String of ExactHostName.t | `Structure of (string * [> `Enum of string | `String of ResourceName.t ]) list ]) 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