Interface RouteAction.UpgradeConfig.ConnectConfigOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAllowPost()
      If set, the route will also allow forwarding POST payload as raw TCP.
      ProxyProtocolConfig getProxyProtocolConfig()
      If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
      ProxyProtocolConfigOrBuilder getProxyProtocolConfigOrBuilder()
      If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
      boolean hasProxyProtocolConfig()
      If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasProxyProtocolConfig

        boolean hasProxyProtocolConfig()
         If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
         
        .envoy.config.core.v3.ProxyProtocolConfig proxy_protocol_config = 1;
        Returns:
        Whether the proxyProtocolConfig field is set.
      • getProxyProtocolConfig

        ProxyProtocolConfig getProxyProtocolConfig()
         If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
         
        .envoy.config.core.v3.ProxyProtocolConfig proxy_protocol_config = 1;
        Returns:
        The proxyProtocolConfig.
      • getProxyProtocolConfigOrBuilder

        ProxyProtocolConfigOrBuilder getProxyProtocolConfigOrBuilder()
         If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
         
        .envoy.config.core.v3.ProxyProtocolConfig proxy_protocol_config = 1;
      • getAllowPost

        boolean getAllowPost()
         If set, the route will also allow forwarding POST payload as raw TCP.
         
        bool allow_post = 2;
        Returns:
        The allowPost.